Home
last modified time | relevance | path

Searched refs:has (Results 1 – 25 of 3385) sorted by relevance

12345678910>>...136

/external/e2fsprogs/tests/f_h_reindex/
Dexpect.15 Problem in HTREE directory inode 16001: block #1 has bad max hash
6 Problem in HTREE directory inode 16001: block #2 has bad min hash
7 Problem in HTREE directory inode 16001: block #2 has bad max hash
8 Problem in HTREE directory inode 16001: block #3 has bad min hash
9 Problem in HTREE directory inode 16001: block #3 has bad max hash
10 Problem in HTREE directory inode 16001: block #4 has bad min hash
11 Problem in HTREE directory inode 16001: block #4 has bad max hash
12 Problem in HTREE directory inode 16001: block #5 has bad min hash
13 Problem in HTREE directory inode 16001: block #5 has bad max hash
14 Problem in HTREE directory inode 16001: block #6 has bad min hash
[all …]
/external/chromium_org/v8/test/mjsunit/
Ddelete.js30 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(o, String.fromCharCode(i+1)), "still here (" + i + ")");
79 assertTrue(has(a, 0));
[all …]
/external/valgrind/main/none/tests/
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 mismatch: *ip=10 here=5
[all …]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DRecognizerSharedState.pm10 has 'following' => (
16 has '_fsp' => (
25 has 'error_recovery' => (
36 has 'last_error_index' => (
44 has 'failed' => (
51 has 'syntax_errors' => (
59 has 'backtracking' => (
70 has 'rule_memo' => (
82 has 'token' => (
90 has 'token_start_char_index' => (
[all …]
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' => (
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' => (
DCommonToken.pm14 has 'type' => (
20 has 'line' => (
26 has 'char_position_in_line' => (
33 has 'channel' => (
39 has 'input' => (
47 has 'text' => (
53 has 'index' => (
60 has 'start' => (
66 has 'stop' => (
DANTLRStringStream.pm12 has 'input' => (
18 has 'p' => (
24 has 'line' => (
30 has 'char_position_in_line' => (
36 has 'mark_depth' => (
42 has 'markers' => (
48 has 'last_marker' => (
54 has 'name' => (
/external/clang/test/SemaCXX/
Dcxx0x-nontrivial-union.cpp70 bool has; member
73 optional() : has(false) {} in optional()
75 optional(U &&...u) : has(true), value(forward<U>(u)...) {} in optional()
77 optional(const optional &o) : has(o.has) { in optional()
78 if (has) new (&value) T(o.value); in optional()
80 optional(optional &&o) : has(o.has) { in optional()
81 if (has) new (&value) T(move(o.value)); in optional()
85 if (has) { in operator =()
86 if (o.has) in operator =()
90 } else if (o.has) { in operator =()
[all …]
/external/valgrind/main/memcheck/tests/
Derr_disable4.stderr.exp4 WARNING: exiting thread has error reporting disabled.
7 WARNING: exiting thread has error reporting disabled.
10 WARNING: exiting thread has error reporting disabled.
13 WARNING: exiting thread has error reporting disabled.
16 WARNING: exiting thread has error reporting disabled.
19 WARNING: exiting thread has error reporting disabled.
22 WARNING: exiting thread has error reporting disabled.
25 WARNING: exiting thread has error reporting disabled.
28 WARNING: exiting thread has error reporting disabled.
31 WARNING: exiting thread has error reporting disabled.
[all …]
/external/chromium_org/v8/test/mjsunit/harmony/
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(p1));
[all …]
/external/clang/test/FixIt/
Dformat.m10 …printf("%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'in…
11 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
16 …NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'in…
17 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
18 NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has type 'int'}}
25 …printf("%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'char …
27 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c…
31 …NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'char …
33 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c…
34 …NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has type 'char *…
[all …]
/external/markdown/tests/misc/
Dtwo-spaces.txt1 This line has two spaces at the end
2 but this one has none
3 but this line has three
7 * This list item has two spaces.
8 * This has none.
9 This line has three.
10 This line has none.
13 This line has none.
15 * This line has none.
/external/antlr/antlr-3.4/runtime/CSharp2/
DAPI CHANGES.TXT13 Antlr.Runtime.BaseRecognizer.Failed() has been turned into a property
20 Antlr.Runtime.BaseRecognizer.Input has been removed.
22 Antlr.Runtime.Parser.Input - return type has been changed to ITokenStream
24 Antlr.Runtime.Lexer.Input - return type has been changed to ICharStream
26 Antlr.Runtime.TreeParser - return type has been changed to ITreeNodeStream
31 Antlr.Runtime.ParserRuleReturnScope.start has been made public
32 Antlr.Runtime.ParserRuleReturnScope.stop has been made public
37 Antlr.Runtime.Tree.RewriteRuleElementStream.HasNext has been turned into a property
38 Antlr.Runtime.Tree.RewriteRuleElementStream._Next() has been merged with NextTree()
39 Antlr.Runtime.Tree.RewriteRuleElementStream.Dup() has been added
[all …]
/external/chromium_org/third_party/skia/src/gpu/gl/
DGrGLInterface.cpp27 if (!newInterface->fExtensions.has("GL_EXT_debug_marker")) { in GrGLInterfaceAddTestDebugMarker()
237 if (glVer >= GR_GL_VER(2,0) || fExtensions.has("GL_ARB_draw_buffers")) { in validate()
243 if (glVer >= GR_GL_VER(1,5) || fExtensions.has("GL_ARB_occlusion_query")) { in validate()
255 fExtensions.has("GL_ARB_timer_query") || in validate()
256 fExtensions.has("GL_EXT_timer_query")) { in validate()
262 if (glVer >= GR_GL_VER(3,3) || fExtensions.has("GL_ARB_timer_query")) { in validate()
272 fExtensions.has("GL_ARB_texture_compression")) { in validate()
294 fExtensions.has("GL_ARB_texture_storage") || in validate()
295 fExtensions.has("GL_EXT_texture_storage")) { in validate()
300 } else if (glVer >= GR_GL_VER(3,0) || fExtensions.has("GL_EXT_texture_storage")) { in validate()
[all …]
DGrGLAssembleInterface.cpp76 extensions.has("GL_ARB_imaging") || in GrGLAssembleGLInterface()
77 extensions.has("GL_EXT_blend_color")) { in GrGLAssembleGLInterface()
119 if (glVer >= GR_GL_VER(3,3) || extensions.has("GL_ARB_timer_query")) { in GrGLAssembleGLInterface()
123 } else if (extensions.has("GL_EXT_timer_query")) { in GrGLAssembleGLInterface()
141 if (extensions.has("GL_EXT_direct_state_access")) { in GrGLAssembleGLInterface()
159 if (glVer >= GR_GL_VER(4,2) || extensions.has("GL_ARB_texture_storage")) { in GrGLAssembleGLInterface()
161 } else if (extensions.has("GL_EXT_texture_storage")) { in GrGLAssembleGLInterface()
191 if (glVer >= GR_GL_VER(3,0) || extensions.has("GL_ARB_vertex_array_object")) { in GrGLAssembleGLInterface()
198 if (glVer >= GR_GL_VER(3,0) || extensions.has("GL_ARB_map_buffer_range")) { in GrGLAssembleGLInterface()
205 if (glVer >= GR_GL_VER(3,0) || extensions.has("GL_ARB_framebuffer_object")) { in GrGLAssembleGLInterface()
[all …]
/external/clang/test/SemaObjC/
Dobjc-literal-comparison.m39 …if (obj == @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
40 …if (obj != @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
41 …if (@"" == obj) return; // expected-warning{{direct comparison of a string literal has undefined b…
42 …if (@"" == @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
44 …if (@[] == obj) return; // expected-warning{{direct comparison of an array literal has undefined b…
45 …if (@{} == obj) return; // expected-warning{{direct comparison of a dictionary literal has undefin…
46 …if (@12 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined …
47 …if (@1.0 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined…
48 …if (@__objc_yes == obj) return; // expected-warning{{direct comparison of a numeric literal has un…
49 …if (@(1+1) == obj) return; // expected-warning{{direct comparison of a boxed expression has undefi…
[all …]
Dobjc-literal-sig.m30 + (id)arrayWithObjects:(const int [])objects // expected-note 2 {{first parameter has unexpected ty…
36 …forKeys:(const int [])keys // expected-note 2 {{second parameter has unexpected type 'const int *'…
43 …(void)@__objc_yes; // expected-error{{literal construction method 'numberWithBool:' has incompatib…
44 …(void)@__objc_yes; // expected-error{{literal construction method 'numberWithBool:' has incompatib…
45 …id array = @[ @17 ]; // expected-error{{literal construction method 'arrayWithObjects:count:' has
46 …; // expected-error{{literal construction method 'arrayWithObjects:count:' has incompatible signat…
47 …-error{{literal construction method 'dictionaryWithObjects:forKeys:count:' has incompatible signat…
48 …-error{{literal construction method 'dictionaryWithObjects:forKeys:count:' has incompatible signat…
49 …id str = @("hello"); // expected-error{{literal construction method 'stringWithUTF8String:' has in…
50 …id str2 = @("hello"); // expected-error{{literal construction method 'stringWithUTF8String:' has i…
Dspecial-dep-unavail-warning.m6 - (void) unavailMeth __attribute__((unavailable)); // expected-note {{has been explicitly marked un…
7 - (void) depInA1 __attribute__((deprecated)); // expected-note {{'depInA1' has been explicitly mark…
9 - (void) depInA2 __attribute__((deprecated)); // expected-note {{'depInA2' has been explicitly mark…
10 - (void) unavailMeth2 __attribute__((unavailable)); // expected-note {{has been explicitly marked u…
12 …attribute__((deprecated)) __attribute__((unavailable)); // expected-note {{has been explicitly mar…
13 - (void)FuzzyMeth __attribute__((deprecated)); // expected-note {{'FuzzyMeth' has been explicitly m…
18 - (void) unavailMeth1 __attribute__((unavailable)); // expected-note {{has been explicitly marked u…
19 - (void) depInA __attribute__((deprecated)); // expected-note {{'depInA' has been explicitly marked…
23 …attribute__((deprecated)) __attribute__((unavailable)); // expected-note {{has been explicitly mar…
26 - (void)FuzzyMeth1 __attribute__((deprecated)); // expected-note {{'FuzzyMeth1' has been explicitly…
[all …]
/external/chromium_org/tools/json_schema_compiler/dart_test/
Dtags.idl7 // This dictionary has the property [inline_doc].
11 // This dictionary has the property [nodoc].
15 // This dictionary has the property [nocompile].
19 // This dictionary has no tags on the dictionary itself.
21 // This int has the property [inline_doc].
24 // This String has the property [nodoc].
27 // This double has the property [nocompile].
30 // This object has the property [instanceOf=fileEntry].
/external/e2fsprogs/tests/f_h_badroot/
Dexpect.14 HTREE directory inode 13345 has an invalid root node.
7 HTREE directory inode 26689 has an unsupported hash version (240)
10 HTREE directory inode 40033 has an invalid root node.
13 HTREE directory inode 53377 has a tree depth (8) which is too big
20 Problem in HTREE directory inode 80065: block #0 has an unordered hash table
23 Problem in HTREE directory inode 86737: block #0 has invalid limit (511)
26 Problem in HTREE directory inode 93409: block #0 has invalid count (234)
29 Problem in HTREE directory inode 73393: block #1 has bad min hash
30 Problem in HTREE directory inode 73393: block #2 has bad max hash
/external/skia/src/gpu/gl/
DGrGLInterface.cpp27 if (!newInterface->fExtensions.has("GL_EXT_debug_marker")) { in GrGLInterfaceAddTestDebugMarker()
265 if (glVer >= GR_GL_VER(2,0) || fExtensions.has("GL_ARB_draw_buffers")) { in validate()
271 if (glVer >= GR_GL_VER(1,5) || fExtensions.has("GL_ARB_occlusion_query")) { in validate()
283 fExtensions.has("GL_ARB_timer_query") || in validate()
284 fExtensions.has("GL_EXT_timer_query")) { in validate()
290 if (glVer >= GR_GL_VER(3,3) || fExtensions.has("GL_ARB_timer_query")) { in validate()
295 if (fExtensions.has("GL_EXT_direct_state_access")) { in validate()
301 if (fExtensions.has("GL_NV_path_rendering")) { in validate()
359 fExtensions.has("GL_ARB_texture_compression")) { in validate()
381 fExtensions.has("GL_ARB_texture_storage") || in validate()
[all …]
DGrGLAssembleInterface.cpp55 extensions.has("GL_ARB_imaging") || in GrGLAssembleGLInterface()
56 extensions.has("GL_EXT_blend_color")) { in GrGLAssembleGLInterface()
98 if (glVer >= GR_GL_VER(3,3) || extensions.has("GL_ARB_timer_query")) { in GrGLAssembleGLInterface()
102 } else if (extensions.has("GL_EXT_timer_query")) { in GrGLAssembleGLInterface()
120 if (extensions.has("GL_EXT_direct_state_access")) { in GrGLAssembleGLInterface()
138 if (glVer >= GR_GL_VER(4,2) || extensions.has("GL_ARB_texture_storage")) { in GrGLAssembleGLInterface()
140 } else if (extensions.has("GL_EXT_texture_storage")) { in GrGLAssembleGLInterface()
170 if (glVer >= GR_GL_VER(3,0) || extensions.has("GL_ARB_vertex_array_object")) { in GrGLAssembleGLInterface()
177 if (glVer >= GR_GL_VER(3,0) || extensions.has("GL_ARB_map_buffer_range")) { in GrGLAssembleGLInterface()
184 if (glVer >= GR_GL_VER(3,0) || extensions.has("GL_ARB_framebuffer_object")) { in GrGLAssembleGLInterface()
[all …]
/external/chromium_org/v8/test/mjsunit/es6/
Dcollections.js41 assertDoesNotThrow(function () { m.has(new Object) });
52 assertDoesNotThrow(function () { m.has(new Object) });
75 assertFalse(set.has(key));
77 assertTrue(set.has(key));
79 assertFalse(set.has(key));
81 assertFalse(set.has(key));
135 assertTrue(m.has(key));
136 assertFalse(m.has(new Object));
226 assertFalse(s.has(NaN));
227 assertFalse(s.has(NaN + 1));
[all …]
/external/chromium_org/third_party/sqlite/src/
Dconfig.h.in12 /* Define to 1 if the system has the type `int16_t'. */
15 /* Define to 1 if the system has the type `int32_t'. */
18 /* Define to 1 if the system has the type `int64_t'. */
21 /* Define to 1 if the system has the type `int8_t'. */
24 /* Define to 1 if the system has the type `intptr_t'. */
57 /* Define to 1 if the system has the type `uint16_t'. */
60 /* Define to 1 if the system has the type `uint32_t'. */
63 /* Define to 1 if the system has the type `uint64_t'. */
66 /* Define to 1 if the system has the type `uint8_t'. */
69 /* Define to 1 if the system has the type `uintptr_t'. */

12345678910>>...136