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

12345678

/external/llvm/include/llvm/Transforms/Utils/
H A DCmpInstAnalysis.h57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCPredicates.h1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
26 /// Predicate - These are "(BI << 5) | BO" for various predicates.
27 enum Predicate { enum in namespace:llvm::PPC
55 Predicate InvertPredicate(Predicate Opcode);
59 Predicate getSwappedPredicate(Predicate Opcode);
H A DPPCPredicates.cpp1 //===-- PPCPredicates.cpp - PPC Branch Predicate Information --------------===//
19 PPC::Predicate PPC::InvertPredicate(PPC::Predicate Opcode) {
49 PPC::Predicate PPC::getSwappedPredicate(PPC::Predicate Opcode) {
/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/chromium_org/third_party/WebKit/Source/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.h66 template<typename Predicate>
67 PassOwnPtr<DataType> waitForMessageFilteredWithTimeout(MessageQueueWaitResult&, Predicate&, double absoluteTime);
69 template<typename Predicate>
70 void removeIf(Predicate&);
142 template<typename Predicate>
143 inline PassOwnPtr<DataType> MessageQueue<DataType>::waitForMessageFilteredWithTimeout(MessageQueueWaitResult& result, Predicate& predicate, double absoluteTime)
194 template<typename Predicate>
195 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/chromium_org/cc/base/
H A Dscoped_ptr_algorithm.h12 template <class ForwardIterator, class Predicate, class ScopedContainer>
17 Predicate predicate) {
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathStep.h39 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&, const Vector<Predicate*>& predicates = Vector<Predicate*>());
99 Vector<Predicate*> m_predicates;
H A DXPathPath.h37 class Predicate;
42 Filter(Expression*, const Vector<Predicate*>& = Vector<Predicate*>());
51 Vector<Predicate*> m_predicates;
H A DXPathParser.h42 class Predicate;
79 void registerPredicateVector(Vector<Predicate*>*);
80 void deletePredicateVector(Vector<Predicate*>*);
119 HashSet<Vector<Predicate*>*> m_predicateVectors;
H A DXPathPredicate.h106 class Predicate { class in namespace:WebCore::XPath
107 WTF_MAKE_NONCOPYABLE(Predicate); WTF_MAKE_FAST_ALLOCATED;
109 explicit Predicate(Expression*);
110 ~Predicate();
/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/chromium_org/chrome/browser/history/
H A Dpage_usage_data.cc18 bool PageUsageData::Predicate(const PageUsageData* lhs, function in class:PageUsageData
/external/droiddriver/src/com/google/android/droiddriver/
H A DUiElement.java27 import com.google.common.base.Predicate;
190 List<UiElement> getChildren(Predicate<? super UiElement> predicate);
195 Predicate<UiElement> VISIBLE = new Predicate<UiElement>() {
/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>>() {
/external/llvm/include/llvm/CodeGen/
H A DAnalysis.h72 ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred);
81 ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred);
/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/droiddriver/src/com/google/android/droiddriver/scroll/
H A DAbstractSentinelStrategy.java22 import com.google.common.base.Predicate;
33 * Gets sentinel based on {@link Predicate}.
36 protected final Predicate<? super UiElement> predicate;
39 protected GetStrategy(Predicate<? super UiElement> predicate, String description) {
58 * {@link Predicate}.
64 Predicate<? super UiElement> extraPredicate, String extraDescription) {
/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();

Completed in 644 milliseconds

12345678