Searched refs:Predicate (Results 1 - 25 of 79) sorted by relevance

1234

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCPredicates.h1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
19 /// Predicate - These are "(BI << 5) | BO" for various predicates.
20 enum Predicate { enum in namespace:llvm::PPC
33 Predicate InvertPredicate(Predicate Opcode);
H A DPPCPredicates.cpp1 //===-- PPCPredicates.cpp - PPC Branch Predicate Information --------------===//
19 PPC::Predicate PPC::InvertPredicate(PPC::Predicate Opcode) {
/external/webkit/Source/JavaScriptCore/wtf/
H A DNonCopyingSort.h34 template<typename RandomAccessIterator, typename Predicate>
35 inline void siftDown(RandomAccessIterator array, ptrdiff_t start, ptrdiff_t end, Predicate compareLess)
52 template<typename RandomAccessIterator, typename Predicate>
53 inline void heapify(RandomAccessIterator array, ptrdiff_t count, Predicate compareLess)
63 template<typename RandomAccessIterator, typename Predicate>
64 void heapSort(RandomAccessIterator start, RandomAccessIterator end, Predicate compareLess)
77 template<typename RandomAccessIterator, typename Predicate>
78 inline void nonCopyingSort(RandomAccessIterator start, RandomAccessIterator end, Predicate compareLess)
H A DMessageQueue.h63 template<typename Predicate>
64 PassOwnPtr<DataType> waitForMessageFilteredWithTimeout(MessageQueueWaitResult&, Predicate&, double absoluteTime);
66 template<typename Predicate>
67 void removeIf(Predicate&);
129 template<typename Predicate>
130 inline PassOwnPtr<DataType> MessageQueue<DataType>::waitForMessageFilteredWithTimeout(MessageQueueWaitResult& result, Predicate& predicate, double absoluteTime)
171 template<typename Predicate>
172 inline void MessageQueue<DataType>::removeIf(Predicate& predicate)
/external/guava/src/com/google/common/base/
H A DPredicates.java33 * Contains static factory methods for creating {@code Predicate} instances.
53 public static <T> Predicate<T> alwaysTrue() {
54 return (Predicate<T>) AlwaysTruePredicate.INSTANCE;
62 public static <T> Predicate<T> alwaysFalse() {
63 return (Predicate<T>) AlwaysFalsePredicate.INSTANCE;
71 public static <T> Predicate<T> isNull() {
72 return (Predicate<T>) IsNullPredicate.INSTANCE;
80 public static <T> Predicate<T> notNull() {
81 return (Predicate<T>) NotNullPredicate.INSTANCE;
88 public static <T> Predicate<
[all...]
H A DPredicate.java25 * {@code RegexPredicate} might implement {@code Predicate<String>}, and return
35 public interface Predicate<T> { interface
51 * Indicates whether some other object is equal to this {@code Predicate}.
53 * also a {@code Predicate} and, for every input object {@code input}, it
/external/webkit/Source/WebCore/xml/
H A DXPathStep.h40 class Predicate;
67 Vector<Predicate*>& mergedPredicates() { return m_mergedPredicates; }
68 const Vector<Predicate*>& mergedPredicates() const { return m_mergedPredicates; }
76 Vector<Predicate*> m_mergedPredicates;
79 Step(Axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates = Vector<Predicate*>());
99 Vector<Predicate*> m_predicates;
H A DXPathPath.h39 class Predicate;
44 Filter(Expression*, const Vector<Predicate*>& = Vector<Predicate*>());
53 Vector<Predicate*> m_predicates;
H A DXPathParser.h45 class Predicate;
82 void registerPredicateVector(Vector<Predicate*>*);
83 void deletePredicateVector(Vector<Predicate*>*);
122 HashSet<Vector<Predicate*>*> m_predicateVectors;
H A DXPathPredicate.h108 class Predicate { class in namespace:WebCore::XPath
109 WTF_MAKE_NONCOPYABLE(Predicate); WTF_MAKE_FAST_ALLOCATED;
111 Predicate(Expression*);
112 ~Predicate();
H A DXPathGrammar.y67 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: label
H A DXPathPredicate.cpp256 Predicate::Predicate(Expression* expr) function in class:WebCore::XPath::Predicate
261 Predicate::~Predicate()
266 bool Predicate::evaluate() const
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/llvm/include/llvm/CodeGen/
H A DAnalysis.h71 ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred);
76 ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred);
/external/chromium/chrome/browser/history/
H A Dpage_usage_data.cc43 bool PageUsageData::Predicate(const PageUsageData* lhs, function in class:PageUsageData
H A Dpage_usage_data.h105 static bool Predicate(const PageUsageData* dud1,
/external/guava/src/com/google/common/collect/
H A DCollections2.java22 import com.google.common.base.Predicate;
103 Collection<E> unfiltered, Predicate<? super E> predicate) {
128 final Predicate<? super E> predicate;
131 Predicate<? super E> predicate) {
136 FilteredCollection<E> createCombined(Predicate<? super E> newPredicate) {
205 Predicate<E> combinedPredicate = new Predicate<E>() {
215 Predicate<E> combinedPredicate = new Predicate<E>() {
H A DIterables.java24 import com.google.common.base.Predicate;
149 Iterable<T> removeFrom, Predicate<? super T> predicate) {
158 List<T> list, Predicate<? super T> predicate) {
501 final Iterable<T> unfiltered, final Predicate<? super T> predicate) {
539 Iterable<T> iterable, Predicate<? super T> predicate) {
548 Iterable<T> iterable, Predicate<? super T> predicate) {
560 Predicate<? super T> predicate) {
576 Iterable<T> iterable, Predicate<? super T> predicate) {
/external/llvm/include/llvm/Analysis/
H A DInstructionSimplify.h108 Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
114 Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
141 Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
H A DConstantFolding.h60 Constant *ConstantFoldCompareInstOperands(unsigned Predicate,
H A DScalarEvolution.h457 ICmpInst::Predicate p);
494 bool isImpliedCond(ICmpInst::Predicate Pred,
502 bool isImpliedCondOperands(ICmpInst::Predicate Pred,
509 bool isImpliedCondOperandsHelper(ICmpInst::Predicate Pred,
525 bool isKnownPredicateWithRanges(ICmpInst::Predicate Pred,
714 bool isLoopEntryGuardedByCond(const Loop *L, ICmpInst::Predicate Pred,
720 bool isLoopBackedgeGuardedByCond(const Loop *L, ICmpInst::Predicate Pred,
813 bool isKnownPredicate(ICmpInst::Predicate Pred,
821 bool SimplifyICmpOperands(ICmpInst::Predicate &Pred,
/external/llvm/include/llvm/
H A DInstrTypes.h646 enum Predicate { enum in class:llvm::CmpInst
709 Predicate getPredicate() const {
710 return Predicate(getSubclassDataFromInstruction());
714 void setPredicate(Predicate P) { setInstructionSubclassData(P); }
716 static bool isFPPredicate(Predicate P) {
720 static bool isIntPredicate(Predicate P) {
732 Predicate getInversePredicate() const {
740 static Predicate getInversePredicate(Predicate pred);
748 Predicate getSwappedPredicat
[all...]
/external/llvm/include/llvm/Support/
H A DPatternMatch.h140 template<typename Predicate>
141 struct cst_pred_ty : public Predicate {
155 template<typename Predicate>
156 struct api_pred_ty : public Predicate {
449 PredicateTy &Predicate; member in struct:llvm::PatternMatch::CmpClass_match
454 : Predicate(Pred), L(LHS), R(RHS) {}
460 Predicate = I->getPredicate();
468 inline CmpClass_match<LHS, RHS, ICmpInst, ICmpInst::Predicate>
469 m_ICmp(ICmpInst::Predicate &Pred, const LHS &L, const RHS &R) {
471 ICmpInst, ICmpInst::Predicate>(Pre
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp144 PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();
/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); }

Completed in 218 milliseconds

1234