Searched refs:found (Results 51 - 75 of 961) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestSyntaxErrors.java42 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "ae", false);
56 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "abe", false);
69 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "aaae", false);
86 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "((i))z", false);
H A DTestLeftRecursion.java18 String found = execParser("T.g", grammar, "TParser", "TLexer",
21 assertEquals(expecting, found);
33 String found = execParser("T.g", grammar, "TParser", "TLexer",
36 assertEquals(expecting, found);
376 String found = execRecognizer();
377 System.out.print(test+" -> "+found);
378 assertEquals(expecting, found);
H A DTestTreeWizard.java50 String found = t.toStringTree();
52 assertEquals(expecting, found);
58 String found = t.toStringTree();
60 assertEquals(expecting, found);
66 String found = t.toStringTree();
68 assertEquals(expecting, found);
74 String found = t.toStringTree();
76 assertEquals(expecting, found);
82 String found = t.toStringTree();
84 assertEquals(expecting, found);
[all...]
H A DTestTreeNodeStream.java52 String found = toNodesOnlyString(stream);
53 assertEquals(expecting, found);
56 found = toTokenTypeString(stream);
57 assertEquals(expecting, found);
69 String found = toNodesOnlyString(stream);
70 assertEquals(expecting, found);
73 found = toTokenTypeString(stream);
74 assertEquals(expecting, found);
92 String found = toNodesOnlyString(stream);
93 assertEquals(expecting, found);
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderIterator.java110 boolean found = false;
111 while (!found && (from < to)) {
113 found = filterHeader(from);
115 return found ? from : -1;
H A DBasicListHeaderIterator.java118 boolean found = false;
119 while (!found && (from < to)) {
121 found = filterHeader(from);
123 return found ? from : -1;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemChoose.java81 boolean found = false;
90 found = true;
111 found = true;
120 if (!found)
/external/cmockery/cmockery_0_1_2/src/example/
H A Dkey_value_test.c56 KeyValue * const found = find_item_by_value(key_values[i].value); local
57 assert_true(found);
58 assert_int_equal(found->key, key_values[i].key);
59 assert_string_equal(found->value, key_values[i].value);
/external/compiler-rt/lib/tsan/
H A Dcheck_memcpy.sh22 echo FAIL: found $NCALL memcpy/memset calls
29 echo FAIL: found $NCALL memcpy/memset calls
/external/e2fsprogs/lib/ext2fs/
H A Dlookup.c25 int found; member in struct:lookup_struct
44 ls->found++;
60 ls.found = 0;
66 return (ls.found) ? 0 : EXT2_ET_FILE_NOT_FOUND;
/external/google-breakpad/src/common/mac/
H A Dstring_utilities.cc60 size_t found = 0; local
63 for (; found <= idx; ++found) {
71 if (found == idx) {
/external/toybox/toys/pending/
H A Dgroupdel.c30 int i, len = 0, found = 0; local
35 if (!found && !strcmp(*toys.optargs, grp->gr_mem[i])) found++;
38 if (!found)
/external/freetype/src/base/
H A Dftdebug.c190 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/pdfium/third_party/freetype/src/base/
H A Dftdebug.c190 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/v8/test/intl/
H A Dassert.js94 function fail(expected, found) {
96 var message = 'Failure: expected <' + String(expected) + '>, found <' +
97 String(found) + '>.';
105 function assertEquals(expected, found) {
106 if (!deepEquals(expected, found)) {
107 fail(expected, found);
/external/skia/src/animator/
H A DSkDisplayList.cpp6 * 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 = NULL;
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
53 findGroup(SkADrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) argument
71 SearchForMatch(SkADrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) argument
100 SearchGroupForMatch(SkADrawable* draw, SkADrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) argument
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_cmaps/
H A Dfpdf_cmaps.cpp3 // found in the LICENSE file.
84 FX_WORD* found = (FX_WORD*)FXSYS_bsearch(&charcode, pMap->m_pDWordMap, pMap->m_DWordCount, 8, compareDWordRange); local
85 if (found) {
86 return found[3] + (FX_WORD)charcode - found[1];
89 FX_WORD* found = (FX_WORD*)FXSYS_bsearch(&charcode, pMap->m_pDWordMap, pMap->m_DWordCount, 6, compareDWordSingle); local
90 if (found) {
91 return found[2];
107 FX_WORD* found = (FX_WORD*)FXSYS_bsearch(&code, pMap->m_pWordMap, pMap->m_WordCount, 4, compareWord); local
108 if (found) {
112 FX_WORD* found = (FX_WORD*)FXSYS_bsearch(&code, pMap->m_pWordMap, pMap->m_WordCount, 6, compareWordRange); local
[all...]
/external/valgrind/memcheck/tests/
H A Ddw4.stderr.exp1 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
H A Dvarinfo3.stderr.exp1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
15 Uninitialised byte(s) found during client check request
22 Uninitialised byte(s) found during client check request
29 Uninitialised byte(s) found during client check request
36 Uninitialised byte(s) found during client check request
44 Uninitialised byte(s) found during client check request
51 Uninitialised byte(s) found during client check request
/external/linux-tools-perf/src/tools/perf/util/
H A Dcgroup.c16 int found = 0; local
37 found = 1;
43 if (found)
47 if (!found)
115 goto found;
122 found:
H A Dvdso.c23 int found = 0; local
31 while (!found && fgets(line, sizeof(line), maps)) {
43 found = 1;
47 return !found;
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt056lexer.py40 found = self.execParser(
45 self.failUnlessEqual("- 34, channel=0", found)
/external/clang/utils/
H A DClangDataFormat.py144 found = searchForType(child, searched)
145 if found:
146 return found
151 found = searchForType(val, searched)
152 if found:
153 return found if not found.TypeIsPointerType() else found.Dereference()
/external/libpcap/msdos/
H A Dcommon.dj26 @echo libgcc.a not found. Set \"$(GCCLIB)\" to \"/djgpp/lib/gcc-lib/djgpp/3.X\"
/external/v8/test/mjsunit/es6/
H A Dmirror-collections.js3 // found in the LICENSE file.
99 var found = 0;
103 found++;
107 found++;
110 assertEquals(2, found);
132 var found = 0;
135 found++;
138 found++;
141 assertEquals(2, found);

Completed in 811 milliseconds

1234567891011>>