HomeSort by relevance Sort by last modified time
    Searched defs:Predicate (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium/chrome/browser/history/
page_usage_data.cc 43 bool PageUsageData::Predicate(const PageUsageData* lhs,
  /external/guava/guava/src/com/google/common/base/
Predicate.java 30 public interface Predicate<T> {
32 * Returns the result of applying this predicate to {@code input}. This method is <i>generally
38 * Objects.equal}{@code (a, b)} implies that {@code predicate.apply(a) ==
39 * predicate.apply(b))}.
42 * @throws NullPointerException if {@code input} is null and this predicate does not accept null
48 * Indicates whether another object is equal to this predicate.
52 * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
  /frameworks/base/core/java/com/android/internal/util/
Predicate.java 20 * A Predicate can determine a true or false value for any input of its
22 * {@code Predicate<String>}, and return true for any String that matches its
26 * Implementors of Predicate which may cause side effects upon evaluation are
29 public interface Predicate<T> {
  /external/webkit/Source/WebCore/xml/
XPathPredicate.cpp 256 Predicate::Predicate(Expression* expr)
261 Predicate::~Predicate()
266 bool Predicate::evaluate() const
XPathGrammar.y 67 Vector<Predicate*>* predList;
98 %type <expr> Predicate
294 Predicate
296 $$ = new Vector<Predicate*>;
297 $$->append(new Predicate($1));
302 PredicateList Predicate
304 $$->append(new Predicate($2));
309 Predicate:
XPathPredicate.h 108 class Predicate {
109 WTF_MAKE_NONCOPYABLE(Predicate); WTF_MAKE_FAST_ALLOCATED;
111 Predicate(Expression*);
112 ~Predicate();
  /external/chromium/testing/gtest/scripts/
gen_gtest_pred_impl.py 34 Generates the implementation of Google Test predicate assertions and
44 predicate assertions, and writes it to file gtest_pred_impl.h in the
69 n: the maximum arity of the predicate macros to be generated.
113 // Implements a family of generic predicate assertion macros.
123 // This header implements a family of generic predicate assertion
206 """Returns the implementation of n-ary predicate assertions."""
278 // %(Arity)s predicate assertion macros.
317 the predicate assertions."""
374 // This is intended as a regression test for the Google Test predicate
412 """Returns the tests for n-ary predicate assertions.""
    [all...]
  /external/gtest/scripts/
gen_gtest_pred_impl.py 34 Generates the implementation of Google Test predicate assertions and
44 predicate assertions, and writes it to file gtest_pred_impl.h in the
69 n: the maximum arity of the predicate macros to be generated.
113 // Implements a family of generic predicate assertion macros.
123 // This header implements a family of generic predicate assertion
206 """Returns the implementation of n-ary predicate assertions."""
278 // %(Arity)s predicate assertion macros.
317 the predicate assertions."""
374 // This is intended as a regression test for the Google Test predicate
412 """Returns the tests for n-ary predicate assertions.""
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCPredicates.h 1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
19 /// Predicate - These are "(BI << 5) | BO" for various predicates.
20 enum Predicate {
32 /// Invert the specified predicate. != -> ==, < -> >=.
33 Predicate InvertPredicate(Predicate Opcode);
  /external/protobuf/gtest/scripts/
gen_gtest_pred_impl.py 34 Generates the implementation of Google Test predicate assertions and
44 predicate assertions, and writes it to file gtest_pred_impl.h in the
69 n: the maximum arity of the predicate macros to be generated.
113 // Implements a family of generic predicate assertion macros.
123 // This header implements a family of generic predicate assertion
206 """Returns the implementation of n-ary predicate assertions."""
280 // %(Arity)s predicate assertion macros.
319 the predicate assertions."""
376 // This is intended as a regression test for the Google Test predicate
414 """Returns the tests for n-ary predicate assertions.""
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
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/llvm/include/llvm/
InstrTypes.h 646 /// predicate values are not overlapping between the classes.
647 enum Predicate {
687 /// Construct a compare instruction, given the opcode, the predicate and
693 unsigned short predicate, Value *S1,
697 /// Construct a compare instruction, given the opcode, the predicate and the
701 static CmpInst *Create(OtherOps Op, unsigned short predicate, Value *S1,
709 /// @brief Return the predicate for this instruction.
710 Predicate getPredicate() const {
711 return Predicate(getSubclassDataFromInstruction());
714 /// @brief Set the predicate for this instruction to the specified value
    [all...]
  /external/v8/src/
unicode.h 50 class Predicate {
52 inline Predicate() { }
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 38 Predicate,
79 /// the predicate operand that controls an isPredicable() instruction.
80 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
93 /// implementation of the MCInstrDesc class. Clients should use the predicate
260 // isPredicable - Return true if this instruction has a predicate operand that
263 /// control and modify the predicate in this instruction.
521 /// operand list that is used to represent the predicate. It returns -1 if
  /external/llvm/include/llvm/Support/
PatternMatch.h 147 /// that satisfy a specified predicate.
148 template<typename Predicate>
149 struct cst_pred_ty : public Predicate {
166 /// that satisfy a specified predicate, and bind them to an APInt.
167 template<typename Predicate>
168 struct api_pred_ty : public Predicate {
491 PredicateTy &Predicate;
496 : Predicate(Pred), L(LHS), R(RHS) {}
502 Predicate = I->getPredicate();
510 inline CmpClass_match<LHS, RHS, ICmpInst, ICmpInst::Predicate>
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java     [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp 85 /// instruction can clobber the 'would-be' predicate.
102 /// Predicate - Predicate used in the BB.
120 SmallVector<MachineOperand, 4> Predicate;
618 /// instruction which can clobber a predicate (e.g. condition code register).
624 bool AlreadyPredicated = BBI.Predicate.size() > 0;
679 // Predicate modification instruction should end the block (except for
686 // Predicate may have been modified, the subsequent (currently)
706 /// predicated by the specified predicate.
714 // If it is already predicated, check if its predicate subsumes the ne
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 56 // Predicate checking.
59 CheckPredicate, // Fail if node predicate fails.
120 /// isSimplePredicateNode - Return true if this is a simple predicate that
143 /// a simple predicate.
166 // Since this predicate is reflexive, we canonicalize the ordering so that
397 /// CheckPatternPredicateMatcher - This checks the target-specific predicate
398 /// to see if the entire pattern is capable of matching. This predicate does
401 std::string Predicate;
403 CheckPatternPredicateMatcher(StringRef predicate)
404 : Matcher(CheckPatternPredicate), Predicate(predicate) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
IteratorsTest.java 32 import com.google.common.base.Predicate;
257 new Predicate<String>() {
273 final Predicate<Integer> isEven = new Predicate<Integer>() {
289 Predicate<String> predicate = Predicates.equalTo("pants"); local
291 assertFalse(Iterators.any(list.iterator(), predicate)); local
293 assertFalse(Iterators.any(list.iterator(), predicate)); local
295 assertTrue(Iterators.any(list.iterator(), predicate)); local
300 Predicate<String> predicate = Predicates.equalTo("cool") local
302 assertTrue(Iterators.all(list.iterator(), predicate)); local
304 assertTrue(Iterators.all(list.iterator(), predicate)); local
306 assertFalse(Iterators.all(list.iterator(), predicate)); local
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 261 // If the machine is predicable go ahead and add the predicate operands, if
270 // Do we use a predicate? or...
271 // Are we NEON in ARM mode and have a predicate operand? If so, I know
276 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 107 CmpInst::Predicate Predicate,
115 uint32_t lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Pred,
173 CmpInst::Predicate Predicate = C->getPredicate();
176 Predicate = CmpInst::getSwappedPredicate(Predicate);
178 e.opcode = (C->getOpcode() << 8) | Predicate;
189 CmpInst::Predicate Predicate,
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.jar 

Completed in 969 milliseconds

1 2