Searched refs:found (Results 76 - 100 of 1709) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
H A DgUnitTestResult.stg34 <num_of_failure> failures found:
41 <num_of_invalid> invalid inputs found:
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt052import.py157 found = self.execParser(
163 self.failUnlessEqual("S.a", found)
181 # String found = execParser("M.g", master, "MParser", "MLexer",
183 # assertEquals("S.ab\n", found);
213 found = self.execParser(
219 self.failUnlessEqual("S.a1000", found)
250 found = self.execParser(
256 self.failUnlessEqual("foo", found)
299 found = self.execParser(
305 self.failUnlessEqual("S.a", found)
[all...]
/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/chromium_org/chrome/test/chromedriver/
H A Dkeycode_text_conversion_x.cc3 // found in the LICENSE file.
136 // no X equivalent was found.
140 const KeyCodeAndXKeyCode* found = std::lower_bound( local
143 if (found >= kKeyCodeToXKeyCode + arraysize(kKeyCodeToXKeyCode) ||
144 found->key_code != key_code)
146 return found->x_key_code;
154 bool found = false; local
161 found = keysym == XK_Alt_L || keysym == XK_Alt_R;
163 found = keysym == XK_Meta_L || keysym == XK_Meta_R;
165 found
237 bool found = false; local
[all...]
/external/chromium_org/content/child/
H A Dquota_message_filter.cc3 // found in the LICENSE file.
52 RequestIdToThreadId::iterator found = request_id_map_.find(request_id); local
53 if (found != request_id_map_.end()) {
54 thread_id = found->second;
55 request_id_map_.erase(found);
/external/chromium_org/net/base/
H A Dlinked_hash_map.h3 // found in the LICENSE file.
118 typename MapType::iterator found = map_.find(key); local
119 if (found == map_.end()) return 0;
121 list_.erase(found->second);
122 map_.erase(found);
131 typename MapType::iterator found = map_.find(position->first); local
132 CHECK(found->second == position)
136 map_.erase(found);
147 // value found, or to end() if the value was not found
150 typename MapType::iterator found = map_.find(key); local
158 typename MapType::const_iterator found = map_.find(key); local
198 typename MapType::iterator found = map_.find(pair.first); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DRefCountedSupplement.h64 Supplement<T>* found = static_cast<Supplement<T>*>(host.requireSupplement(key)); local
65 if (!found)
67 ASSERT_WITH_SECURITY_IMPLICATION(found->isRefCountedWrapper());
68 return static_cast<Wrapper*>(found)->wrapped();
/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/openssl/crypto/bn/
H A Dbn_depr.c74 int found = 0; local
88 found = 1;
90 if (!found && (ret == NULL) && (rnd != NULL)) BN_free(rnd);
91 return(found ? rnd : NULL);
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dchrome_finder_unittest.cc3 // found in the LICENSE file.
24 void AssertFound(const base::FilePath& found, argument
34 ASSERT_EQ(found, exe);
40 base::FilePath found = local
43 existing_paths.push_back(found);
45 rel_paths.push_back(found.BaseName());
47 locations.push_back(found.DirName());
49 AssertFound(found, existing_paths, rel_paths, locations));
87 base::FilePath found = local
91 rel_paths.push_back(found
[all...]
/external/chromium_org/ppapi/cpp/
H A Dmodule.cc3 // found in the LICENSE file.
81 Module::InstanceMap::iterator found =
83 if (found == module_singleton->current_instances_.end())
87 Instance* obj = found->second;
88 module_singleton->current_instances_.erase(found);
171 InterfaceMap::const_iterator found = additional_interfaces_.find(
173 if (found != additional_interfaces_.end())
174 return found->second;
184 InstanceMap::iterator found = current_instances_.find(instance); local
185 if (found
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DComposedTreeWalker.cpp61 if (Node* found = traverseNode(sibling, direction))
62 return found;
73 if (Node* found = traverseDistributedNodes(direction == TraversalDirectionForward ? insertionPoint->first() : insertionPoint->last(), insertionPoint, direction))
74 return found;
82 if (Node* found = traverseNode(next, direction))
83 return found;
99 if (Node* found = traverseDistributedNodes(direction == TraversalDirectionForward ? insertionPoint->nextTo(node) : insertionPoint->previousTo(node), insertionPoint, direction))
100 return found;
107 if (Node* found = traverseSiblings(direction == TraversalDirectionForward ? node->nextSibling() : node->previousSibling(), direction))
108 return found;
[all...]
/external/chromium_org/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/chromium_org/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/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/core/src/fxge/fx_freetype/fxft2.5.01/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/chromium_org/ppapi/shared_impl/
H A Dvar_tracker.cc3 // found in the LICENSE file.
69 VarMap::iterator found = live_vars_.find(var_id); local
70 if (found == live_vars_.end()) {
75 VarInfo& info = found->second;
81 TrackedObjectGettingOneRef(found);
102 VarMap::iterator found = live_vars_.find(var_id); local
103 if (found == live_vars_.end())
106 VarInfo& info = found->second;
121 ObjectGettingZeroRef(found);
126 live_vars_.erase(found);
162 VarMap::iterator found = GetLiveVar(plugin_object); local
172 VarMap::iterator found = GetLiveVar(plugin_object); local
[all...]

Completed in 3652 milliseconds

1234567891011>>