HomeSort by relevance Sort by last modified time
    Searched refs:predicate (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/antlr/src/org/antlr/runtime/debug/
DebugEventListener.java 120 * before starting a sem/syn predicate to get the
215 /** A semantic predicate was evaluate with this result and action text */
216 public void semanticPredicate(boolean result, String predicate);
DebugEventHub.java 203 public void semanticPredicate(boolean result, String predicate) {
206 listener.semanticPredicate(result, predicate);
DebugEventSocketProxy.java 210 public void semanticPredicate(boolean result, String predicate) {
214 serializeText(buf, predicate);
  /external/clang/test/Analysis/
unix-fns.c 16 void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block);
38 do { if (__builtin_expect(*(&pred), ~0l) != ~0l) dispatch_once((&pred), (^() {})); } while (0); // expected-warning{{Call to 'dispatch_once' uses the local variable 'pred' for the predicate value}}
  /external/llvm/lib/VMCore/
ConstantFold.h 48 Constant *ConstantFoldCompareInstruction(unsigned short predicate,
Instructions.cpp     [all...]
  /frameworks/base/media/libstagefright/include/
TimedEventQueue.h 89 // Cancel any pending event that satisfies the predicate.
91 // satisfying the predicate (if any).
93 bool (*predicate)(void *cookie, const sp<Event> &event),
  /external/chromium/chrome/browser/resources/shared/js/
util.js 86 * Return the first ancestor for which the {@code predicate} returns true.
88 * @param {function(Node) : boolean} predicate The function that tests the
92 function findAncestor(node, predicate) {
94 while (node != null && !(last = predicate(node))) {
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-death-test-internal.h 116 // predicate, and its stderr output matches a user-supplied regular
118 // The user-supplied predicate may be a macro expression rather
185 # define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \
199 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
  /external/llvm/include/llvm/
InstrTypes.h 645 /// predicate values are not overlapping between the classes.
646 enum Predicate {
686 /// Construct a compare instruction, given the opcode, the predicate and
692 unsigned short predicate, Value *S1,
696 /// Construct a compare instruction, given the opcode, the predicate and the
700 static CmpInst *Create(OtherOps Op, unsigned short predicate, Value *S1,
708 /// @brief Return the predicate for this instruction.
709 Predicate getPredicate() const {
710 return Predicate(getSubclassDataFromInstruction());
713 /// @brief Set the predicate for this instruction to the specified value
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-death-test-internal.h 116 // predicate, and its stderr output matches a user-supplied regular
118 // The user-supplied predicate may be a macro expression rather
185 # define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \
199 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
  /external/protobuf/gtest/include/gtest/internal/
gtest-death-test-internal.h 110 // predicate, and its stderr output matches a user-supplied regular
112 // The user-supplied predicate may be a macro expression rather
154 #define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \
168 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
  /external/mesa3d/src/glsl/
opt_dead_functions.cpp 65 bool (*predicate)(ir_instruction *ir); member in class:ir_dead_functions_visitor
  /external/guava/src/com/google/common/collect/
Maps.java 23 import com.google.common.base.Predicate;
849 * satisfy a predicate. The returned map is a live view of {@code unfiltered};
856 * IllegalArgumentException} if a key that doesn't satisfy the predicate is
872 Map<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
874 Predicate<Entry<K, V>> entryPredicate = new Predicate<Entry<K, V>>() {
887 * satisfy a predicate. The returned map is a live view of {@code unfiltered};
894 * IllegalArgumentException} if a value that doesn't satisfy the predicate is
910 Map<K, V> unfiltered, final Predicate<? super V> valuePredicate) {
912 Predicate<Entry<K, V>> entryPredicate = new Predicate<Entry<K, V>>()
    [all...]
Sets.java 20 import com.google.common.base.Predicate;
618 final Predicate<Object> inSet2 = Predicates.in(set2);
658 final Predicate<Object> notInSet2 = Predicates.not(Predicates.in(set2));
676 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
683 * element that doesn't satisfy the predicate is provided. When methods such
694 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
697 Set<E> unfiltered, Predicate<? super E> predicate) {
702 Predicate<E> combinedPredicate
703 = Predicates.<E>and(filtered.predicate, predicate)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 309 // Returns the number of elements that satisfy a given predicate.
310 // The parameter 'predicate' is a Boolean function or functor that
312 template <typename P> // P is the type of the predicate function/functor
313 int CountIf(P predicate) const {
318 if ( predicate(node->element()) ) {
339 // Returns the first node whose element satisfies a given predicate,
340 // or NULL if none is found. The parameter 'predicate' is a
343 template <typename P> // P is the type of the predicate function/functor.
344 const ListNode<E> * FindIf(P predicate) const {
348 if ( predicate(node->element()) )
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 371 // Returns the number of elements that satisfy a given predicate.
372 // The parameter 'predicate' is a Boolean function or functor that
374 template <typename P> // P is the type of the predicate function/functor
375 int CountIf(P predicate) const {
380 if ( predicate(node->element()) ) {
401 // Returns the first node whose element satisfies a given predicate,
402 // or NULL if none is found. The parameter 'predicate' is a
405 template <typename P> // P is the type of the predicate function/functor.
406 const ListNode<E> * FindIf(P predicate) const {
410 if ( predicate(node->element()) )
    [all...]
  /external/guava/src/com/google/common/base/
CharMatcher.java 29 * {@link Predicate} does for any {@link Object}. Also offers basic text
47 public abstract class CharMatcher implements Predicate<Character> {
500 * Character}-based predicate, but which operates on primitive {@code char}
504 final Predicate<? super Character> predicate) {
505 checkNotNull(predicate);
506 if (predicate instanceof CharMatcher) {
507 return (CharMatcher) predicate;
511 return predicate.apply(c);
514 return predicate.apply(checkNotNull(character))
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 322 // Returns the number of elements that satisfy a given predicate.
323 // The parameter 'predicate' is a Boolean function or functor that
325 template <typename P> // P is the type of the predicate function/functor
326 int CountIf(P predicate) const {
329 if (predicate(*(elements_[i]))) {
348 // Returns the first node whose element satisfies a given predicate,
349 // or NULL if none is found. The parameter 'predicate' is a
352 template <typename P> // P is the type of the predicate function/functor.
353 const E* FindIf(P predicate) const {
355 if (predicate(*elements_[i]))
    [all...]
  /external/bluetooth/glib/glib/
ghash.h 89 GHRFunc predicate,
  /external/kernel-headers/original/asm-arm/
ptrace.h 156 #define predicate(x) ((x) & 0xf0000000) macro
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
api.py 103 def _modified_files_matching_predicate(self, git_commit, predicate, changed_files=None):
110 return [path for path in absolute_paths if predicate(path)]
  /frameworks/base/media/libstagefright/
TimedEventQueue.cpp 160 bool (*predicate)(void *cookie, const sp<Event> &event),
167 if (!(*predicate)(cookie, (*it).event)) {
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 23 import com.android.internal.util.Predicate;
169 private <T> List<T> select(Collection<T> items, Predicate<T> predicate) {
172 if (predicate.apply(item)) {
213 private static class TestCasePredicate implements Predicate<Class<?>> {
247 private static class TestMethodPredicate implements Predicate<Method> {
TestSuiteBuilder.java 23 import com.android.internal.util.Predicate;
48 private final Set<Predicate<TestMethod>> predicates = new HashSet<Predicate<TestMethod>>();
123 public TestSuiteBuilder addRequirements(List<Predicate<TestMethod>> predicates) {
159 * call {@link #addRequirements(com.android.internal.util.Predicate[])} to make it clear which
219 public final TestSuiteBuilder addRequirements(Predicate<TestMethod>... predicates) {
220 ArrayList<Predicate<TestMethod>> list = new ArrayList<Predicate<TestMethod>>();
252 for (Predicate<TestMethod> predicate : predicates)
    [all...]

Completed in 2560 milliseconds

12 3 4