Searched refs:found (Results 1 - 25 of 871) 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/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/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/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DQualifierAlive.cpp4 // found in the LICENSE file.
11 TAliveTraverser(TQualifier q) : TIntermTraverser(true, false, false, true), found(false), qualifier(q)
15 bool wasFound() { return found; }
18 bool found; member in class:TAliveTraverser
49 found = true;
/external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
H A Dmappy_content_script.js9 // Return null if none is found.
11 var found;
21 found = node;
27 if (found) {
29 if (found.childNodes.length) {
30 for (var i = 0; i < found.childNodes.length; ++i) {
31 text += found.childNodes[i].textContent + " ";
34 text = found.textContent;
38 console.log("found: " + match[0]);
42 console.log("bad initial match: " + found
[all...]
/external/chromium/net/socket_stream/
H A Dsocket_stream_job_manager.cc3 // found in the LICENSE file.
35 FactoryMap::const_iterator found = factories_.find(scheme); local
36 if (found != factories_.end()) {
37 SocketStreamJob* job = found->second(url, delegate);
52 FactoryMap::iterator found = factories_.find(scheme); local
53 if (found != factories_.end()) {
54 old_factory = found->second;
60 } else if (found != factories_.end()) {
61 factories_.erase(found);
/external/libvpx/build/make/
H A Darmlink_adapter.sh6 ## that can be found in the LICENSE file in the root of the source
7 ## tree. An additional intellectual property rights grant can be found
9 ## be found in the AUTHORS file in the root of the source tree.
39 found=0
41 [ -f "$d/$f" ] && infiles="$infiles $d/$f" && found=1 && break
42 [ -f "$d/lib${f}.so" ] && infiles="$infiles $d/lib${f}.so" && found=1 && break
43 [ -f "$d/lib${f}.a" ] && infiles="$infiles $d/lib${f}.a" && found=1 && break
45 [ $found -eq 0 ] && infiles="$infiles $f"
/external/libsepol/tests/
H A Dtest-expander-users.c37 unsigned char *found; /* array of booleans of roles found */ local
38 int extra = 0; /* number of extra roles found */
42 printf("%s not found\n", user_name);
43 CU_FAIL("user not found");
46 found = calloc(num_roles, sizeof(unsigned char));
47 CU_ASSERT_FATAL(found != NULL);
54 found[j] += 1;
61 if (found[j] != 1) {
62 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[
[all...]

Completed in 774 milliseconds

1234567891011>>