/frameworks/base/core/java/android/os/ |
RegistrantList.java | 55 Registrant r = (Registrant) registrants.get(i); 70 get(int index) method in class:RegistrantList 72 return registrants.get(index); 79 Registrant r = (Registrant) registrants.get(i); 113 Registrant r = (Registrant) registrants.get(i);
|
/frameworks/base/opengl/tests/EGLTest/ |
egl_cache_test.cpp | 32 mCache = egl_cache_t::get(); 55 mCache->initialize(egl_display_t::get(EGL_DEFAULT_DISPLAY)); 66 mCache->initialize(egl_display_t::get(EGL_DEFAULT_DISPLAY)); 99 mCache->initialize(egl_display_t::get(EGL_DEFAULT_DISPLAY)); 102 mCache->initialize(egl_display_t::get(EGL_DEFAULT_DISPLAY));
|
/libcore/luni/src/main/java/libcore/net/http/ |
HttpConnectionPool.java | 63 public HttpConnection get(HttpConnection.Address address, int connectTimeout) method in class:HttpConnectionPool 67 List<HttpConnection> connections = connectionPool.get(address); 74 SocketTagger.get().tag(socket); 92 SocketTagger.get().untag(socket); 103 List<HttpConnection> connections = connectionPool.get(address);
|
/packages/apps/Gallery/src/com/android/camera/gallery/ |
LruCache.java | 65 return entry == null ? null : entry.get(); 68 public synchronized V get(K key) { method in class:LruCache 70 V value = mLruMap.get(key); 72 Entry<K, V> entry = mWeakMap.get(key); 73 return entry == null ? null : entry.get();
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
PathMatcher.java | 61 return mVariables.get(index); 65 return Integer.parseInt(mVariables.get(index)); 69 return Long.parseLong(mVariables.get(index)); 80 Node node = mMap.get(segment); 91 return mMap.get(segment);
|
/sdk/sdkmanager/app/tests/com/android/sdkmanager/ |
AvdManagerTest.java | 68 assertEquals("HVGA", map.get("skin.name")); 69 assertEquals("platforms/v0_0/skins/HVGA", map.get("skin.path").replace(File.separatorChar, '/')); 70 assertEquals("platforms/v0_0/images/", map.get("image.sysdir.1").replace(File.separatorChar, '/')); 71 assertEquals(null, map.get("snapshot.present")); 99 assertEquals("true", map.get("snapshot.present"));
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
ArrayListTest.java | 85 al.get(counter) == objArray[counter]); 102 assertTrue("Failed to add Object", alist.get(50) == o); 104 alist.get(51) == objArray[50] 105 && (alist.get(52) == objArray[51])); 106 Object oldItem = alist.get(25); 108 assertNull("Should have returned null", alist.get(25)); 110 .get(26) == oldItem); 113 assertEquals("Failed to add Object", alist.get(0), o); 114 assertEquals(alist.get(1), objArray[0]); 115 assertEquals(alist.get(2), objArray[1]) [all...] |
/external/llvm/lib/Transforms/Utils/ |
BuildLibCalls.cpp | 36 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture); 37 AWI[1] = AttributeWithIndex::get(~0u, Attribute::ReadOnly | 41 Constant *StrLen = M->getOrInsertFunction("strlen", AttrListPtr::get(AWI, 2), 59 AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind); 63 Constant *StrChr = M->getOrInsertFunction("strchr", AttrListPtr::get(&AWI, 1), 66 ConstantInt::get(I32Ty, C), "strchr"); 77 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture); 78 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture); 79 AWI[2] = AttributeWithIndex::get(~0u, Attribute::ReadOnly | 83 Value *StrNCmp = M->getOrInsertFunction("strncmp", AttrListPtr::get(AWI, 3) [all...] |
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetworkVars.java | 38 * Interface to get the value of a var. 42 * Get the value of the var. 45 public String get(); method in interface:MonkeySourceNetworkVars.VarGetter 55 public String get() { method in class:MonkeySourceNetworkVars.StaticVarGetter 60 // Use a TreeMap to keep the keys sorted so they get displayed nicely in listvar 97 public String get() { 102 public String get() { 110 public String get() { 118 public String get() { 126 public String get() { [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_creator.cc | 71 if (!extension.get()) 109 if (!key_pair.get()) { 174 while ((bytes_read = fread(buffer.get(), 1, buffer_size, 175 zip_handle.get())) > 0) { 176 if (!signature_creator->Update(buffer.get(), bytes_read)) { 211 crx_handle.get()) != 1) { 215 crx_handle.get()) != public_key.size()) { 219 crx_handle.get()) != signature.size()) { 227 while ((bytes_read = fread(buffer.get(), 1, buffer_size, 228 zip_handle.get())) > 0) [all...] |
/external/chromium/net/http/ |
http_stream_factory_impl_request.cc | 33 if (bound_job_.get()) 50 DCHECK(!spdy_session_key_.get()); 89 DCHECK(!bound_job_.get()); 99 } else if (!bound_job_.get()) { 114 if (!bound_job_.get()) { 140 if (!bound_job_.get()) 153 if (!bound_job_.get()) 165 if (!bound_job_.get()) 178 if (!bound_job_.get()) 189 DCHECK(bound_job_.get()); [all...] |
/external/skia/src/pdf/ |
SkPDFFont.cpp | 291 for (; advanceInfo != NULL; advanceInfo = advanceInfo->fNext.get()) { 303 advanceArray.get()); 305 result->append(advanceArray.get()); 423 if (find(SkTypeface::UniqueID(fTypeface.get()), fFirstGlyphID, &index)) { 444 return fTypeface.get(); 493 SkASSERT(relatedFont->fFontInfo.get()); 495 fontDescriptor = relatedFont->fDescriptor.get(); 504 SkSafeUnref(fontInfo.get()); // SkRefPtr and Get both took a reference. 507 SkPDFFont* font = new SkPDFFont(fontInfo.get(), typeface, glyphID, false [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
RefPtr.h | 45 template<typename U> RefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { refIfNotNull(m_ptr); } 60 T* get() const { return m_ptr; } function in class:WTF::RefPtr 112 T* optr = o.get(); 122 T* optr = o.get(); 183 return a.get() == b.get(); 188 return a.get() == b; 193 return a == b.get(); 198 return a.get() != b.get(); [all...] |
/external/webkit/Source/WebCore/platform/graphics/freetype/ |
FontCacheFreeType.cpp | 73 fontData.m_fallbacks = FcFontSort(0, fontData.m_pattern.get(), FcTrue, 0, &fontConfigResult); 89 RefPtr<FcPattern> fallbackPattern = adoptRef(findBestFontGivenFallbacks(fontData, pattern.get())); 91 FontPlatformData alternateFontData(fallbackPattern.get(), font.fontDescription()); 96 RefPtr<FcPattern> resultPattern = adoptRef(FcFontMatch(0, pattern.get(), &fontConfigResult)); 99 FontPlatformData alternateFontData(resultPattern.get(), font.fontDescription()); 179 if (!FcPatternAddString(pattern.get(), FC_FAMILY, reinterpret_cast<const FcChar8*>(familyNameString.utf8().data()))) 183 if (!FcPatternAddInteger(pattern.get(), FC_SLANT, italic ? FC_SLANT_ITALIC : FC_SLANT_ROMAN)) 185 if (!FcPatternAddInteger(pattern.get(), FC_WEIGHT, fontWeightToFontconfigWeight(fontDescription.weight()))) 187 if (!FcPatternAddDouble(pattern.get(), FC_PIXEL_SIZE, fontDescription.computedPixelSize())) 195 FcConfigSubstitute(0, pattern.get(), FcMatchPattern) [all...] |
/external/webkit/Source/WebCore/platform/win/ |
COMPtr.h | 58 template<typename U> COMPtr(QueryTag, const COMPtr<U>& ptr) : m_ptr(copyQueryInterfaceRef(ptr.get())) { } 68 T* get() const { return m_ptr; } function in class:COMPtr 82 operator UnspecifiedBoolType() const { return m_ptr ? &COMPtr::get : 0; } 89 template<typename U> void query(const COMPtr<U>& ptr) { query(ptr.get()); } 159 T* optr = o.get(); 171 T* optr = o.get(); 194 return a.get() == b.get(); 199 return a.get() == b; 204 return a == b.get(); [all...] |
/libcore/luni/src/main/java/java/nio/ |
CharBuffer.java | 184 return get(position + index); 219 thisByte = get(thisPos); 220 otherByte = otherBuffer.get(otherPos); 273 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++); 286 public abstract char get(); method in class:CharBuffer 293 * {@code get(dst, 0, dst.length)}. 301 public CharBuffer get(char[] dst) { method in class:CharBuffer 302 return get(dst, 0, dst.length); 324 public CharBuffer get(char[] dst, int dstOffset, int charCount) method in class:CharBuffer 344 public abstract char get(int index); method in class:CharBuffer 638 result.append(get(i)); method [all...] |
/system/core/nexus/ |
WifiNetwork.h | 79 virtual int get(int idx, int *buffer) = 0; 91 virtual int get(int idx, char *buffer, size_t max) = 0; 100 int get(int idx, int *buffer); 108 int get(int idx, int *buffer); 116 int get(int idx, int *buffer); 124 int get(int idx, char *buffer, size_t max); 132 int get(int idx, char *buffer, size_t max); 140 int get(int idx, char *buffer, size_t max); 148 int get(int idx, char *buffer, size_t max); 156 int get(int idx, char *buffer, size_t max) [all...] |
/cts/tests/tests/view/src/android/view/animation/cts/ |
AnimationSetTest.java | 104 assertEquals(SHORT_CHILD_DURATION, children.get(0).getDuration()); 105 assertEquals(MEDIUM_CHILD_DURATION, children.get(1).getDuration()); 106 assertEquals(LONG_CHILD_DURATION, children.get(2).getDuration()); 113 assertEquals(ANIMATIONSET_DURATION, children.get(0).getDuration()); 114 assertEquals(ANIMATIONSET_DURATION, children.get(1).getDuration()); 115 assertEquals(ANIMATIONSET_DURATION, children.get(2).getDuration()); 146 children.get(0).setFillAfter(true); 147 children.get(1).setFillAfter(false); 154 assertTrue(children.get(i).getFillAfter()); 168 children.get(0).setFillBefore(true) [all...] |
/external/webkit/Source/WebCore/loader/archive/cf/ |
LegacyWebArchive.cpp | 74 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceDataKey, 0); 75 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceURLKey, 0); 76 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceMIMETypeKey, 0); 89 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceDataKey, cfData.get()); 94 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceURLKey, cfURL.get()); 104 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceFrameNameKey, cfFrameName.get()); 111 CFDictionarySetValue(propertyList.get(), LegacyWebArchiveResourceMIMETypeKey, cfMIMEType.get()) [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
ArrayListTest.java | 77 al.get(counter) == objArray[counter]); 94 assertTrue("Failed to add Object", alist.get(50) == o); 96 alist.get(51) == objArray[50] 97 && (alist.get(52) == objArray[51])); 98 Object oldItem = alist.get(25); 100 assertNull("Should have returned null", alist.get(25)); 102 .get(26) == oldItem); 126 assertTrue("Failed to add Object", alist.get(alist.size() - 1) == o); 128 assertNull("Failed to add null", alist.get(alist.size() - 1)); 142 alist.get(i) == objArray[i]) [all...] |
ConcurrentModTest.java | 46 // the sub.get(1) is 3.0 47 assertTrue(((Double) sub.get(1)).doubleValue() <= 3.0); 48 assertTrue(((Double) sub.get(1)).doubleValue() > 2.0); 53 // illegal call the subList's method get(int). 54 sub.get(1); 61 al.get(-1); 68 al.get(al.size()+1); 90 // the sub.get(1) is 3.0 91 assertTrue(((Double) sub.get(1)).doubleValue() <= 3.0); 92 assertTrue(((Double) sub.get(1)).doubleValue() > 2.0) [all...] |
/external/chromium/chrome/browser/history/ |
history_backend.cc | 118 // task will still run (if we ever get to processing the event before 140 if (history_backend_.get()) 219 if (db_.get()) { 224 if (thumbnail_db_.get()) { 228 if (archived_db_.get()) { 232 if (text_database_.get()) { 315 if (!db_.get()) 327 // If so, create or get the segment. 368 if (!db_.get()) 496 // Add the last visit to the tracker so we can get outgoing transitions [all...] |
/external/llvm/lib/Target/CellSPU/ |
SPUFrameLowering.cpp | 59 // Get the number of bytes to allocate from the FrameInfo 62 // Get the alignments provided by the target, and the maximum alignment 69 // Get the maximum call frame size of all the calls. 119 BuildMI(MBB, MBBI, dl, TII.get(SPU::PROLOG_LABEL)).addSym(FrameLabel); 124 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQDr32), SPU::R0).addImm(16) 128 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQDr32), SPU::R1).addImm(FrameSize) 131 BuildMI(MBB, MBBI, dl, TII.get(SPU::AIr32), SPU::R1).addReg(SPU::R1) 136 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQDr128), SPU::R2) 139 BuildMI(MBB, MBBI, dl, TII.get(SPU::ILr32), SPU::R2) 141 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQXr32), SPU::R1 [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
HeapSnapshot.js | 61 get hasStringName() 68 get isElement() 73 get isHidden() 78 get isInternal() 83 get isInvisible() 88 get isShortcut() 93 get name() 101 get node() 106 get nodeIndex() 111 get rawEdges( [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZInstrInfo.cpp | 37 /// isGVStub - Return true if the GV requires an extra load to get the 69 addFrameReference(BuildMI(MBB, MI, DL, get(Opc)), FrameIdx) 99 addFrameReference(BuildMI(MBB, MI, DL, get(Opc), DestReg), FrameIdx); 122 BuildMI(MBB, I, DL, get(Opc), DestReg) 332 BuildMI(&MBB, DL, get(SystemZ::JMP)).addMBB(TBB); 344 BuildMI(&MBB, DL, get(SystemZ::JMP)).addMBB(FBB); 355 case SystemZCC::O: return get(SystemZ::JO); 356 case SystemZCC::H: return get(SystemZ::JH); 357 case SystemZCC::NLE: return get(SystemZ::JNLE); 358 case SystemZCC::L: return get(SystemZ::JL) [all...] |