HomeSort by relevance Sort by last modified time
    Searched refs:found (Results 101 - 125 of 4611) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestLeftRecursion.java 18 String found = execParser("T.g", grammar, "TParser", "TLexer", local
21 assertEquals(expecting, found);
33 String found = execParser("T.g", grammar, "TParser", "TLexer", local
36 assertEquals(expecting, found);
376 String found = execRecognizer(); local
377 System.out.print(test+" -> "+found);
378 assertEquals(expecting, found);
TestTreeWizard.java 50 String found = t.toStringTree(); local
52 assertEquals(expecting, found);
58 String found = t.toStringTree(); local
60 assertEquals(expecting, found);
66 String found = t.toStringTree(); local
68 assertEquals(expecting, found);
74 String found = t.toStringTree(); local
76 assertEquals(expecting, found);
82 String found = t.toStringTree(); local
84 assertEquals(expecting, found);
96 String found = t.toStringTree(); local
105 String found = m.toString(); local
114 String found = sortMapToString(m); local
123 String found = sortMapToString(m); local
137 String found = elements.toString(); local
152 String found = elements.toString(); local
167 String found = elements.toString(); local
182 String found = elements.toString(); local
199 String found = elements.toString(); local
216 String found = elements.toString(); local
231 String found = elements.toString(); local
248 String found = elements.toString(); local
265 String found = elements.toString(); local
397 String found = elements.toString(); local
    [all...]
TestTreeNodeStream.java 52 String found = toNodesOnlyString(stream); local
53 assertEquals(expecting, found);
56 found = toTokenTypeString(stream);
57 assertEquals(expecting, found);
69 String found = toNodesOnlyString(stream); local
70 assertEquals(expecting, found);
73 found = toTokenTypeString(stream);
74 assertEquals(expecting, found);
92 String found = toNodesOnlyString(stream); local
93 assertEquals(expecting, found);
109 String found = toNodesOnlyString(stream); local
124 String found = toNodesOnlyString(stream); local
138 String found = toNodesOnlyString(stream); local
356 String found = toTokenTypeString(stream); local
    [all...]
  /external/autotest/client/site_tests/hardware_ch7036/
hardware_ch7036.py 4 # found in the LICENSE file.
17 _LOG_CHECKLIST = ['Found device', 'CH7036 MCU ver']
65 found = dict((k, False) for k in _LOG_CHECKLIST)
69 for k in found:
72 found[k] = True
74 if found_cnt == len(found):
77 if found_cnt < len(found):
79 for k in found:
80 if not found[k]:
  /libcore/jsr166-tests/src/test/java/jsr166/
Collection8Test.java 53 final ArrayList found = new ArrayList(); local
54 Consumer<Object> spy = (o) -> { found.add(o); };
56 assertTrue(found.isEmpty());
60 assertEquals(Collections.singletonList(x), found); local
61 found.clear();
65 assertEquals(2, found.size());
66 assertTrue(found.contains(x));
67 assertTrue(found.contains(y));
68 found.clear();
72 assertTrue(found.isEmpty())
    [all...]
  /external/freetype/src/base/
ftdebug.c 190 FT_Int level = -1, found = -1; local
206 found = n;
220 if ( found >= 0 && level >= 0 )
222 if ( found == trace_any )
229 ft_trace_levels[found] = level;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/wince/
ftdebug.c 193 int level = -1, found = -1; local
209 found = n;
223 if ( found >= 0 && level >= 0 )
225 if ( found == trace_any )
232 ft_trace_levels[found] = level;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/
ftdebug.c 175 int level = -1, found = -1; local
191 found = n;
205 if ( found >= 0 && level >= 0 )
207 if ( found == trace_any )
214 ft_trace_levels[found] = level;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftdebug.c 190 FT_Int level = -1, found = -1; local
206 found = n;
220 if ( found >= 0 && level >= 0 )
222 if ( found == trace_any )
229 ft_trace_levels[found] = level;
  /external/opencv3/samples/python2/
peopledetect.py 46 found, w = hog.detectMultiScale(img, winStride=(8,8), padding=(32,32), scale=1.05)
48 for ri, r in enumerate(found):
49 for qi, q in enumerate(found):
54 draw_detections(img, found)
56 print '%d (%d) found' % (len(found_filtered), len(found))
  /external/pdfium/third_party/freetype/src/base/
ftdebug.c 190 FT_Int level = -1, found = -1; local
206 found = n;
220 if ( found >= 0 && level >= 0 )
222 if ( found == trace_any )
229 ft_trace_levels[found] = level;
  /system/core/base/
strings.cpp 38 size_t found; local
40 found = s.find_first_of(delimiters, base);
41 result.push_back(s.substr(base, found - base));
42 base = found + 1;
43 } while (found != s.npos);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/swf/
test_layer1.py 150 found = None
153 found = info
155 self.assertNotEqual(found, None, 'list_domains; test domain not found')
157 self.assertEqual(found['description'], self._domain_description,
159 self.assertEqual(found['status'], 'REGISTERED',
165 found = None
169 found = info
171 self.assertNotEqual(found, None, 'list_workflow_types; test type not found')
    [all...]
  /external/skia/src/animator/
SkDisplayList.cpp 6 * found in the LICENSE file.
54 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) {
58 return SearchForMatch(match, list, parent, found, grandList);
72 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) {
73 *found = nullptr;
82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
93 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
101 SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) {
106 int groupIndex = group->findGroup(match, list, parent, found, grandList);
108 *found = group
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/autoscale/
test_connection.py 105 found = False
109 found = True
111 assert found
119 found = False
123 found = True
125 assert found
132 found = False
136 found = True
138 assert found
156 found = Tru
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
fpdf_cmaps.cpp 3 // found in the LICENSE file.
85 FX_WORD* found = local
88 if (found) {
89 return found[3] + (FX_WORD)charcode - found[1];
92 FX_WORD* found = local
95 if (found) {
96 return found[2];
112 FX_WORD* found = (FX_WORD*)FXSYS_bsearch( local
114 if (found) {
118 FX_WORD* found = (FX_WORD*)FXSYS_bsearch( local
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-506443.js 3 // found in the LICENSE file.
8 if (found === expected) {
10 } else if ((expected !== expected) && (found !== found)) {
23 if (expected.length == found.length) {
29 if (found) {;
33 if (found) {;
  /external/valgrind/memcheck/tests/
dw4.stderr.exp 1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
14 Uninitialised byte(s) found during client check request
20 Uninitialised byte(s) found during client check request
25 Uninitialised byte(s) found during client check request
30 Unaddressable byte(s) found during client check request
35 Uninitialised byte(s) found during client check request
40 Uninitialised byte(s) found during client check request
45 Unaddressable byte(s) found during client check request
  /system/bt/bta/hl/
bta_hl_utils.c 94 ** Returns TRUE if found
101 BOOLEAN found=FALSE; local
113 found = TRUE;
121 found = TRUE;
125 if (!found)
127 APPL_TRACE_DEBUG("bta_hl_find_sdp_idx_using_ctrl_psm found=%d sdp_idx=%d ctrl_psm=0x%x ",
128 found, *p_sdp_idx, ctrl_psm );
131 return found;
291 ** Returns BOOLEAN TRUE - found
292 ** FALSE - not found
300 BOOLEAN found = TRUE; local
484 BOOLEAN found = FALSE; local
593 BOOLEAN found = FALSE; local
823 BOOLEAN found=FALSE; local
862 BOOLEAN found=FALSE; local
900 BOOLEAN found=FALSE; local
938 BOOLEAN found=FALSE; local
977 BOOLEAN found=FALSE; local
1013 BOOLEAN found=FALSE; local
1049 BOOLEAN found=FALSE; local
1089 BOOLEAN found=FALSE; local
1132 BOOLEAN found=FALSE; local
1175 BOOLEAN found=FALSE; local
1269 BOOLEAN found = FALSE; local
1327 BOOLEAN found=FALSE; local
1423 BOOLEAN found=FALSE; local
1469 BOOLEAN found=FALSE, result=TRUE; local
1620 BOOLEAN found = FALSE; local
1748 BOOLEAN found =FALSE; local
1998 BOOLEAN found=FALSE; local
2037 BOOLEAN found=FALSE; local
2111 BOOLEAN found=FALSE; local
2484 BOOLEAN found=TRUE; local
    [all...]
  /external/minijail/
util.c 3 * found in the LICENSE file.
145 /* If the string is NULL or empty, there are no tokens to be found. */
159 char *found; local
161 found = strstr(*stringp, delim);
163 if (!found) {
165 * The delimiter was not found, so the full string
173 if (found != *stringp) {
175 *found = '\0';
177 *stringp = found + strlen(delim);
182 * The delimiter was found at the start of the string
    [all...]
  /external/webrtc/talk/build/
merge_ios_libs 74 found = False
76 while components and not found:
80 found = True
84 if not found:
90 found = True
92 assert found
  /external/webrtc/webrtc/tools/rtcbot/test/
ping_pong.js 4 // that can be found in the LICENSE file in the root of the source
5 // tree. An additional intellectual property rights grant can be found
7 // be found in the AUTHORS file in the root of the source tree.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-xtensa/
coalesce.exp 85 set found 0
90 set found 1
94 if $found {
lcall.exp 88 verbose -log "Found an l32r in the linked object"
99 set found 0
104 set found 1
108 if $found {
  /system/security/keystore/
auth_token_table.cpp 88 const hw_auth_token_t** found) {
99 return FindAuthPerOpAuthorization(key_sids, auth_type, op_handle, found);
101 return FindTimedAuthorization(key_sids, auth_type, key_info, found);
106 keymaster_operation_handle_t op_handle, const hw_auth_token_t** found) {
119 *found = matching_op->token();
126 const hw_auth_token_t** found) {
142 *found = newest_match->token();
168 auto found = find_if(entries_, [&](Entry& e) { return e.token()->challenge == op_handle; }); local
169 if (found == entries_.end())
172 assert(!IsSupersededBySomeEntry(*found));
    [all...]

Completed in 1001 milliseconds

1 2 3 45 6 7 8 91011>>