/external/chromium_org/third_party/tcmalloc/chromium/src/ |
type_profiler_map.cc | 3 // found in the LICENSE file. 106 const ObjectInfo* found = g_type_profiler_map->Find(address); local 107 if (found == NULL) 109 return found->type;
|
/external/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/javassist/sample/evolve/ |
VersionManager.java | 38 Object found = versionNo.get(qualifiedClassname);
local 39 if (found == null)
42 version = ((Integer)found).intValue() + 1;
|
/external/libmtp/examples/ |
emptyfolders.c | 32 int found = 0; local 37 found = 1; 43 if(found == 0) { // no files claim this as a parent 100 printf("No folders found\n");
|
/external/llvm/utils/unittest/googletest/ |
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/mesa3d/src/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/mockito/src/org/mockito/internal/verification/ |
AtMost.java | 36 List<Invocation> found = finder.findInvocations(invocations, wanted); local 37 int foundSize = found.size(); 42 invocationMarker.markVerified(found, wanted);
|
/external/open-vcdiff/gtest/src/ |
gtest-typed-test.cc | 58 bool found = false; local 63 found = true; 68 if (found) { 72 << " can be found in this test case.\n";
|
/external/openssh/ |
groupaccess.c | 102 int i, found = 0; local 113 found = 1; 116 return found;
|
/external/protobuf/gtest/src/ |
gtest-typed-test.cc | 58 bool found = false; local 63 found = true; 68 if (found) { 72 << " can be found in this test case.\n";
|
/external/skia/src/animator/ |
SkDisplayList.h | 6 * found in the LICENSE file. 39 SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList); 53 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList); 55 SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList,
|
/external/valgrind/main/memcheck/tests/ |
varinfo1.stderr.exp | 1 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 26 Uninitialised byte(s) found during client check request 32 Uninitialised byte(s) found during client check request
|
/frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/ |
GridTouchSetSelectionTest.java | 71 boolean found = false; 76 found = true; 80 assertTrue("Selected item not visible in list", found);
|
/ndk/sources/third_party/googletest/googletest/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/third_party/WebKit/Source/devtools/front_end/cm/ |
comment.js | 9 var found = str.search(nonWS); 10 return found == -1 ? 0 : found; 98 var found = line.indexOf(lineString); 99 if (found > -1 && !/comment/.test(self.getTokenTypeAt(Pos(i, found + 1)))) found = -1; 100 if (found == -1 && (i != end || i == start) && nonWS.test(line)) break lineComment; 101 if (found > -1 && nonWS.test(line.slice(0, found))) break lineComment [all...] |
/external/chromium_org/webkit/browser/appcache/ |
appcache_unittest.cc | 3 // found in the LICENSE file. 220 bool found = false; local 227 found = cache->FindResponseForRequest(GURL("http://blah/miss"), 231 EXPECT_FALSE(found); 233 found = cache->FindResponseForRequest(kForeignExplicitEntryUrl, 237 EXPECT_TRUE(found); 244 found = cache->FindResponseForRequest(kManifestUrl, 248 EXPECT_TRUE(found); 255 found = cache->FindResponseForRequest(kInOnlineNamespaceUrl, 259 EXPECT_TRUE(found); 376 bool found = false; local 447 bool found = false; local 515 bool found = false; local [all...] |
/art/compiler/dex/ |
growable_array.h | 135 bool found = false; local 137 if (!found && elem_list_[i] == element) { 138 found = true; 140 if (found) { 144 // We should either have found the element, or it was the last (unscanned) element. 145 DCHECK(found || (element == elem_list_[num_used_ - 1]));
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testtree.py | 29 found = self.toNodesOnlyString(stream) 30 self.failUnlessEqual(expecting, found) 33 found = str(stream) 34 self.failUnlessEqual(expecting, found) 78 found = self.toNodesOnlyString(stream) 79 self.failUnlessEqual(expecting, found) 82 found = str(stream) 83 self.failUnlessEqual(expecting, found) 101 found = self.toNodesOnlyString(stream) 102 self.failUnlessEqual(expecting, found) [all...] |
/external/chromium_org/chrome/browser/local_discovery/ |
cloud_print_printer_list_unittest.cc | 3 // found in the LICENSE file. 141 const CloudPrintPrinterList::PrinterDetails* found = local 143 ASSERT_TRUE(found != NULL); 144 EXPECT_EQ("someID", found->id); 145 EXPECT_EQ("someDisplayName", found->display_name); 146 EXPECT_EQ("someDescription", found->description);
|
/external/chromium_org/content/browser/dom_storage/ |
dom_storage_host.cc | 3 // found in the LICENSE file. 48 AreaMap::iterator found = connections_.find(connection_id); local 49 if (found == connections_.end()) 51 found->second.namespace_->CloseStorageArea(found->second.area_.get()); 52 connections_.erase(found); 195 AreaMap::iterator found = connections_.find(connection_id); local 196 if (found == connections_.end()) 198 return found->second.area_.get(); 202 AreaMap::iterator found = connections_.find(connection_id) local [all...] |
/external/chromium_org/tools/find_runtime_symbols/ |
find_runtime_symbols.py | 4 # found in the LICENSE file. 125 found = symbols_in_process.find_procedure(address) 126 if found: 127 result[address] = found.name 138 found = symbols_in_process.find_sourcefile(address) 139 if found: 140 result[address] = found 154 found = symbols_in_process.find_typeinfo(address) 155 if found: 156 if found.startswith('typeinfo for ') [all...] |
/external/chromium_org/ppapi/cpp/ |
instance.cc | 3 // found in the LICENSE file. 158 InterfaceNameToObjectMap::iterator found = interface_name_to_objects_.find( local 160 if (found == interface_name_to_objects_.end()) { 168 PP_DCHECK(found->second == object); 171 interface_name_to_objects_.erase(found); 191 InterfaceNameToObjectMap::iterator found = 193 if (found == that->interface_name_to_objects_.end()) 195 return found->second;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidJarLoaderTest.java | 114 HashMap<String, ArrayList<IClassDescriptor>> found = local 119 assertTrue(found.containsKey("jar.example.Class1")); //$NON-NLS-1$ 120 assertTrue(found.containsKey("jar.example.Class2")); //$NON-NLS-1$ 121 assertEquals(2, found.size()); 126 found.get("jar.example.Class1").get(0).getFullClassName()); //$NON-NLS-1$ 127 assertEquals(1, found.get("jar.example.Class1").size()); //$NON-NLS-1$ 128 assertEquals(0, found.get("jar.example.Class2").size()); //$NON-NLS-1$
|
/external/libsepol/tests/ |
test-common.c | 32 int found; local 36 fprintf(stderr, "symbol %s not found in table %d\n", id, sym_type); 47 found = 0; 50 found++; 52 CU_ASSERT(found == 1); 188 unsigned int i, j, new, found = 0; local 197 printf("role %s can't be found! \n", id); 206 found++; 216 CU_ASSERT(found == len); 217 if (found != len 229 int j, new, found = 0; local [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestAttributes.java | 68 String found = actionST.render(); local 69 assertEquals(expecting, found); 89 String found = translator.translate(); assertEquals(expecting, found); local 109 String found = translator.translate(); assertEquals(expecting, found); local 279 String found = translator.translate(); assertEquals(expecting, found); local 317 String found = translator.translate(); assertEquals(expecting, found); local 358 String found = translator.translate(); assertEquals(expecting, found); local 385 String found = translator.translate(); local 412 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 433 String found = translator.translate(); local 463 String found = translator.translate(); local 491 String found = translator.translate(); local 517 String found = translator.translate(); local 540 String found = translator.translate(); local 577 String found = translator.translate(); local 600 String found = translator.translate(); local 628 String found = translator.translate(); local 656 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 700 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 726 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 749 String found = translator.translate(); assertEquals(expecting, found); local 777 String found = translator.translate(); local 805 String found = translator.translate(); local 885 String found = translator.translate(); assertEquals(expecting, found); local 909 String found = translator.translate(); local 943 String found = translator.translate(); local 997 String found = translator.translate(); local 1025 String found = translator.translate(); local 1053 String found = translator.translate(); local 1079 String found = translator.translate(); local 1109 String found = translator.translate(); local 1136 String found = translator.translate(); local 1162 String found = translator.translate(); assertEquals(expecting, found); local 1186 String found = translator.translate(); local 1239 String found = translator.translate(); local 1265 String found = translator.translate(); local 1295 String found = translator.translate(); local 1322 String found = translator.translate(); local 1344 String found = translator.translate(); assertEquals(expecting, found); local 1365 String found = translator.translate(); local 1387 String found = translator.translate(); local 1505 String found = translator.translate(); local 1532 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 1558 String found = translator.translate(); assertEquals(expecting, found); local 1580 String found = translator.translate(); assertEquals(expecting, found); local 1602 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 1626 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 1653 String found = translator.translate(); assertEquals(expecting, found); local 1686 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 1715 String found = translator.translate(); assertEquals(expecting, found); local 1746 String found = translator.translate(); assertEquals(expecting, found); local 1777 String found = translator.translate(); assertEquals(expecting, found); local 1870 String found = translator.translate(); local 1894 String found = translator.translate(); local 1918 String found = translator.translate(); local 1942 String found = translator.translate(); local 1968 String found = translator.translate(); local 1992 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 2016 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 2041 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 2065 String found = translator.translate(); local 2089 String found = translator.translate(); local 2127 String found = execParser("T.g", grammar, "TParser", "TLexer", local 2141 String found = execParser("T.g", grammar, "TParser", "TLexer", local 2202 String found = parameters.get(0).toString(); local 2240 String found = parameters.get(0).toString(); local 2325 String found = translator.translate(); local 2348 String found = translator.translate(); local 2371 String found = translator.translate(); local 2472 String found = translator.translate(); local 2495 String found = translator.translate(); local 2517 String found = translator.translate(); local 2611 String found = translator.translate(); local 2635 String found = translator.translate(); local 2704 String found = translator.translate(); local 2727 String found = translator.translate(); local 2750 String found = translator.translate(); local 2819 String found = actionST.render(); local 2906 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 2930 String found = translator.translate(); local 2976 String found = actionST.render(); local 3003 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 3036 String found = code.substring(code.indexOf("###")+3,code.indexOf("!!!")); local 3062 String found = translator.translate(); local [all...] |