Home
last modified time | relevance | path

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

12345678910>>...174

/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/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/v8/test/mjsunit/es6/
Dset-minus-zero.js32 assertTrue(set.has(objectKey));
33 assertTrue(set.has(stringKey));
34 assertTrue(set.has(numberKey));
35 assertTrue(set.has(booleanKey));
36 assertTrue(set.has(undefinedKey));
37 assertTrue(set.has(nullKey));
38 assertTrue(set.has(nanKey));
39 assertTrue(set.has(zeroKey));
41 assertFalse(set.has({}));
42 assertTrue(set.has('keykeykey'));
[all …]
/external/valgrind/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 …]
/external/valgrind/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/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/v8/test/mjsunit/harmony/
Dproxies-hash.js58 assertTrue(s.has(p1));
59 assertTrue(s.has(p2));
60 assertFalse(s.has(p3));
64 assertTrue(s.has(p1));
65 assertTrue(s.has(p2));
66 assertFalse(s.has(p3));
69 assertTrue(s.has(p1));
70 assertFalse(s.has(p2));
71 assertFalse(s.has(p3));
95 assertTrue(m.has(p1));
[all …]
Dproxies-with.js79 has(target, k) { return k === 'a' } method
85 has(target, k) { return k === 'a' } method
127 has: function(t, k) { method
136 has: function(t, k) { method
144 has: function(t, k) { method
155 has: function(t, k) { method
188 has: function(r, k) { return k === "a"; }, method
193 has: function(r, k) { return k === "a"; }, method
249 has: function(t, k) { method
257 has: function(t, k) { method
[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/skia/src/gpu/gl/
DGrGLInterface.cpp27 if (!newInterface->fExtensions.has("GL_EXT_debug_marker")) { in GrGLInterfaceAddTestDebugMarker()
254 if (glVer >= GR_GL_VER(2,0) || fExtensions.has("GL_ARB_draw_buffers")) { in validate()
260 if (glVer >= GR_GL_VER(1,5) || fExtensions.has("GL_ARB_occlusion_query")) { in validate()
272 fExtensions.has("GL_ARB_timer_query") || in validate()
273 fExtensions.has("GL_EXT_timer_query")) { in validate()
279 if (glVer >= GR_GL_VER(3,3) || fExtensions.has("GL_ARB_timer_query")) { in validate()
289 fExtensions.has("GL_ARB_texture_compression")) { in validate()
311 fExtensions.has("GL_ARB_texture_storage") || in validate()
312 fExtensions.has("GL_EXT_texture_storage")) { in validate()
317 } else if (glVer >= GR_GL_VER(3,0) || fExtensions.has("GL_EXT_texture_storage")) { in validate()
[all …]
DGrGLAssembleInterface.cpp95 if (extensions.has("GL_KHR_blend_equation_advanced")) { in GrGLAssembleGLInterface()
97 } else if (extensions.has("GL_NV_blend_equation_advanced")) { in GrGLAssembleGLInterface()
102 extensions.has("GL_ARB_imaging")) { in GrGLAssembleGLInterface()
104 } else if (extensions.has("GL_EXT_blend_color")) { in GrGLAssembleGLInterface()
109 extensions.has("GL_ARB_imaging")) { in GrGLAssembleGLInterface()
111 } else if (extensions.has("GL_EXT_blend_subtract")) { in GrGLAssembleGLInterface()
142 if (glVer >= GR_GL_VER(3,1) || extensions.has("GL_ARB_draw_instanced") || in GrGLAssembleGLInterface()
143 extensions.has("GL_EXT_draw_instanced")) { in GrGLAssembleGLInterface()
167 if (glVer >= GR_GL_VER(3,3) || extensions.has("GL_ARB_timer_query")) { in GrGLAssembleGLInterface()
171 } else if (extensions.has("GL_EXT_timer_query")) { in GrGLAssembleGLInterface()
[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/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DTreeMultisetTest.java86 assertThat(elementSet.headSet("b")).has().exactly("a").inOrder(); in testElementSetSortedSetMethods()
87 assertThat(elementSet.tailSet("b")).has().exactly("b", "c").inOrder(); in testElementSetSortedSetMethods()
88 assertThat(elementSet.subSet("a", "c")).has().exactly("a", "b").inOrder(); in testElementSetSortedSetMethods()
101 assertThat(elementSet).has().exactly("a", "b", "c", "d", "e", "f").inOrder(); in testElementSetSubsetRemove()
103 assertThat(subset).has().exactly("b", "c", "d", "e").inOrder(); in testElementSetSubsetRemove()
106 assertThat(elementSet).has().exactly("a", "b", "d", "e", "f").inOrder(); in testElementSetSubsetRemove()
107 assertThat(subset).has().exactly("b", "d", "e").inOrder(); in testElementSetSubsetRemove()
111 assertThat(elementSet).has().exactly("a", "b", "d", "e", "f").inOrder(); in testElementSetSubsetRemove()
112 assertThat(subset).has().exactly("b", "d", "e").inOrder(); in testElementSetSubsetRemove()
126 assertThat(elementSet).has().exactly("a", "b", "c", "d", "e", "f").inOrder(); in testElementSetSubsetRemoveAll()
[all …]
DContiguousSetTest.java111 assertThat(set.headSet(2)).has().item(1); in testHeadSet()
112 assertThat(set.headSet(3)).has().exactly(1, 2).inOrder(); in testHeadSet()
113 assertThat(set.headSet(4)).has().exactly(1, 2, 3).inOrder(); in testHeadSet()
114 assertThat(set.headSet(Integer.MAX_VALUE)).has().exactly(1, 2, 3).inOrder(); in testHeadSet()
115 assertThat(set.headSet(1, true)).has().item(1); in testHeadSet()
116 assertThat(set.headSet(2, true)).has().exactly(1, 2).inOrder(); in testHeadSet()
117 assertThat(set.headSet(3, true)).has().exactly(1, 2, 3).inOrder(); in testHeadSet()
118 assertThat(set.headSet(4, true)).has().exactly(1, 2, 3).inOrder(); in testHeadSet()
119 assertThat(set.headSet(Integer.MAX_VALUE, true)).has().exactly(1, 2, 3).inOrder(); in testHeadSet()
128 assertThat(set.tailSet(Integer.MIN_VALUE)).has().exactly(1, 2, 3).inOrder(); in testTailSet()
[all …]
DImmutableTableTest.java187 assertThat(table.row('b').keySet()).has().exactly(1, 2).inOrder(); in testCopyOf()
189 .has().exactly(2, 1).inOrder(); in testCopyOf()
230 assertThat(copy.rowKeySet()).has().exactly('a', 'b').inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
231 assertThat(copy.columnKeySet()).has().exactly(1, 2).inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
232 assertThat(copy.values()).has().exactly("baz", "bar", "foo").inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
233 assertThat(copy.row('b').keySet()).has().exactly(1, 2).inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
251 assertThat(table.rowKeySet()).has().exactly('b', 'c', 'e', 'r', 'x').inOrder(); in testBuilder_orderRowsAndColumnsBy_sparse()
252 assertThat(table.columnKeySet()).has().exactly(0, 1, 2, 3, 4, 5, 7).inOrder(); in testBuilder_orderRowsAndColumnsBy_sparse()
253 assertThat(table.values()).has().exactly("cat", "axe", "baz", "tub", in testBuilder_orderRowsAndColumnsBy_sparse()
255 assertThat(table.row('c').keySet()).has().exactly(0, 3).inOrder(); in testBuilder_orderRowsAndColumnsBy_sparse()
[all …]
DLinkedHashMultimapTest.java91 assertThat(multimap.get("foo")).has().exactly(5, 3).inOrder(); in assertOrderingReadOnly()
92 assertThat(multimap.get("bar")).has().exactly(4, 1).inOrder(); in assertOrderingReadOnly()
93 assertThat(multimap.get("cow")).has().item(2); in assertOrderingReadOnly()
95 assertThat(multimap.keySet()).has().exactly("foo", "bar", "cow").inOrder(); in assertOrderingReadOnly()
96 assertThat(multimap.values()).has().exactly(5, 4, 3, 2, 1).inOrder(); in assertOrderingReadOnly()
110 assertThat(entry.getValue()).has().exactly(5, 3).inOrder(); in assertOrderingReadOnly()
113 assertThat(entry.getValue()).has().exactly(4, 1).inOrder(); in assertOrderingReadOnly()
116 assertThat(entry.getValue()).has().item(2); in assertOrderingReadOnly()
122 assertThat(multimap.replaceValues("foo", asList(6, 7))).has().exactly(5, 3).inOrder(); in testOrderingUpdates()
123 assertThat(multimap.keySet()).has().exactly("foo", "bar", "cow").inOrder(); in testOrderingUpdates()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DConstraintsTest.java71 assertThat(collection).has() in testConstrainedCollectionLegal()
73 assertThat(constrained).has() in testConstrainedCollectionLegal()
89 assertThat(constrained).has().exactly("foo", "bar").inOrder(); in testConstrainedCollectionIllegal()
90 assertThat(collection).has().exactly("foo", "bar").inOrder(); in testConstrainedCollectionIllegal()
103 assertThat(set).has().exactly("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog").inOrder(); in testConstrainedSetLegal()
104 assertThat(constrained).has() in testConstrainedSetLegal()
119 assertThat(constrained).has().exactly("foo", "bar").inOrder(); in testConstrainedSetIllegal()
120 assertThat(set).has().exactly("foo", "bar").inOrder(); in testConstrainedSetIllegal()
134 assertThat(sortedSet).has().exactly("bar", "cat", "dog", "foo", "qux", TEST_ELEMENT).inOrder(); in testConstrainedSortedSetLegal()
135 assertThat(constrained).has() in testConstrainedSortedSetLegal()
[all …]
DTreeRangeSetTest.java118 .has().exactlyAs(expected.headMap(key, inclusive).entrySet()).inOrder(); in testNavigationAgainstExpected()
120 .has().exactlyAs(expected.tailMap(key, inclusive).entrySet()).inOrder(); in testNavigationAgainstExpected()
122 .has().exactlyAs(expected.headMap(key, inclusive).descendingMap().entrySet()).inOrder(); in testNavigationAgainstExpected()
124 .has().exactlyAs(expected.tailMap(key, inclusive).descendingMap().entrySet()).inOrder(); in testNavigationAgainstExpected()
155 .has().exactlyAs(complement.asRanges()).inOrder(); in testAllSingleRangesComplementAgainstRemove()
292 assertThat(rangeSet.asRanges()).has().item(Range.closedOpen(1, 6)); in testMergesConnectedWithOverlap()
294 .has().exactly(Range.lessThan(1), Range.atLeast(6)).inOrder(); in testMergesConnectedWithOverlap()
302 assertThat(rangeSet.asRanges()).has().item(Range.closedOpen(1, 6)); in testMergesConnectedDisjoint()
304 .has().exactly(Range.lessThan(1), Range.atLeast(6)).inOrder(); in testMergesConnectedDisjoint()
312 assertThat(rangeSet.asRanges()).has().item(Range.closed(1, 6)); in testIgnoresSmallerSharingNoBound()
[all …]
DImmutableTableTest.java188 assertThat(table.row('b').keySet()).has().exactly(1, 2).inOrder(); in testCopyOf()
190 .has().exactly(2, 1).inOrder(); in testCopyOf()
231 assertThat(copy.rowKeySet()).has().exactly('a', 'b').inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
232 assertThat(copy.columnKeySet()).has().exactly(1, 2).inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
233 assertThat(copy.values()).has().exactly("baz", "bar", "foo").inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
234 assertThat(copy.row('b').keySet()).has().exactly(1, 2).inOrder(); in testBuilder_orderRowsAndColumnsBy_putAll()
252 assertThat(table.rowKeySet()).has().exactly('b', 'c', 'e', 'r', 'x').inOrder(); in testBuilder_orderRowsAndColumnsBy_sparse()
253 assertThat(table.columnKeySet()).has().exactly(0, 1, 2, 3, 4, 5, 7).inOrder(); in testBuilder_orderRowsAndColumnsBy_sparse()
254 assertThat(table.values()).has().exactly("cat", "axe", "baz", "tub", in testBuilder_orderRowsAndColumnsBy_sparse()
256 assertThat(table.row('c').keySet()).has().exactly(0, 3).inOrder(); in testBuilder_orderRowsAndColumnsBy_sparse()
[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 …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
DWifiNanManagerFacade.java66 if (j.has("int0")) { in getFilterData()
70 if (j.has("int1")) { in getFilterData()
74 if (j.has("data0")) { in getFilterData()
78 if (j.has("data1")) { in getFilterData()
92 if (j.has("Support5gBand")) { in getConfigRequest()
95 if (j.has("MasterPreference")) { in getConfigRequest()
98 if (j.has("ClusterLow")) { in getConfigRequest()
101 if (j.has("ClusterHigh")) { in getConfigRequest()
115 if (j.has("ServiceName")) { in getPublishData()
119 if (j.has("ServiceSpecificInfo")) { in getPublishData()
[all …]
DWifiRttManagerFacade.java172 if (j.has("deviceType")) { in parseRttParam()
175 if (j.has("requestType")) { in parseRttParam()
178 if (j.has("bssid")) { in parseRttParam()
181 if (j.has("frequency")) { in parseRttParam()
184 if (j.has("channelWidth")) { in parseRttParam()
187 if (j.has("centerFreq0")) { in parseRttParam()
190 if (j.has("centerFreq1")) { in parseRttParam()
193 if (j.has("numberBurst")) { in parseRttParam()
196 if (j.has("burstTimeout")) { in parseRttParam()
199 if (j.has("interval")) { in parseRttParam()
[all …]
/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

12345678910>>...174