HomeSort by relevance Sort by last modified time
    Searched refs:has (Results 1 - 25 of 1350) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
RecognizerSharedState.pm 10 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 'token' =>
    [all...]
CharStreamState.pm 6 has 'p' => (
13 has 'line' => (
20 has 'char_position_in_line' => (
NoViableAltException.pm 7 has 'grammar_decision_description' => (
13 has 'decision_number' => (
19 has 'state_number' => (
ParserRuleReturnScope.pm 7 has 'start' => (
12 has 'stop' => (
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/scanner/
ConstantTest.java 23 assertTrue(Constant.LINEBR.has('\n'));
24 assertTrue(Constant.LINEBR.has('\u0085'));
25 assertFalse(Constant.LINEBR.has(' '));
29 assertTrue(Constant.LINEBR.has(' ', " "));
33 assertTrue(Constant.LINEBR.has((char) 0, "\0"));
  /external/libcxx/test/libcxx/utilities/template.bitset/
includes.pass.cpp 15 #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/libcxx/test/libcxx/atomics/
libcpp-has-no-threads.pass.cpp 9 // XFAIL: libcpp-has-no-threads
13 'libcpp-has-no-threads' is available iff _LIBCPP_HAS_NO_THREADS is defined
  /external/skia/tests/
BitSetTest.cpp 15 REPORTER_ASSERT(reporter, set0.has(0) == false);
16 REPORTER_ASSERT(reporter, set0.has(32767) == false);
17 REPORTER_ASSERT(reporter, set0.has(65535) == false);
20 REPORTER_ASSERT(reporter, set0.has(22) == true);
22 REPORTER_ASSERT(reporter, set0.has(24) == true);
24 REPORTER_ASSERT(reporter, set0.has(35) == true);
25 REPORTER_ASSERT(reporter, set0.has(24) == true);
26 REPORTER_ASSERT(reporter, set0.has(35) == true);
38 REPORTER_ASSERT(reporter, set0.has(12345) == false);
39 REPORTER_ASSERT(reporter, set1.has(12345) == true)
    [all...]
  /external/skqp/tests/
BitSetTest.cpp 15 REPORTER_ASSERT(reporter, set0.has(0) == false);
16 REPORTER_ASSERT(reporter, set0.has(32767) == false);
17 REPORTER_ASSERT(reporter, set0.has(65535) == false);
20 REPORTER_ASSERT(reporter, set0.has(22) == true);
22 REPORTER_ASSERT(reporter, set0.has(24) == true);
24 REPORTER_ASSERT(reporter, set0.has(35) == true);
25 REPORTER_ASSERT(reporter, set0.has(24) == true);
26 REPORTER_ASSERT(reporter, set0.has(35) == true);
38 REPORTER_ASSERT(reporter, set0.has(12345) == false);
39 REPORTER_ASSERT(reporter, set1.has(12345) == true)
    [all...]
  /build/kati/testcase/
deprecated_var.mk 10 $(info Makefile:8: B has been deprecated.)
17 $(info Makefile:15: A has been deprecated.)
18 $(info Makefile:15: B has been deprecated.)
19 $(info Makefile:15: C has been deprecated.)
20 $(info Makefile:15: D has been deprecated.)
26 $(info Makefile:24: D has been deprecated.)
33 $(info Makefile:31: E has been deprecated. Use X instead.)
39 $(info Makefile:37: E has been deprecated. Use X instead.)
40 $(info Makefile:37: C has been deprecated.)
47 $(info Makefile:45: E has been deprecated. Use X instead.
    [all...]
  /external/clang/unittests/AST/
ASTImporterTest.cpp 111 has(
120 has(
129 has(
142 has(
154 has(
166 has(
175 has(
192 has(
195 has(initListExpr(
197 has(integerLiteral
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/util/
ListIntSetTest.java 32 assertTrue(set.has(0));
33 assertTrue(set.has(1));
34 assertTrue(set.has(31));
38 assertFalse(set.has(2));
39 assertFalse(set.has(7));
40 assertFalse(set.has(30));
87 assertTrue(set.has(0));
88 assertTrue(set.has(1));
89 assertTrue(set.has(31));
91 assertFalse(set.has(2))
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-nontrivial-union.cpp 26 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) new (&value) T(move(o.value))
    [all...]
  /external/skqp/src/gpu/gl/
GrGLInterface.cpp 165 fExtensions.has("GL_ARB_timer_query") ||
166 fExtensions.has("GL_EXT_timer_query")) {
172 if (glVer >= GR_GL_VER(3,3) || fExtensions.has("GL_ARB_timer_query")) {
186 // ES 3.0 (or ES 2.0 extended) has glDrawBuffers but not glDrawBuffer
210 fExtensions.has("GL_ARB_texture_storage") ||
211 fExtensions.has("GL_EXT_texture_storage")) {
216 } else if (glVer >= GR_GL_VER(3,0) || fExtensions.has("GL_EXT_texture_storage")) {
225 fExtensions.has("GL_ARB_texture_barrier") ||
226 fExtensions.has("GL_NV_texture_barrier")) {
231 } else if (fExtensions.has("GL_NV_texture_barrier"))
    [all...]
  /external/skia/src/gpu/gl/
GrGLInterface.cpp 165 fExtensions.has("GL_ARB_timer_query") ||
166 fExtensions.has("GL_EXT_timer_query")) {
172 if (glVer >= GR_GL_VER(3,3) || fExtensions.has("GL_ARB_timer_query")) {
186 // ES 3.0 (or ES 2.0 extended) has glDrawBuffers but not glDrawBuffer
210 fExtensions.has("GL_ARB_texture_storage") ||
211 fExtensions.has("GL_EXT_texture_storage")) {
216 } else if (glVer >= GR_GL_VER(3,0) || fExtensions.has("GL_EXT_texture_storage")) {
225 fExtensions.has("GL_ARB_texture_barrier") ||
226 fExtensions.has("GL_NV_texture_barrier")) {
231 } else if (fExtensions.has("GL_NV_texture_barrier"))
    [all...]
  /build/make/target/product/
product_launched_with_k.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_l.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_l_mr1.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_m.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_n.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_n_mr1.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_o.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_o_mr1.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
product_launched_with_p.mk 1 #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiJsonParser.java 54 if (j.has("BSSID")) {
57 if (j.has("SSID")) {
60 if (j.has("frequency")) {
63 if (j.has("level")) {
66 if (j.has("capabilities")) {
69 if (j.has("timestamp")) {
72 if (j.has("centerFreq0")) {
75 if (j.has("centerFreq1")) {
78 if (j.has("channelWidth")) {
81 if (j.has("distanceCm"))
    [all...]

Completed in 725 milliseconds

1 2 3 4 5 6 7 8 91011>>