HomeSort by relevance Sort by last modified time
    Searched defs:found (Results 26 - 50 of 1015) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/bcinfo/Wrap/
in_memory_wrapper_input.cpp 30 size_t found = 0; local
36 while (found < wanted) {
38 return found;
40 buffer[found++] = _buffer[_pos++];
42 return found;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DelayedOperations.java 74 QueuedOperation found = null; local
77 found = qo;
81 if (found != null) {
82 found.cancel();
  /dalvik/libdex/
DexDataMap.cpp 126 int found = dexDataMapGet(map, offset); local
128 if (found == type) {
132 if (found < 0) {
133 ALOGE("No data map entry found @ %#x; expected %x",
136 ALOGE("Unexpected data map entry @ %#x: expected %x, found %x",
137 offset, type, found);
  /dalvik/vm/
Intern.cpp 73 StringObject* found; local
85 * A match was found in the literal table, the easy case.
87 found = literal;
96 * A match was found in the interned table. Move the
100 found = insertString(gDvm.literalStrings, key, interned);
101 assert(found == interned);
107 found = insertString(gDvm.literalStrings, key, strObj);
108 assert(found == strObj);
115 found = lookupString(gDvm.literalStrings, key, strObj);
116 if (found == NULL)
161 StringObject* found = lookupString(gDvm.internedStrings, key, strObj); local
    [all...]
  /development/host/windows/usb/api/
adb_object_handle.cpp 113 AdbObjectHandleMap::iterator found = the_map.find(adb_handle()); local
114 ATLASSERT((found != the_map.end()) && (this == found->second));
116 if ((found != the_map.end()) && (this == found->second)) {
118 the_map.erase(found);
155 AdbObjectHandleMap::iterator found = the_map.find(adb_hndl); local
156 if (found != the_map.end()) {
157 ret = found->second;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestJavaCodeGeneration.java 46 boolean found =
50 assertEquals(expecting, found);
59 boolean found =
63 assertEquals(expecting, found);
73 String found = execParser("T.g", grammar, "TParser", "TLexer", local
75 assertEquals("x\n", found);
85 String found = execParser("T.g", grammar, "TParser", "TLexer", local
87 assertEquals("x\n", found);
97 String found = execParser("T.g", grammar, "TParser", "TLexer", local
99 assertEquals("x\n", found);
    [all...]
TestSyntaxErrors.java 42 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "ae", false); local
56 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "abe", false); local
69 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "aaae", false); local
86 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "((i))z", false); local
  /external/chromium/base/
process_util.cc 3 // found in the LICENSE file.
48 ProcessEntries found; local
50 found.push_back(*process_entry);
52 return found;
  /external/chromium/chrome/browser/autocomplete/
history_provider.cc 3 // found in the LICENSE file.
42 bool found = false; local
45 found = true;
58 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches";
  /external/chromium/chrome/browser/chromeos/
sms_observer.cc 3 // found in the LICENSE file.
41 bool found = false; local
45 found = true;
49 if (!found) {
  /external/chromium/chrome/browser/extensions/
extension_management_apitest.cc 3 // found in the LICENSE file.
17 Browser* found = NULL; local
22 found = *it;
25 return found;
  /external/chromium/chrome/browser/history/
history_types_unittest.cc 3 // found in the LICENSE file.
22 bool found = false; local
25 found = true;
30 EXPECT_TRUE(found) << "The URL had no index referring to it.";
  /external/chromium/net/socket_stream/
socket_stream_job_manager.cc 3 // 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/chromium/testing/gtest/src/
gtest-typed-test.cc 70 bool found = false; local
75 found = true;
80 if (found) {
84 << " can be found in this test case.\n";
  /external/chromium_org/base/process/
process_iterator.cc 3 // found in the LICENSE file.
25 ProcessEntries found; local
27 found.push_back(*process_entry);
29 return found;
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_app_registry_unittest.cc 3 // found in the LICENSE file.
41 bool found = false; local
50 found = true;
54 EXPECT_TRUE(found) << "Unable to find app with web_store_id "
56 return found;
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
copy_operation_unittest.cc 3 // found in the LICENSE file.
61 bool found = false; local
64 google_apis::test_util::CreateCopyResultCallback(&found, &cache_entry));
66 EXPECT_TRUE(found);
  /external/chromium_org/chrome/browser/chromeos/
sms_observer.cc 3 // found in the LICENSE file.
34 bool found = false; local
38 found = true;
42 if (!found) {
  /external/chromium_org/chrome/browser/extensions/api/discovery/
suggested_links_registry.cc 3 // found in the LICENSE file.
13 SuggestedLinkList::iterator found = list->begin(); local
14 for (; found != list->end(); ++found)
15 if (link_url.compare((*found)->link_url()) == 0) break;
16 return found;
20 SuggestedLinkList::iterator found = FindUrlInList(link_url, list); local
21 if (found != list->end())
22 list->erase(found);
37 SuggestedLinkList::iterator found = FindUrlInList(item->link_url(), &list) local
57 SuggestedLinksMap::const_iterator found = suggested_links_.find(extension_id); local
65 SuggestedLinksMap::iterator found = suggested_links_.find(extension_id); local
75 SuggestedLinksMap::iterator found = suggested_links_.find(extension_id); local
83 SuggestedLinksMap::iterator found = suggested_links_.insert( local
    [all...]
  /external/chromium_org/chrome/browser/history/
history_types_unittest.cc 3 // found in the LICENSE file.
22 bool found = false; local
25 found = true;
30 EXPECT_TRUE(found) << "The URL had no index referring to it.";
  /external/chromium_org/chrome/browser/sync_file_system/
fake_remote_change_processor.cc 3 // found in the LICENSE file.
28 URLToFileChangesMap::iterator found = applied_changes_.find(url); local
29 if (found != applied_changes_.end()) {
30 DCHECK(!found->second.empty());
31 const FileChange& applied_change = found->second.back();
  /external/chromium_org/chrome/installer/mini_installer/
mini_string_test.cc 3 // found in the LICENSE file.
73 const wchar_t* found = str.findi(kTestStringFind); local
74 EXPECT_NE(static_cast<const wchar_t*>(NULL), found); local
75 std::wstring check(found, arraysize(kTestStringFind) - 1);
  /external/chromium_org/chrome/test/base/
test_chrome_web_ui_controller_factory.cc 3 // found in the LICENSE file.
54 FactoryOverridesMap::const_iterator found = local
56 return (found == factory_overrides_.end()) ? NULL : found->second;
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_impl.cc 3 // found in the LICENSE file.
46 bool found = false; local
50 found = true;
54 if (!found) {
85 return Status(kUnknownError, "web view not found");
  /external/chromium_org/content/child/
quota_message_filter.cc 3 // found in the LICENSE file.
37 RequestIdToThreadId::iterator found = request_id_map_.find(request_id); local
38 if (found != request_id_map_.end()) {
39 thread_id = found->second;
40 request_id_map_.erase(found);

Completed in 1398 milliseconds

12 3 4 5 6 7 8 91011>>