/dalvik/dx/src/com/android/dx/cf/code/ |
ByteBlock.java | 75 if (successors.get(i) < 0) { 78 successors.get(i));
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
StdConstantPool.java | 71 return get(n); 75 public Constant get(int n) { method in class:StdConstantPool
|
/dalvik/vm/mterp/x86-atom/ |
OP_GOTO_32.S | 35 shl $$1, %edx # %edx is doubled to get the byte offset
|
/development/apps/Development/src/com/android/development/ |
ArrayAdapter.java | 47 return mList.get(position); 69 bindView(view, mList.get(position));
|
/development/samples/ApiDemos/src/com/example/android/apis/appwidget/ |
ExampleBroadcastReceiver.java | 51 ExampleAppWidgetProvider.updateAppWidget(context, gm, appWidgetIds.get(i), texts.get(i));
|
/development/scripts/app_engine_server/gae_shell/ |
shell.py | 173 def get(self): member in class:FrontPageHandler 175 session_key = self.request.get('session') 177 session = Session.get(session_key) 202 def get(self): member in class:StatementHandler 206 statement = self.request.get('statement') 234 session = Session.get(self.request.get('session')) 239 old_main = sys.modules.get('__main__')
|
/development/tools/apkcheck/src/com/android/apkcheck/ |
MethodInfo.java | 50 String humanType = mParameters.get(i); 85 String fixed = TypeUtils.ambiguousToBinaryName(mParameters.get(i),
|
/external/apache-http/src/org/apache/http/impl/client/ |
BasicCredentialsProvider.java | 95 // see if we get a direct hit 96 Credentials creds = map.get(authscope); 110 creds = map.get(bestMatch); 117 * Get the {@link Credentials credentials} for the given authentication scope.
|
/external/apache-http/src/org/apache/http/message/ |
BasicListHeaderIterator.java | 135 final String name = ((Header)this.allHeaders.get(index)).getName(); 165 return (Header) this.allHeaders.get(current);
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
PKIXCertPath.java | 71 X500Principal issuer = ((X509Certificate)certs.get(0)).getIssuerX500Principal(); 76 X509Certificate cert = (X509Certificate)certs.get(i); 80 issuer = ((X509Certificate)certs.get(i)).getIssuerX500Principal(); 100 X509Certificate cert = (X509Certificate)certs.get(i); 107 X509Certificate c = (X509Certificate)certs.get(j); 130 issuer = ((X509Certificate)retList.get(i)).getIssuerX500Principal(); 134 X509Certificate c = (X509Certificate)certs.get(j); 213 throw new CertificateException("BouncyCastle provider not found while trying to get a CertificateFactory:\n" + ex.toString()); 286 v.add(toASN1Object((X509Certificate)certificates.get(i))); 310 // pWrt.writeObject(certificates.get(i)) [all...] |
/external/chromium/base/crypto/ |
rsa_private_key_win.cc | 62 uint8* dest = blob.get(); 96 READ_ASSERT(dest == blob.get() + blob_size); 134 if (!CryptExportKey(key_, NULL, PRIVATEKEYBLOB, 0, blob.get(), 140 uint8* pos = blob.get(); 191 reinterpret_cast<CERT_PUBLIC_KEY_INFO*>(key_info.get()), &key_info_len)) { 199 reinterpret_cast<CERT_PUBLIC_KEY_INFO*>(key_info.get()), NULL, 208 reinterpret_cast<CERT_PUBLIC_KEY_INFO*>(key_info.get()), encoded.get(),
|
/external/chromium/base/ |
scoped_vector.h | 39 std::vector<T*>& get() { return v; } function in class:ScopedVector 40 const std::vector<T*>& get() const { return v; } function in class:ScopedVector
|
/external/chromium/sdch/open-vcdiff/src/ |
decodetable.cc | 41 if (!non_default_code_table_data_.get()) { 45 code_table_data_ = non_default_code_table_data_.get();
|
/external/chromium/third_party/icu/source/common/ |
servloc.h | 450 UObject* get(const UnicodeString& descriptor, UErrorCode& status) const { 451 return ICUService::get(descriptor, status); 454 UObject* get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const { 455 return ICUService::get(descriptor, actualReturn, status); 461 * get(Locale, int, Locale[]) with KIND_ANY for kind and null for 464 UObject* get(const Locale& locale, UErrorCode& status) const; 468 * get(Locale, int, Locale[]) with a null actualReturn. 470 UObject* get(const Locale& locale, int32_t kind, UErrorCode& status) const; 474 * get(Locale, String, Locale[]) with a null kind. 476 UObject* get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const [all...] |
/external/e2fsprogs/lib/ext2fs/ |
brel.h | 41 * Get a block relocation entry. 43 errcode_t (*get)(ext2_brel brel, blk_t old, member in struct:ext2_block_relocation_table 80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
|
/external/easymock/src/org/easymock/ |
Capture.java | 84 return values.get(values.size() - 1);
134 return String.valueOf(values.get(0));
|
/external/elfutils/tests/ |
run-get-aranges.sh | 22 ./get-aranges testfile testfile2 > get-aranges.out 24 cmp get-aranges.out - <<"EOF" 69 rm -f testfile testfile2 get-aranges.out
|
/external/emma/core/java12/com/vladium/jcd/cls/constant/ |
CONSTANT_NameAndType_info.java | 58 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value; 63 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_descriptor_index)).m_value;
|
/external/guava/src/com/google/common/collect/ |
AbstractListMultimap.java | 51 @Override public List<V> get(@Nullable K key) { method in class:AbstractListMultimap 52 return (List<V>) super.get(key);
|
AbstractSetMultimap.java | 49 @Override public Set<V> get(@Nullable K key) { method in class:AbstractSetMultimap 50 return (Set<V>) super.get(key);
|
AbstractSortedSetMultimap.java | 50 @Override public SortedSet<V> get(@Nullable K key) { method in class:AbstractSortedSetMultimap 51 return (SortedSet<V>) super.get(key);
|
ForwardingList.java | 55 public E get(int index) { method in class:ForwardingList 56 return delegate().get(index);
|
ForwardingMap.java | 68 public V get(Object key) { method in class:ForwardingMap 69 return delegate().get(key);
|
/external/icu4c/common/ |
servloc.h | 450 UObject* get(const UnicodeString& descriptor, UErrorCode& status) const { 451 return ICUService::get(descriptor, status); 454 UObject* get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const { 455 return ICUService::get(descriptor, actualReturn, status); 461 * get(Locale, int, Locale[]) with KIND_ANY for kind and null for 464 UObject* get(const Locale& locale, UErrorCode& status) const; 468 * get(Locale, int, Locale[]) with a null actualReturn. 470 UObject* get(const Locale& locale, int32_t kind, UErrorCode& status) const; 474 * get(Locale, String, Locale[]) with a null kind. 476 UObject* get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const [all...] |
/external/kernel-headers/original/linux/ |
klist.h | 24 void (*get)(struct klist_node *); member in struct:klist 29 extern void klist_init(struct klist * k, void (*get)(struct klist_node *),
|