/external/replicaisland/src/com/replica/replicaisland/ |
ObjectManager.java | 52 BaseObject object = mObjects.get(i); 106 public final BaseObject get(int index) { method in class:ObjectManager 107 return mObjects.get(index); 137 BaseObject currentObject = mObjects.get(i);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSparseArray.java | 72 public E get(int key) { method in class:ShadowSparseArray 73 return get(key, null); 81 public E get(int key, E valueIfKeyNotFound) { method in class:ShadowSparseArray
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
AndroidTranslatorTest.java | 39 AccountManager.get(context); 217 public static AccountManager get(Context context) { method in class:AndroidTranslatorTest.ShadowAccountManagerForTests
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
CursorAdapterTest.java | 98 assertThat(adapter.getView(i, null, null), sameInstance(views.get(i)));
|
/external/skia/gm/ |
gm_expectations.cpp | 210 Expectations IndividualImageExpectationsSource::get(const char *testName) const { function in class:skiagm::IndividualImageExpectationsSource 233 Expectations JsonExpectationsSource::get(const char *testName) const { function in class:skiagm::JsonExpectationsSource 264 if (NULL == dataRef.get()) { 270 const char *bytes = reinterpret_cast<const char *>(dataRef.get()->data()); 271 size_t size = dataRef.get()->size();
|
/external/skia/include/core/ |
SkRefCnt.h | 185 T* get() const { return fObj; } function in class:SkAutoTUnref 276 T* get() const { return fObj; } function in class:SkRefPtr
|
SkTemplates.h | 106 thread-compatible, and once you dereference it, you get the threadsafety 116 T* get() const { return fObj; } function in class:SkAutoTDelete 137 * pointer to NULL. Note that this differs from get(), which also returns 160 T* get() const { return fObj; } function in class:SkAutoTDestroy 173 T* get() const { return fArray; } function in class:SkAutoTDeleteArray 218 T* get() const { return fArray; } function in class:SkAutoTArray 293 T* get() const { return fArray; } function in class:SkAutoSTArray 339 T* get() const { return fPtr; } 359 * pointer to NULL. Note that this differs from get(), which also returns 409 T* get() const { return fPtr; function in class:SkAutoSTArray 441 void* get() { return fData; } function in class:SkAlignedSStorage 462 void* get() { return fStorage.get(); } function in class:SkAlignedSTStorage [all...] |
/external/skia/include/gpu/ |
GrEffect.h | 40 GrEffect* get() { return fEffect; } function in class:GrEffectRef 41 const GrEffect* get() const { return fEffect; } function in class:GrEffectRef 128 return this->isEqual(*other.get()); 358 static void* NAME##_RefLocation = (char*)g_##NAME##_Storage.get() + k_##NAME##_EffectRefOffset; \ 359 static GrEffect* NAME##_Effect SkNEW_PLACEMENT_ARGS(g_##NAME##_Storage.get(), EFFECT_CLASS, ARGS);\
|
/external/skia/src/views/ |
SkWidgets.cpp | 48 SkAnimator* get(SkinType); 80 SkAnimator* SkinSuite::get(SkinType st) function in class:SkinSuite 93 return gSkinSuite->get(st);
|
/external/smack/src/org/jivesoftware/smack/ |
SASLAuthentication.java | 173 answer.add(implementedMechanisms.get(mechanismsPreference));
212 * @param cbh the CallbackHandler used to get information from the user
231 Class<? extends SASLMechanism> mechanismClass = implementedMechanisms.get(selectedMechanism);
313 Class<? extends SASLMechanism> mechanismClass = implementedMechanisms.get(selectedMechanism);
|
/external/smack/src/org/jivesoftware/smack/util/ |
Cache.java | 43 * To get an object from cache, a hash lookup is performed to get a reference 82 * time the get method is called and the cache contains the requested 124 // Store the cache order list entry so that we can get back to it 138 public synchronized V get(Object key) { method in class:Cache 143 CacheObject<V> cacheObject = map.get(key); 369 // of the linked list until they are no longer too old. We get to avoid 391 // Get the next node. 418 // Get the key and invoke the remove method on it.
|
/external/v8/test/mjsunit/ |
elements-kind.js | 236 function get(foo) { return foo; } // Used to generate dynamic values. function 240 var a1 = [get(1), get(2), get(3)]; 243 var a2 = new Array(get(1), get(2), get(3)); 245 var b = [get(1), get(2), get("three")] [all...] |
/external/valgrind/main/drd/tests/ |
annotate_smart_pointer.cpp | 275 int get() const function in class:counter
|
/frameworks/base/core/java/android/accounts/ |
AccountManager.java | 78 * <li>Get an instance of AccountManager using {@link #get(Context)}. 204 * Authenticators using 'customTokens' option will also get the UID of the 294 public static AccountManager get(Context context) { method in class:AccountManager 302 * should get an auth token instead. 475 * Get the user-friendly label associated with an authenticator's auth token. [all...] |
/frameworks/base/core/java/android/animation/ |
Animator.java | 100 tmpListeners.get(i).onAnimationPause(this); 124 tmpListeners.get(i).onAnimationResume(this); 307 anim.mListeners.add(oldListeners.get(i)); 315 anim.mPauseListeners.add(oldListeners.get(i)); 329 * and PropertyValuesHolder objects to get the start values for its properties. 341 * and PropertyValuesHolder objects to get the start values for its properties.
|
/frameworks/base/core/java/android/content/ |
ContentValues.java | 236 * @param key the value to get 239 public Object get(String key) { method in class:ContentValues 240 return mValues.get(key); 246 * @param key the value to get 250 Object value = mValues.get(key); 257 * @param key the value to get 261 Object value = mValues.get(key); 282 * @param key the value to get 286 Object value = mValues.get(key); 307 * @param key the value to get [all...] |
/frameworks/base/core/java/android/hardware/camera2/ |
CameraCharacteristics.java | 50 public <T> T get(Key<T> key) { method in class:CameraCharacteristics 51 return mProperties.get(key); 104 * @param metadataClass The subclass of CameraMetadata that you want to get the keys for.
|
/frameworks/base/core/java/android/net/ |
LinkCapabilities.java | 230 public String get(int key) { method in class:LinkCapabilities 231 return mCapabilities.get(key);
|
/frameworks/base/core/java/android/net/nsd/ |
DnsSdTxtRecord.java | 107 * Get a value for a key 112 public String get(String key) { method in class:DnsSdTxtRecord
|
/frameworks/base/core/java/android/nfc/tech/ |
MifareClassic.java | 32 * <p>Acquire a {@link MifareClassic} object using {@link #get}. 126 * Get an instance of {@link MifareClassic} for the given tag. 135 public static MifareClassic get(Tag tag) { method in class:MifareClassic 148 NfcA a = NfcA.get(tag); // MIFARE Classic is always based on NFC a 613 * Get the current {@link #transceive} timeout in milliseconds.
|
Ndef.java | 35 * <p>Acquire a {@link Ndef} object using {@link #get}. 134 * Get an instance of {@link Ndef} for the given tag. 146 public static Ndef get(Tag tag) { method in class:Ndef 174 * Get the {@link NdefMessage} that was read from the tag at discovery time. 190 * Get the NDEF tag type. 221 * Get the maximum NDEF message size in bytes.
|
/frameworks/base/core/java/android/os/ |
AsyncTask.java | 296 postResultIfNotInvoked(get()); 310 final boolean wasTaskInvoked = mTaskInvoked.get(); 434 return mCancelled.get(); 482 public final Result get() throws InterruptedException, ExecutionException { method in class:AsyncTask 483 return mFuture.get(); 501 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:AsyncTask 503 return mFuture.get(timeout, unit);
|
UEventObserver.java | 149 public String get(String key) { method in class:UEventObserver.UEvent 150 return mMap.get(key); 153 public String get(String key, String defaultValue) { method in class:UEventObserver.UEvent 154 String result = mMap.get(key); 196 final String key = (String)mKeysAndObservers.get(i); 199 (UEventObserver)mKeysAndObservers.get(i + 1); 209 final UEventObserver observer = mTempObserversToSignal.get(i); 228 if (mKeysAndObservers.get(i + 1) == observer) {
|
WorkSource.java | 90 public int get(int index) { method in class:WorkSource
|
/frameworks/base/core/java/android/text/ |
AutoText.java | 84 * @param view to get the resources from 107 * The View is used to get the current Locale and Resources. 109 public static String get(CharSequence src, final int start, final int end, method in class:AutoText
|