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

12345

/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/llvm/include/llvm/Transforms/Utils/
H A DCmpInstAnalysis.h57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java32 * Static utility methods pertaining to {@code Predicate} instances.
51 public static <T> Predicate<T> alwaysTrue() {
59 public static <T> Predicate<T> alwaysFalse() {
68 public static <T> Predicate<T> isNull() {
77 public static <T> Predicate<T> notNull() {
85 public static <T> Predicate<T> not(Predicate<T> predicate) {
98 public static <T> Predicate<T> and(
99 Iterable<? extends Predicate<? super T>> components) {
112 public static <T> Predicate<
[all...]
/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/guava/src/com/google/common/base/
H A DPredicates.java35 * Static utility methods pertaining to {@code Predicate} instances.
54 public static <T> Predicate<T> alwaysTrue() {
62 public static <T> Predicate<T> alwaysFalse() {
71 public static <T> Predicate<T> isNull() {
80 public static <T> Predicate<T> notNull() {
88 public static <T> Predicate<T> not(Predicate<T> predicate) {
101 public static <T> Predicate<T> and(
102 Iterable<? extends Predicate<? super T>> components) {
115 public static <T> Predicate<
[all...]
H A DPredicate.java30 public interface Predicate<T> { interface
52 * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
/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
/external/guava/guava-tests/test/com/google/common/base/
H A DPredicatesTest.java46 private static final Predicate<Integer> TRUE = Predicates.alwaysTrue();
47 private static final Predicate<Integer> FALSE = Predicates.alwaysFalse();
48 private static final Predicate<Integer> NEVER_REACHED =
49 new Predicate<Integer>() {
58 static class IsOdd implements Predicate<Integer>, Serializable {
76 * Generates a new Predicate per call.
78 * <p>Creating a new Predicate each time helps catch cases where code is
275 Collection<Predicate<Integer>> empty = Arrays.asList();
302 Predicate[] array = {Predicates.alwaysFalse()};
303 Predicate<Objec
[all...]
/external/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp45 ICmpInst::Predicate Pred = InvertPred ? ICI->getInversePredicate()
73 CmpInst::Predicate &NewICmpPred) {
92 bool llvm::PredicatesFoldable(ICmpInst::Predicate p1, ICmpInst::Predicate p2) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DFilteredMultimapTest.java20 import com.google.common.base.Predicate;
34 private static final Predicate<Map.Entry<String, Integer>> ENTRY_PREDICATE
35 = new Predicate<Map.Entry<String, Integer>>() {
61 private static final Predicate<String> KEY_PREDICATE
62 = new Predicate<String>() {
77 private static final Predicate<Integer> VALUE_PREDICATE
78 = new Predicate<Integer>() {
H A DMultimapsFilterEntriesAsMapTest.java20 import com.google.common.base.Predicate;
34 private static final Predicate<Map.Entry<String, Integer>> PREDICATE
35 = new Predicate<Map.Entry<String, Integer>>() {
H A DSortedMapsTest.java24 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>>() {
/external/guava/guava/src/com/google/common/collect/
H A DSortedMaps.java32 import com.google.common.base.Predicate;
214 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
220 SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
224 Predicate<Entry<K, V>> entryPredicate = new Predicate<Entry<K, V>>() {
258 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
264 SortedMap<K, V> unfiltered, final Predicate<? super V> valuePredicate) {
266 Predicate<Entry<K, V>> entryPredicate =
267 new Predicate<Entry<K, V>>() {
303 * equals</i>, as documented at {@link Predicate#appl
[all...]
H A DCollections2.java25 import com.google.common.base.Predicate;
71 * as documented at {@link Predicate#apply}. Do not provide a predicate such
79 Collection<E> unfiltered, Predicate<? super E> predicate) {
104 final Predicate<? super E> predicate;
107 Predicate<? super E> predicate) {
112 FilteredCollection<E> createCombined(Predicate<? super E> newPredicate) {
198 Predicate<E> combinedPredicate = new Predicate<E>() {
210 Predicate<E> combinedPredicate = new Predicate<
[all...]
/external/chromium/chrome/browser/history/
H A Dpage_usage_data.cc43 bool PageUsageData::Predicate(const PageUsageData* lhs, function in class:PageUsageData
/external/llvm/include/llvm/CodeGen/
H A DAnalysis.h72 ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred);
81 ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLL1DFA.java128 SemanticContext.Predicate synpred =
152 protected SemanticContext.Predicate getSynPredForAlt(NFAState decisionStartState,
164 SemanticContext.Predicate p = (SemanticContext.Predicate)ctx;
168 ((SemanticContext.Predicate)altStartState.transition[0].label.getSemanticContext()).predicateAST);
173 return (SemanticContext.Predicate)altStartState.transition[0].label.getSemanticContext();
H A DPredicateLabel.java44 this.semanticContext = new SemanticContext.Predicate(predicateASTNode);

Completed in 482 milliseconds

12345