Searched refs:conditions (Results 1 – 3 of 3) sorted by relevance
28 class ConditionList<T>(val conditions: List<Condition<T>>) : Condition<T>("", { false }) { in <lambda>() constant in android.tools.traces.ConditionList29 constructor(vararg conditions: Condition<T>) : this(listOf(*conditions))41 get() = { value -> conditions.all { condition -> condition.isSatisfied(value) } } in <lambda>()
125 private val conditions = mutableListOf<Condition<T>>() constant133 fun withCondition(condition: Condition<T>) = apply { conditions.add(condition) } in <lambda>()140 conditions.flatMap { in spreadConditionList()142 it.conditions in spreadConditionList()
258 public BusinessLogicRule(List<BusinessLogicRuleCondition> conditions, in BusinessLogicRule() argument260 mConditions = conditions; in BusinessLogicRule()