Searched refs:Predicate (Results 26 - 50 of 117) sorted by relevance

12345

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DSemanticContext.java52 * 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 { class in class:SemanticContext
95 * The simple Predicate object's predicate AST's type is used to set
115 public Predicate(int constantValue) { method in class:SemanticContext.Predicate
120 public Predicate(GrammarAST predicate) { method in class:SemanticContext.Predicate
130 public Predicate(Predicate p) { method in class:SemanticContext.Predicate
143 if ( !(o instanceof Predicate) ) {
[all...]
H A DLL1Analyzer.java327 SemanticContext.Predicate p = (SemanticContext.Predicate)ctx;
337 SemanticContext.Predicate p = (SemanticContext.Predicate)ctx;
429 if ( ((SemanticContext.Predicate)p).predicateAST.getType() ==
/external/llvm/include/llvm/
H A DInstrTypes.h647 enum Predicate { enum in class:llvm::CmpInst
710 Predicate getPredicate() const {
711 return Predicate(getSubclassDataFromInstruction());
715 void setPredicate(Predicate P) { setInstructionSubclassData(P); }
717 static bool isFPPredicate(Predicate P) {
721 static bool isIntPredicate(Predicate P) {
733 Predicate getInversePredicate() const {
741 static Predicate getInversePredicate(Predicate pred);
749 Predicate getSwappedPredicat
[all...]
/external/llvm/include/llvm/Support/
H A DPatternMatch.h148 template<typename Predicate>
149 struct cst_pred_ty : public Predicate {
167 template<typename Predicate>
168 struct api_pred_ty : public Predicate {
491 PredicateTy &Predicate; member in struct:llvm::PatternMatch::CmpClass_match
496 : Predicate(Pred), L(LHS), R(RHS) {}
502 Predicate = I->getPredicate();
510 inline CmpClass_match<LHS, RHS, ICmpInst, ICmpInst::Predicate>
511 m_ICmp(ICmpInst::Predicate &Pred, const LHS &L, const RHS &R) {
513 ICmpInst, ICmpInst::Predicate>(Pre
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathStep.cpp44 Step::Step(Axis axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates)
62 Vector<Predicate*> remainingPredicates;
64 Predicate* predicate = m_predicates[i];
100 Predicate* predicate = m_predicates[i];
106 Predicate* predicate = m_nodeTest.mergedPredicates()[i];
123 Predicate* predicate = m_predicates[i];
222 const Vector<Predicate*>& mergedPredicates = nodeTest.mergedPredicates();
224 Predicate* predicate = mergedPredicates[i];
/external/guava/guava/src/com/google/common/collect/
H A DIterables.java29 import com.google.common.base.Predicate;
182 Iterable<T> removeFrom, Predicate<? super T> predicate) {
191 List<T> list, Predicate<? super T> predicate) {
218 Predicate<? super T> predicate, int to, int from) {
579 final Iterable<T> unfiltered, final Predicate<? super T> predicate) {
619 Iterable<T> iterable, Predicate<? super T> predicate) {
628 Iterable<T> iterable, Predicate<? super T> predicate) {
636 * #tryFind)} or {@link #find(Iterable, Predicate, T)} instead.
642 Predicate<? super T> predicate) {
655 Predicate<
[all...]
H A DMaps.java31 import com.google.common.base.Predicate;
1308 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
1313 Map<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
1318 Predicate<Entry<K, V>> entryPredicate =
1319 new Predicate<Entry<K, V>>() {
1355 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
1363 SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
1367 Predicate<Entry<K, V>> entryPredicate = new Predicate<Entry<K, V>>() {
1401 * equals</i>, as documented at {@link Predicate#appl
[all...]
H A DMultimaps.java30 import com.google.common.base.Predicate;
2175 * as documented at {@link Predicate#apply}. Do not provide a predicate such
2184 Multimap<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
2186 Predicate<Entry<K, V>> entryPredicate =
2187 new Predicate<Entry<K, V>>() {
2220 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
2229 Multimap<K, V> unfiltered, final Predicate<? super V> valuePredicate) {
2231 Predicate<Entry<K, V>> entryPredicate =
2232 new Predicate<Entry<K, V>>() {
2265 * equals</i>, as documented at {@link Predicate#appl
[all...]
H A DIterators.java30 import com.google.common.base.Predicate;
213 Iterator<T> removeFrom, Predicate<? super T> predicate) {
642 final Iterator<T> unfiltered, final Predicate<? super T> predicate) {
681 Iterator<T> iterator, Predicate<? super T> predicate) {
698 Iterator<T> iterator, Predicate<? super T> predicate) {
715 * #find(Iterator, Predicate, T)} instead.
721 Iterator<T> iterator, Predicate<? super T> predicate) {
735 public static <T> T find(Iterator<T> iterator, Predicate<? super T> predicate,
755 Iterator<T> iterator, Predicate<? super T> predicate) {
779 Iterator<T> iterator, Predicate<
[all...]
H A DSets.java28 import com.google.common.base.Predicate;
646 final Predicate<Object> inSet2 = Predicates.in(set2);
683 final Predicate<Object> notInSet2 = Predicates.not(Predicates.in(set2));
742 * as documented at {@link Predicate#apply}. Do not provide a predicate such
749 Set<E> unfiltered, Predicate<? super E> predicate) {
757 Predicate<E> combinedPredicate
769 FilteredSet(Set<E> unfiltered, Predicate<? super E> predicate) {
804 * as documented at {@link Predicate#apply}. Do not provide a predicate such as
814 SortedSet<E> unfiltered, Predicate<? super E> predicate) {
819 Predicate<
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java28 import com.google.common.base.Predicate;
179 Iterable<T> removeFrom, Predicate<? super T> predicate) {
188 List<T> list, Predicate<? super T> predicate) {
215 Predicate<? super T> predicate, int to, int from) {
561 final Iterable<T> unfiltered, final Predicate<? super T> predicate) {
577 Iterable<T> iterable, Predicate<? super T> predicate) {
586 Iterable<T> iterable, Predicate<? super T> predicate) {
594 * #tryFind)} or {@link #find(Iterable, Predicate, T)} instead.
600 Predicate<? super T> predicate) {
613 Predicate<
[all...]
H A DMaps.java30 import com.google.common.base.Predicate;
1279 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
1284 Map<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
1289 Predicate<Entry<K, V>> entryPredicate =
1290 new Predicate<Entry<K, V>>() {
1326 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
1334 SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
1338 Predicate<Entry<K, V>> entryPredicate = new Predicate<Entry<K, V>>() {
1372 * equals</i>, as documented at {@link Predicate#appl
[all...]
H A DIterators.java29 import com.google.common.base.Predicate;
211 Iterator<T> removeFrom, Predicate<? super T> predicate) {
624 final Iterator<T> unfiltered, final Predicate<? super T> predicate) {
645 Iterator<T> iterator, Predicate<? super T> predicate) {
662 Iterator<T> iterator, Predicate<? super T> predicate) {
679 * #find(Iterator, Predicate, T)} instead.
685 Iterator<T> iterator, Predicate<? super T> predicate) {
699 public static <T> T find(Iterator<T> iterator, Predicate<? super T> predicate,
719 Iterator<T> iterator, Predicate<? super T> predicate) {
743 Iterator<T> iterator, Predicate<
[all...]
H A DSets.java27 import com.google.common.base.Predicate;
634 final Predicate<Object> inSet2 = Predicates.in(set2);
671 final Predicate<Object> notInSet2 = Predicates.not(Predicates.in(set2));
730 * as documented at {@link Predicate#apply}. Do not provide a predicate such
737 Set<E> unfiltered, Predicate<? super E> predicate) {
745 Predicate<E> combinedPredicate
757 FilteredSet(Set<E> unfiltered, Predicate<? super E> predicate) {
792 * as documented at {@link Predicate#apply}. Do not provide a predicate such as
802 SortedSet<E> unfiltered, Predicate<? super E> predicate) {
807 Predicate<
[all...]
/external/chromium/chrome/browser/history/
H A Dpage_usage_data.h105 static bool Predicate(const PageUsageData* dud1,
/external/llvm/include/llvm/Analysis/
H A DConstantFolding.h64 Constant *ConstantFoldCompareInstOperands(unsigned Predicate,
H A DScalarEvolution.h469 ICmpInst::Predicate p);
506 bool isImpliedCond(ICmpInst::Predicate Pred,
514 bool isImpliedCondOperands(ICmpInst::Predicate Pred,
521 bool isImpliedCondOperandsHelper(ICmpInst::Predicate Pred,
537 bool isKnownPredicateWithRanges(ICmpInst::Predicate Pred,
726 bool isLoopEntryGuardedByCond(const Loop *L, ICmpInst::Predicate Pred,
732 bool isLoopBackedgeGuardedByCond(const Loop *L, ICmpInst::Predicate Pred,
830 bool isKnownPredicate(ICmpInst::Predicate Pred,
838 bool SimplifyICmpOperands(ICmpInst::Predicate &Pred,
H A DInstructionSimplify.h129 Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
136 Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
173 Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
/external/guava/guava-tests/test/com/google/common/collect/
H A DCollections2Test.java28 import com.google.common.base.Predicate;
64 static final Predicate<String> NOT_YYY_ZZZ = new Predicate<String>() {
71 static final Predicate<String> LENGTH_1 = new Predicate<String>() {
78 static final Predicate<String> STARTS_WITH_VOWEL = new Predicate<String>() {
H A DMapsTest.java29 import com.google.common.base.Predicate;
917 private static final Predicate<String> NOT_LENGTH_3
918 = new Predicate<String>() {
925 private static final Predicate<Integer> EVEN
926 = new Predicate<Integer>() {
933 private static final Predicate<Entry<String, Integer>> CORRECT_LENGTH
934 = new Predicate<Entry<String, Integer>>() {
1080 Predicate<Object> predicate = Predicates.alwaysFalse();
1091 Predicate<Entry<?, ?>> predicate = new Predicate<Entr
[all...]
/external/guava/guava/src/com/google/common/base/
H A DEquivalence.java256 public final Predicate<T> equivalentTo(@Nullable T target) {
260 private static final class EquivalentToPredicate<T> implements Predicate<T>, Serializable {
H A DFunctions.java233 public static <T> Function<T, Boolean> forPredicate(Predicate<T> predicate) {
239 private final Predicate<T> predicate;
241 private PredicateFunction(Predicate<T> predicate) {
/external/guava/guava-tests/test/com/google/common/base/
H A DEquivalenceTest.java116 Predicate<Object> equalTo1 = Equivalences.equals().equivalentTo("1");
120 Predicate<Object> isNull = Equivalences.equals().equivalentTo(null);
/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h38 Predicate, enumerator in enum:llvm::MCOI::OperandFlags
80 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp148 PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();

Completed in 1606 milliseconds

12345