Searched refs:found (Results 1 - 25 of 1709) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestSets.java49 String found = execParser("P.g", grammar, "PParser", "PLexer",
51 assertEquals("34\n", found);
58 String found = execParser("T.g", grammar, "TParser", "TLexer",
60 assertEquals("x\n", found);
67 String found = execParser("T.g", grammar, "TParser", "TLexer",
69 assertEquals("z\n", found);
76 String found = execParser("T.g", grammar, "TParser", "TLexer",
78 assertEquals("zz\n", found);
85 String found = execParser("T.g", grammar, "TParser", "TLexer",
87 assertEquals("z\n", found);
[all...]
H A DTestHeteroAST.java50 String found = execParser("T.g", grammar, "TParser", "TLexer",
52 assertEquals("a<V>\n", found);
62 String found = execParser("T.g", grammar, "TParser", "TLexer",
64 assertEquals("a\n", found);
79 String found = execParser("T.g", grammar, "TParser", "TLexer",
81 assertEquals("a<V>\n", found);
96 String found = execParser("T.g", grammar, "TParser", "TLexer",
98 assertEquals("a<V>\n", found);
114 String found = execParser("T.g", grammar, "TParser", "TLexer",
116 assertEquals("a<V>\n", found);
[all...]
H A DTestSemanticPredicateEvaluation.java39 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
41 assertEquals("alt2\n", found);
51 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
53 assertEquals("alt2\n", found);
67 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
69 assertEquals("error: FailedPredicateException(a,{false}?)\n", found);
79 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
82 assertEquals("token 2\n", found);
92 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
95 assertEquals("token 1\n", found);
[all...]
H A DTestSyntacticPredicateEvaluation.java53 String found = execParser("T.g", grammar, "TParser", "TLexer",
60 assertEquals(expecting, found);
62 found = execParser("T.g", grammar, "TParser", "TLexer",
68 assertEquals(expecting, found);
70 found = execParser("T.g", grammar, "TParser", "TLexer",
79 assertEquals(expecting, found);
102 String found = execParser("T.g", grammar, "TParser", "TLexer",
109 assertEquals(expecting, found);
111 found = execParser("T.g", grammar, "TParser", "TLexer",
117 assertEquals(expecting, found);
[all...]
H A DTestJavaCodeGeneration.java46 boolean found =
50 assertEquals(expecting, found);
59 boolean found =
63 assertEquals(expecting, found);
73 String found = execParser("T.g", grammar, "TParser", "TLexer",
75 assertEquals("x\n", found);
85 String found = execParser("T.g", grammar, "TParser", "TLexer",
87 assertEquals("x\n", found);
97 String found = execParser("T.g", grammar, "TParser", "TLexer",
99 assertEquals("x\n", found);
[all...]
H A DTestAutoAST.java44 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
46 assertEquals("abc 34\n", found);
57 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
59 assertEquals("abc 34\n", found);
70 String found = execParser("foo.g", grammar, "fooParser", "fooLexer",
72 assertEquals("(abc 34)\n", found);
83 String found = execParser("T.g", grammar, "TParser", "TLexer",
85 assertEquals("(abc 34)\n", found);
96 String found = execParser("T.g", grammar, "TParser", "TLexer",
98 assertEquals("abc 4532\n", found);
[all...]
H A DTestTreeParsing.java48 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
50 assertEquals("abc, 34\n", found);
68 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
70 assertEquals("abc, 34\n", found);
91 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
93 assertEquals("^(a 1)b 2\n", found);
114 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
117 assertEquals("^(a 3)b 5\n", found);
137 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
139 assertEquals("alt 1\n", found);
[all...]
H A DTestTreeGrammarRewriteAST.java62 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
64 assertEquals("34 abc\n", found);
82 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
84 assertEquals("(34 abc)\n", found);
101 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
103 assertEquals("99\n", found);
121 String found = execTreeParser("T.g", grammar, "TParser", "TP.g",
123 assertEquals("(34 abc)\n", found);
125 found = execTreeParser("T.g", grammar, "TParser", "TP.g",
127 assertEquals("34\n", found);
[all...]
H A DTestLexer.java51 String found = execParser("P.g", grammar, "PParser", "PLexer",
53 assertEquals("\t\n", found);
65 String found = execParser("P.g", grammar, "PParser", "PLexer",
67 assertEquals("-34\n", found);
79 String found = execParser("P.g", grammar, "PParser", "PLexer",
81 assertEquals("- 34, channel=0\n", found);
92 String found = execParser("P.g", grammar, "PParser", "PLexer",
94 assertEquals("-34\n", found);
106 String found = execParser("P.g", grammar, "PParser", "PLexer",
108 assertEquals("-34\n", found);
[all...]
H A DTestASTConstruction.java45 String found = g.getRule("a").tree.toStringTree();
46 assertEquals(expecting, found);
55 String found = g.getRule("a").tree.toStringTree();
56 assertEquals(expecting, found);
66 String found = g.getRule("A").tree.toStringTree();
67 assertEquals(expecting, found);
77 String found = g.getRule("a").tree.toStringTree();
78 assertEquals(expecting, found);
88 String found = g.getRule("a").tree.toStringTree();
89 assertEquals(expecting, found);
[all...]
H A DTestRewriteAST.java49 String found = execParser("T.g", grammar, "TParser", "TLexer",
51 assertEquals("", found);
62 String found = execParser("T.g", grammar, "TParser", "TLexer",
64 assertEquals("abc\n", found);
75 String found = execParser("T.g", grammar, "TParser", "TLexer",
77 assertEquals("x\n", found);
88 String found = execParser("T.g", grammar, "TParser", "TLexer",
90 assertEquals("(x INT)\n", found);
102 String found = execParser("TT.g", grammar, "TTParser", "TTLexer",
104 assertEquals("ID\n", found);
[all...]
H A DTestRewriteTemplates.java46 String found = execParser("T.g", grammar, "TParser", "TLexer",
48 assertEquals("", found);
59 String found = execParser("T.g", grammar, "TParser", "TLexer",
61 assertEquals("abc\n", found);
72 String found = execParser("T.g", grammar, "TParser", "TLexer",
74 assertEquals("abc\n", found);
85 String found = execParser("T.g", grammar, "TParser", "TLexer",
87 assertEquals("x:abc, y:34;\n", found);
100 String found = execParser("T.g", grammar, "TParser", "TLexer",
102 assertEquals("abc 34\n", found);
[all...]
/external/chromium_org/tools/gyp/test/mac/sdkroot/
H A Dtest_shorthand.sh4 # found in the LICENSE file.
8 found=false
11 found=true
15 if ! $found ; then
/external/qemu/distrib/sdl-1.2.15/test/
H A Dautogen.sh5 found=false
7 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
9 if test x$found = xfalse; then
/external/chromium_org/content/browser/service_worker/
H A Dembedded_worker_registry.cc3 // found in the LICENSE file.
55 WorkerInstanceMap::iterator found = worker_map_.find(message.routing_id()); local
56 DCHECK(found != worker_map_.end());
57 if (found == worker_map_.end())
59 return found->second->OnMessageReceived(message);
73 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
74 DCHECK(found != worker_map_.end());
75 DCHECK_EQ(found->second->process_id(), process_id);
76 if (found == worker_map_.end() || found
85 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
95 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
107 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
118 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
129 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
143 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
158 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
174 std::map<int, std::set<int> >::iterator found = local
191 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-complex-hebrew.cc71 bool found = c->unicode->compose (a, b, ab); local
73 if (!found && !c->plan->has_mark)
81 found = true;
87 found = true;
90 found = true;
96 found = true;
102 found = true;
108 found = (*ab != 0);
111 found = true;
114 found
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-hebrew.cc71 bool found = c->unicode->compose (a, b, ab); local
73 if (!found && !c->plan->has_mark)
81 found = true;
87 found = true;
90 found = true;
96 found = true;
102 found = true;
108 found = (*ab != 0);
111 found = true;
114 found
[all...]
/external/qemu/distrib/sdl-1.2.15/
H A Dautogen.sh8 found=false
10 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
12 if test x$found = xfalse; then
/external/javassist/src/main/javassist/compiler/
H A DKeywordTable.java22 Object found = get(name);
23 if (found == null)
26 return ((Integer)found).intValue();
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt057autoAST.py123 found = self.execParser(grammar, "a", "abc 34")
124 self.assertEquals("abc 34", found);
138 found = self.execParser(grammar,"a", "abc 34")
139 self.assertEquals("abc 34", found)
153 found = self.execParser(grammar, "a", "abc 34")
154 self.assertEquals("(abc 34)", found)
168 found = self.execParser(grammar, "a", "34 abc")
169 self.assertEquals("(abc 34)", found)
183 found = self.execParser(grammar, "a", "abc 34 dag 4532")
184 self.assertEquals("abc 4532", found)
[all...]
H A Dt058rewriteAST.py123 found = self.execParser(grammar, "a", "abc 34")
124 self.assertEquals("", found)
138 found = self.execParser(grammar, "a", "abc")
139 self.assertEquals("abc", found)
153 found = self.execParser(grammar, "a", "abc")
154 self.assertEquals("x", found)
168 found = self.execParser(grammar, "a", "abc")
169 self.assertEquals("(x INT)", found)
184 found = self.execParser(grammar, "a", "abc")
185 self.assertEquals("ID", found)
[all...]
H A Dt051treeRewriteAST.py76 found = self.execTreeParser(
82 self.failUnlessEqual("34 abc", found)
111 found = self.execTreeParser(
117 self.failUnlessEqual("(34 abc)", found)
146 found = self.execTreeParser(
152 self.failUnlessEqual("(34 abc)", found)
155 found = self.execTreeParser(
161 self.failUnlessEqual("34", found)
190 found = self.execTreeParser(
196 self.failUnlessEqual("(abc abc)", found)
[all...]
H A Dt055templates.py45 found = self.execParser(
50 self.failUnlessEqual("id=abc, int=34", found)
85 found = self.execParser(
91 self.failUnlessEqual("[a+b]", found)
111 found = self.execParser(
116 self.failUnless(found is None)
140 found = self.execParser(
145 self.failUnlessEqual("abc,def,ghi", found)
164 found = self.execParser(
169 self.failUnlessEqual("hello", found)
[all...]
H A Dt053hetero.py120 found = self.execParser(
125 self.failUnlessEqual("a<V>", found)
141 found = self.execParser(
145 self.failUnlessEqual("a", found)
167 found = self.execParser(
172 self.failUnlessEqual("a<V>", found)
194 found = self.execParser(grammar, 'a', input="a")
195 self.assertEquals("a<V>", found)
218 found = self.execParser(
223 self.failUnlessEqual("a<V>", found)
[all...]
/external/skia/tests/
H A DHashCacheTest.cpp5 * found in the LICENSE file.
96 // look for all i's and assert we found the -i's
98 HashElement* found = cache.find(i); local
99 REPORTER_ASSERT(reporter, NULL != found && -i == found->fValue);
104 HashElement* found = cache.find(10); local
105 REPORTER_ASSERT(reporter, NULL == found);
119 HashElement* found = cache.find(0, findPos); local
120 REPORTER_ASSERT(reporter, NULL == found);
123 found
133 HashElement* found = cache.find(0, findNeg); local
149 HashElement* found = cache.find(0); local
[all...]

Completed in 6055 milliseconds

1234567891011>>