HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 451 - 475 of 2528) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 123 public abstract TypeBearer get(int idx); method in class:LocalsArray
  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 37 public Attribute get(int n) { method in class:StdAttributeList
47 result += get(i).byteLength();
58 Attribute att = get(i);
74 Attribute att = get(at);
86 Attribute att = get(at);
  /dalvik/dx/src/com/android/dx/dex/code/
OutputCollector.java 115 finisher.add(suffix.get(i));
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdsSection.java 56 public IndexedItem get(Constant cst) { method in class:FieldIdsSection
63 IndexedItem result = fieldIds.get((CstFieldRef) cst);
105 FieldIdItem result = fieldIds.get(field);
129 FieldIdItem item = fieldIds.get(ref);
MethodIdsSection.java 56 public IndexedItem get(Constant cst) { method in class:MethodIdsSection
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
105 MethodIdItem result = methodIds.get(method);
129 MethodIdItem item = methodIds.get(ref);
  /dalvik/dx/src/com/android/dx/rop/code/
InsnList.java 43 public Insn get(int n) { method in class:InsnList
59 * {@code get(size() - 1)}.
64 return get(size() - 1);
76 get(i).accept(visitor);
96 if (!get(i).contentEquals(b.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/dx/src/com/android/dx/ssa/
BasicRegisterMapper.java 57 newReg = oldToNew.get(registerSpec.getReg());
81 return oldToNew.get(oldReg);
94 sb.append(oldToNew.get(i));
  /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...]
  /development/ndk/platforms/android-3/include/linux/
xattr.h 37 int (*get)(struct inode *inode, const char *name, void *buffer, member in struct:xattr_handler
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
HostConnection.cpp 46 HostConnection *HostConnection::get() function in class:HostConnection
51 // Get thread info
102 ALOGD("HostConnection::get() New Host Connection established %p, tid %d\n", con, gettid());
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DoubleKeyMap.java 13 Map<Key2, Value> data2 = data.get(k1);
20 prev = data2.get(k2);
26 public Value get(Key1 k1, Key2 k2) { method in class:DoubleKeyMap
27 Map<Key2, Value> data2 = data.get(k1);
29 return data2.get(k2);
32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); } method in class:DoubleKeyMap
34 /** Get all values associated with primary key */
36 Map<Key2, Value> data2 = data.get(k1);
41 /** get all primary keys *
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookieHandlerTest.java 53 public Map get(URI uri, Map requestHeaders) throws IOException { method in class:CookieHandlerTest.MockCookieHandler
ResponseCacheTest.java 60 public CacheResponse get(URI arg0, String arg1, Map arg2) method in class:ResponseCacheTest.MockResponseCache
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 78 Scheme found = get(name);
114 public synchronized final Scheme get(String name) { method in class:SchemeRegistry
120 Scheme found = registeredSchemes.get(name);
128 * using {@link #getScheme(String) getScheme} or {@link #get get}.
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformationStore.java 25 List list = (ArrayList)table.get(sid);
45 public SignerInformation get( method in class:SignerInformationStore
104 List list = (ArrayList)table.get(selector);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
JcaContentVerifierProviderBuilder.java 83 public ContentVerifier get(AlgorithmIdentifier algorithm) method
128 public ContentVerifier get(AlgorithmIdentifier algorithm) method
  /external/chromium/base/memory/
singleton.h 61 // In logging and tracing you'll typically get stray calls at odd times, like
64 // get(), but then another thread initiates AtExit processing, the first thread
76 // WARNING: User has to deal with get() in the singleton class
143 // return Singleton<FooClass>::get();
149 // NOTE: The method accessing Singleton<T>::get() has to be named as GetInstance
177 // (a) Every call to get(), operator->() and operator*() incurs some overhead
179 // initialized. You may wish to cache the result of get(); it will not
191 // method and call Singleton::get() from within that.
198 static Type* get() { function in class:Singleton
213 // Object isn't created yet, maybe we will get to create it, let's try..
    [all...]
  /external/chromium/base/
openssl_util.h 26 T* get() const { return ptr_; } function in class:base::ScopedOpenSSL
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 67 resp, content = client.request(url, 'GET')
109 def get(self): member in class:MainHandler
110 """Handler for GET requests."""
  /external/chromium/crypto/
openssl_util.h 25 T* get() const { return ptr_; } function in class:crypto::ScopedOpenSSL
  /external/chromium/third_party/libjingle/source/talk/base/
linked_ptr.h 91 X* get() const throw() {return itsPtr;} function in class:talk_base::linked_ptr
  /external/chromium_org/base/mac/
scoped_ioplugininterface.h 51 InterfaceT get() const { function in class:base::mac::ScopedIOPluginInterface
scoped_nsobject.h 48 reset([that.get() retain]);
68 NST get() const { function in class:base::scoped_nsprotocol
104 return p1 == p2.get();
109 return p1 != p2.get();
  /external/chromium_org/base/memory/
singleton.h 16 // and ideally a leaf dependency. Singletons get problematic when they attempt
91 // In logging and tracing you'll typically get stray calls at odd times, like
94 // get(), but then another thread initiates AtExit processing, the first thread
106 // WARNING: User has to deal with get() in the singleton class
167 // return Singleton<FooClass>::get();
173 // NOTE: The method accessing Singleton<T>::get() has to be named as GetInstance
201 // (a) Every call to get(), operator->() and operator*() incurs some overhead
203 // initialized. You may wish to cache the result of get(); it will not
215 // method and call Singleton::get() from within that.
225 static Type* get() { function in class:Singleton
    [all...]

Completed in 277 milliseconds

<<11121314151617181920>>