Searched refs:has (Results 1 - 25 of 479) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DRecognizerSharedState.pm10 has 'following' => (
16 has '_fsp' => (
25 has 'error_recovery' => (
36 has 'last_error_index' => (
43 # has failed to match. Reset to false upon valid token match.
44 has 'failed' => (
51 has 'syntax_errors' => (
59 has 'backtracking' => (
70 has 'rule_memo' => (
82 has 'toke
[all...]
H A DCharStreamState.pm6 has 'p' => (
13 has 'line' => (
20 has 'char_position_in_line' => (
H A DNoViableAltException.pm7 has 'grammar_decision_description' => (
13 has 'decision_number' => (
19 has 'state_number' => (
H A DParserRuleReturnScope.pm7 has 'start' => (
12 has 'stop' => (
H A DRecognitionException.pm11 has 'input' => (
17 has 'index' => (
23 has 'token' => (
28 has 'node' => (
37 has 'c' => (
42 has 'line' => (
48 has 'char_position_in_line' => (
54 has 'approximate_line_info' => (
H A DDFA.pm8 has 'eot' => (
13 has 'eof' => (
18 has 'min' => (
23 has 'max' => (
28 has 'accept' => (
33 has 'special' => (
38 has 'transition' => (
43 has 'decision_number' => (
50 has 'recognizer' => (
166 # Given a String that has
[all...]
/external/libcxx/test/std/utilities/template.bitset/
H A Dincludes.pass.cpp15 #error <cstddef> has not been included
19 #error <string> has not been included
23 #error <stdexcept> has not been included
27 #error <iosfwd> has not been included
/external/v8/test/mjsunit/
H A Ddelete.js28 // We use the has() function to avoid relying on a functioning
30 function has(o, k) { return typeof o[k] !== 'undefined'; } function
54 assertTrue(has(o, 'x'));
55 assertTrue(has(o, 'y'));
57 assertFalse(has(o, 'x'));
58 assertTrue(has(o, 'y'));
60 assertFalse(has(o, 'x'));
61 assertFalse(has(o, 'y'));
73 assertFalse(has(o, String.fromCharCode(i)), "deleted (" + i + ")");
74 assertTrue(has(
[all...]
/external/valgrind/none/tests/
H A Dtls.stdout.exp1 tls_ptr: case "race" has mismatch: *ip=1 here=0
2 tls_ptr: case "race" has mismatch: *ip=2 here=1
3 tls_ptr: case "race" has mismatch: *ip=3 here=1
4 tls_ptr: case "race" has mismatch: *ip=4 here=2
5 tls_ptr: case "race" has mismatch: *ip=5 here=2
6 tls_ptr: case "race" has mismatch: *ip=6 here=3
7 tls_ptr: case "race" has mismatch: *ip=7 here=3
8 tls_ptr: case "race" has mismatch: *ip=8 here=4
9 tls_ptr: case "race" has mismatch: *ip=9 here=4
10 tls_ptr: case "race" has mismatc
[all...]
/external/libcxx/test/std/atomics/
H A Dlibcpp-has-no-threads.pass.cpp9 // XFAIL: libcpp-has-no-threads
13 'libcpp-has-no-threads' is available iff _LIBCPP_HAS_NO_THREADS is defined
/external/clang/test/SemaCXX/
H A Dcxx0x-nontrivial-union.cpp26 int &i; // expected-error {{union member 'i' has reference type 'int &'}}
70 bool has; member in struct:optional::optional
73 optional() : has(false) {}
75 optional(U &&...u) : has(true), value(forward<U>(u)...) {}
77 optional(const optional &o) : has(o.has) {
78 if (has) new (&value) T(o.value);
80 optional(optional &&o) : has(o.has) {
81 if (has) ne
[all...]
H A Dblocks.cpp51 bool has = true;
57 if (has)
62 func(has);
66 if (has)
67 has = 2;
112 // instantiation. The template function has to be constexpr because
/external/v8/test/mjsunit/harmony/
H A Dproxies-hash.js57 assertTrue(s.has(p1));
58 assertTrue(s.has(p2));
59 assertFalse(s.has(p3));
63 assertTrue(s.has(p1));
64 assertTrue(s.has(p2));
65 assertFalse(s.has(p3));
68 assertTrue(s.has(p1));
69 assertFalse(s.has(p2));
70 assertFalse(s.has(p3));
94 assertTrue(m.has(p
[all...]
/external/v8/test/mjsunit/es6/regress/
H A Dregress-2034.js33 assertFalse(map.has(key));
38 assertTrue(map.has(key));
43 assertFalse(map.has(key));
H A Dregress-2186.js41 assertTrue(set.has(ONE));
42 assertTrue(set.has(ANOTHER_ONE));
H A Dregress-2829.js31 assertTrue(wm1.has(Object.prototype));
44 assertTrue(wm1.has(o1));
/external/valgrind/drd/tests/
H A Dpth_cleanup_handler.stderr.exp2 Cleanup handler has been called.
3 Cleanup handler has been called.
/external/clang/test/PCH/
H A Dfuzzy-pch.c20 # error FOO has the wrong definition
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntSet.java44 boolean has(int value); method in interface:IntSet
/external/clang/include/clang/Driver/
H A DSanitizerArgs.h40 bool needsAsanRt() const { return Sanitizers.has(SanitizerKind::Address); }
42 bool needsTsanRt() const { return Sanitizers.has(SanitizerKind::Thread); }
43 bool needsMsanRt() const { return Sanitizers.has(SanitizerKind::Memory); }
45 return Sanitizers.has(SanitizerKind::Leak) &&
46 !Sanitizers.has(SanitizerKind::Address);
49 bool needsDfsanRt() const { return Sanitizers.has(SanitizerKind::DataFlow); }
/external/droiddriver/src/io/appium/droiddriver/
H A DDroidDriver.java31 boolean has(Finder finder); method in interface:DroidDriver
56 boolean has(Finder finder, long timeoutMillis); method in interface:DroidDriver
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeMultisetTest.java86 ASSERT.that(elementSet.headSet("b")).has().exactly("a").inOrder();
87 ASSERT.that(elementSet.tailSet("b")).has().exactly("b", "c").inOrder();
88 ASSERT.that(elementSet.subSet("a", "c")).has().exactly("a", "b").inOrder();
101 ASSERT.that(elementSet).has().exactly("a", "b", "c", "d", "e", "f").inOrder();
103 ASSERT.that(subset).has().exactly("b", "c", "d", "e").inOrder();
106 ASSERT.that(elementSet).has().exactly("a", "b", "d", "e", "f").inOrder();
107 ASSERT.that(subset).has().exactly("b", "d", "e").inOrder();
111 ASSERT.that(elementSet).has().exactly("a", "b", "d", "e", "f").inOrder();
112 ASSERT.that(subset).has().exactly("b", "d", "e").inOrder();
126 ASSERT.that(elementSet).has()
[all...]
/external/clang/include/clang/Basic/
H A DSanitizers.h33 bool has(SanitizerKind K) const;
/external/clang/lib/Basic/
H A DSanitizers.cpp19 bool SanitizerSet::has(SanitizerKind K) const { function in class:SanitizerSet
/external/valgrind/memcheck/tests/
H A Dmalloc3.stderr.exp1 Argument 'size' of function malloc has a fishy (possibly negative) value: -1
5 Argument 'size' of function calloc has a fishy (possibly negative) value: -1

Completed in 3830 milliseconds

1234567891011>>