HomeSort by relevance Sort by last modified time
    Searched refs:Predicate (Results 51 - 75 of 317) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/test-runner/src/android/test/
InstrumentationCoreTestRunner.java 24 import com.android.internal.util.Predicate;
197 List<Predicate<TestMethod>> getBuilderRequirements() {
198 List<Predicate<TestMethod>> builderRequirements =
200 Predicate<TestMethod> brokenTestPredicate =
204 Predicate<TestMethod> sideEffectPredicate =
  /external/guava/guava-tests/test/com/google/common/collect/
SortedMapsTest.java 24 import com.google.common.base.Predicate;
94 private static final Predicate<Integer> EVEN =
95 new Predicate<Integer>() {
123 private static final Predicate<String> NOT_LENGTH_3 =
124 new Predicate<String>() {
152 private static final Predicate<Map.Entry<Integer, String>>
153 EVEN_AND_LENGTH_3 = new Predicate<Map.Entry<Integer, String>>() {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
iter_fold_if.hpp 37 template< typename Predicate, typename LastIterator >
44 , apply1<Predicate,Iterator>
51 , apply1<Predicate,Iterator>
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
PredicateLabel.java 35 * In the NFA, labels will always be exactly one predicate, but the DFA
41 /** Make a semantic predicate label */
44 this.semanticContext = new SemanticContext.Predicate(predicateASTNode);
SemanticContext.java 40 * an NFA configuration is valid. It's either a single predicate or
52 * I have scoped the AND, NOT, OR, and Predicate subclasses of
65 public static final SemanticContext EMPTY_SEMANTIC_CONTEXT = new Predicate(Predicate.INVALID_PRED_VALUE);
87 public static class Predicate extends SemanticContext {
88 /** The AST node in tree created from the grammar holding the predicate */
91 /** Is this a {...}?=> gating predicate or a normal disambiguating {..}?
92 * If any predicate in expression is gated, then expression is considered
95 * The simple Predicate object's predicate AST's type is used to se
309 CommutativePredicate predicate = (CommutativePredicate)a; local
316 CommutativePredicate predicate = (CommutativePredicate)b; local
328 CommutativePredicate predicate = (CommutativePredicate)context; local
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/finders/
By.java 152 private static Predicate<? super UiElement>[] getPredicates(MatchFinder... finders) {
154 Predicate<? super UiElement>[] predicates = new Predicate[finders.length];
156 predicates[i] = finders[i].predicate;
191 return new MatchFinder(Predicates.withParent(parentFinder.predicate));
200 return new MatchFinder(Predicates.withAncestor(ancestorFinder.predicate));
209 return new MatchFinder(Predicates.withSibling(siblingFinder.predicate));
218 return new MatchFinder(Predicates.withChild(childFinder.predicate));
227 return new MatchFinder(new Predicate<UiElement>() {
248 return new MatchFinder(Predicates.not(finder.predicate));
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
SentinelStrategy.java 25 import com.google.android.droiddriver.finders.Predicate;
44 protected final Predicate<? super UiElement> predicate; field in class:SentinelStrategy.Getter
51 protected Getter(Predicate<? super UiElement> predicate) {
52 this.predicate = predicate;
62 UiElement sentinel = getSentinel(container.getChildren(predicate));
143 * Decorates a {@link Getter} by adding another {@link Predicate}.
148 public MorePredicateGetter(Getter original, Predicate<? super UiElement> extraPredicate)
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
VisibilityPredicate.java 22 public class VisibilityPredicate implements Predicate {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
iter_fold_if_impl.hpp 91 , typename Predicate
95 typedef typename apply2<Predicate,State,Iterator>::type not_last;
108 , typename Predicate
112 typedef typename apply2<Predicate,State,Iterator>::type not_last;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
iter_fold_if_impl.hpp 58 , typename Predicate
62 typedef typename apply2< Predicate,State,Iterator >::type not_last;
75 , typename Predicate
79 typedef typename apply2< Predicate,State,Iterator >::type not_last;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathGrammar.y 65 WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Predicate> >* predList;
96 %type <expr> Predicate
292 Predicate
294 $$ = new WillBeHeapVector<OwnPtrWillBeMember<Predicate> >;
295 $$->append(adoptPtrWillBeNoop(new Predicate(adoptPtrWillBeNoop($1))));
300 PredicateList Predicate
302 $$->append(adoptPtrWillBeNoop(new Predicate(adoptPtrWillBeNoop($2))));
307 Predicate:
XPathPredicate.cpp 277 Predicate::Predicate(PassOwnPtrWillBeRawPtr<Expression> expr)
282 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Predicate);
284 void Predicate::trace(Visitor* visitor)
289 bool Predicate::evaluate(EvaluationContext& context) const
XPathStep.cpp 48 Step::Step(Axis axis, const NodeTest& nodeTest, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& predicates)
71 // "foo[@bar]", we can check the predicate while enumerating.
73 // list sensitive, or to first predicate that is only context position
75 WillBeHeapVector<OwnPtrWillBeMember<Predicate> > remainingPredicates;
77 OwnPtrWillBeRawPtr<Predicate> predicate(m_predicates[i].release());
78 if ((!predicate->isContextPositionSensitive() || nodeTest().mergedPredicates().isEmpty()) && !predicate->isContextSizeSensitive() && remainingPredicates.isEmpty()) {
79 nodeTest().mergedPredicates().append(predicate.release());
81 remainingPredicates.append(predicate.release())
115 Predicate* predicate = m_predicates[i].get(); local
121 Predicate* predicate = nodeTest().mergedPredicates()[i].get(); local
137 Predicate* predicate = m_predicates[i].get(); local
244 Predicate* predicate = mergedPredicates[i].get(); local
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/runner/
TestRunner.java 27 import com.android.internal.util.Predicate;
128 List<Predicate<TestMethod>> getBuilderRequirements() {
129 List<Predicate<TestMethod>> requirements = new ArrayList<Predicate<TestMethod>>();
130 requirements.add(new Predicate<TestMethod>() {
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
EbayPolicyExample.java 42 import com.google.common.base.Predicate;
102 private static final Predicate<String> COLOR_NAME_OR_COLOR_CODE
103 = new Predicate<String>() {
110 private static final Predicate<String> ONSITE_OR_OFFSITE_URL
111 = new Predicate<String>() {
  /external/llvm/include/llvm/IR/
InstrTypes.h 655 /// predicate values are not overlapping between the classes.
656 enum Predicate {
696 /// Construct a compare instruction, given the opcode, the predicate and
702 unsigned short predicate, Value *S1,
706 /// Construct a compare instruction, given the opcode, the predicate and the
710 static CmpInst *Create(OtherOps Op, unsigned short predicate, Value *S1,
718 /// @brief Return the predicate for this instruction.
719 Predicate getPredicate() const {
720 return Predicate(getSubclassDataFromInstruction());
723 /// @brief Set the predicate for this instruction to the specified value
    [all...]
PatternMatch.h 210 /// that satisfy a specified predicate.
211 template<typename Predicate>
212 struct cst_pred_ty : public Predicate {
227 /// that satisfy a specified predicate, and bind them to an APInt.
228 template<typename Predicate>
229 struct api_pred_ty : public Predicate {
662 PredicateTy &Predicate;
667 : Predicate(Pred), L(LHS), R(RHS) {}
673 Predicate = I->getPredicate();
681 inline CmpClass_match<LHS, RHS, ICmpInst, ICmpInst::Predicate>
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.h 24 #include "lldb/Host/Predicate.h"
250 lldb_private::Predicate<bool> m_public_is_running;
251 lldb_private::Predicate<bool> m_private_is_running;
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 167 static CmpInst::Predicate optimizeCmpPredicate(const CmpInst *CI) {
169 CmpInst::Predicate Predicate = CI->getPredicate();
171 return Predicate;
173 switch (Predicate) {
174 default: llvm_unreachable("Invalid predicate!");
175 case CmpInst::FCMP_FALSE: Predicate = CmpInst::FCMP_FALSE; break;
176 case CmpInst::FCMP_OEQ: Predicate = CmpInst::FCMP_ORD; break;
177 case CmpInst::FCMP_OGT: Predicate = CmpInst::FCMP_FALSE; break;
178 case CmpInst::FCMP_OGE: Predicate = CmpInst::FCMP_ORD; break
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_dump.c 499 if (inst->Instruction.Predicate) {
502 if (inst->Predicate.Negate)
506 SID( inst->Predicate.Index );
509 if (inst->Predicate.SwizzleX != TGSI_SWIZZLE_X ||
510 inst->Predicate.SwizzleY != TGSI_SWIZZLE_Y ||
511 inst->Predicate.SwizzleZ != TGSI_SWIZZLE_Z ||
512 inst->Predicate.SwizzleW != TGSI_SWIZZLE_W) {
514 ENM( inst->Predicate.SwizzleX, tgsi_swizzle_names );
515 ENM( inst->Predicate.SwizzleY, tgsi_swizzle_names );
516 ENM( inst->Predicate.SwizzleZ, tgsi_swizzle_names )
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Iterables.java 29 import com.google.common.base.Predicate;
170 * predicate.
173 * @param predicate a predicate that determines whether an element should
182 Iterable<T> removeFrom, Predicate<? super T> predicate) {
185 (List<T>) removeFrom, checkNotNull(predicate));
187 return Iterators.removeIf(removeFrom.iterator(), predicate);
191 List<T> list, Predicate<? super T> predicate) {
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java 28 import com.google.common.base.Predicate;
167 * predicate.
170 * @param predicate a predicate that determines whether an element should
179 Iterable<T> removeFrom, Predicate<? super T> predicate) {
182 (List<T>) removeFrom, checkNotNull(predicate));
184 return Iterators.removeIf(removeFrom.iterator(), predicate);
188 List<T> list, Predicate<? super T> predicate) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 499 if (inst->Instruction.Predicate) {
502 if (inst->Predicate.Negate)
506 SID( inst->Predicate.Index );
509 if (inst->Predicate.SwizzleX != TGSI_SWIZZLE_X ||
510 inst->Predicate.SwizzleY != TGSI_SWIZZLE_Y ||
511 inst->Predicate.SwizzleZ != TGSI_SWIZZLE_Z ||
512 inst->Predicate.SwizzleW != TGSI_SWIZZLE_W) {
514 ENM( inst->Predicate.SwizzleX, tgsi_swizzle_names );
515 ENM( inst->Predicate.SwizzleY, tgsi_swizzle_names );
516 ENM( inst->Predicate.SwizzleZ, tgsi_swizzle_names )
    [all...]
  /external/chromium_org/chrome/test/remoting/
waiter.cc 42 const Predicate& callback)
  /external/llvm/include/llvm/Analysis/
ConstantFolding.h 65 Constant *ConstantFoldCompareInstOperands(unsigned Predicate,

Completed in 516 milliseconds

1 23 4 5 6 7 8 91011>>