/external/javassist/src/main/javassist/compiler/ |
KeywordTable.java | 22 Object found = get(name); local 23 if (found == null) 26 return ((Integer)found).intValue();
|
SymbolTable.java | 34 Declarator found = (Declarator)get(name); local 35 if (found == null && parent != null) 38 return found;
|
/packages/apps/Email/emailcommon/src/org/apache/commons/io/input/ |
CountingInputStream.java | 57 int found = super.read(b);
local 58 this.count += (found >= 0) ? found : 0;
59 return found;
74 int found = super.read(b, off, len);
local 75 this.count += (found >= 0) ? found : 0;
76 return found;
88 int found = super.read();
local 89 this.count += (found >= 0) ? 1 : 0; [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
QualifierAlive.cpp | 4 // 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/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/libvpx/build/make/ |
armlink_adapter.sh | 6 ## 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"
|
/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;
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
AsmAnalyzerTest.java | 89 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>(); local 92 zipClasses, found); 97 found.keySet().toArray()); 98 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray()); 104 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>(); local 107 found.clear(); 108 mAa.findGlobs("mock_android.view", zipClasses, found); 111 found.keySet().toArray()); 114 mAa.findGlobs("mock_android.*.*Group$*Layout*", zipClasses, found); 120 found.keySet().toArray()) 163 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>(); local [all...] |
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
dns_fail.js | 10 expectEq(null, dnsResolve("not-found")); 11 expectEq("", dnsResolveEx("not-found")); 13 expectEq(false, isResolvable("not-found")); 14 expectEq(false, isResolvableEx("not-found"));
|
/external/llvm/autoconf/m4/ |
func_isinf.m4 | 10 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>]) 17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>]) 24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf function is found in <cmath>]) 31 AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>])
|
func_isnan.m4 | 11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>]) 18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>]) 25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>])
|
/external/webkit/Source/WebCore/storage/ |
IDBTransactionCoordinator.cpp | 81 // Verifies internal consistiency while returning whether anything is found. 84 bool found = false; local 86 found = true; 88 ASSERT(!found); 89 found = true; 91 ASSERT(found == m_transactions.contains(transaction)); 92 return found;
|
/external/apache-http/src/org/apache/http/message/ |
BasicTokenIterator.java | 154 * If found, the token is stored in {@link #currentToken}. 158 * If not found, {@link #currentToken} is set to <code>null</code>. 163 * @return the position after the found token in the current header, or 186 return -1; // nothing found 228 * negative if no token start could be found 236 boolean found = false; 237 while (!found && (this.currentHeader != null)) { 240 while (!found && (from < to)) { 247 // found the start of a token 248 found = true [all...] |
BasicHeaderIterator.java | 105 boolean found = false; 106 while (!found && (from < to)) { 108 found = filterHeader(from); 110 return found ? from : -1;
|
BasicListHeaderIterator.java | 113 boolean found = false; 114 while (!found && (from < to)) { 116 found = filterHeader(from); 118 return found ? from : -1;
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/ |
ListSetSelectionTest.java | 71 boolean found = false; 76 found = true; 80 assertTrue("Selected item not visible in list", found); 102 boolean found = false; 108 found = true; 112 assertTrue("Selected item not visible in list", found); 137 boolean found = false; 142 found = true; 146 assertTrue("Selected item not visible in list", found);
|
/external/apache-http/src/org/apache/http/conn/scheme/ |
SchemeRegistry.java | 78 Scheme found = get(name); local 79 if (found == null) { 83 return found; 120 Scheme found = registeredSchemes.get(name); local 121 return found;
|
/dalvik/tests/063-process-manager/src/ |
Main.java | 27 boolean found = false; 35 found = true; 39 if (! found) {
|
/external/oprofile/libpp/ |
populate.cpp | 39 bool found = false; local 48 found = true; 52 return found; 79 bool found = false; local 95 found = true; 100 if (found == true && ip.error == image_ok) {
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemChoose.java | 81 boolean found = false; 90 found = true; 101 // System.err.println("Found COLLECTION/icuser/ictimezone/LITERAL"); 111 found = true; 120 if (!found)
|
/external/e2fsprogs/lib/ext2fs/ |
lookup.c | 25 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/ |
bn_depr.c | 74 int found = 0; local 88 found = 1; 90 if (!found && (ret == NULL) && (rnd != NULL)) BN_free(rnd); 91 return(found ? rnd : NULL);
|
/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();
|
/packages/apps/Email/src/com/android/email/provider/ |
AccountReconciler.java | 102 boolean found = false; 105 found = true; 109 if (!found) { 131 boolean found = false; 134 found = true; 138 found = true; 140 if (!found) {
|