Searched defs:get (Results 101 - 125 of 142) sorted by relevance

123456

/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h96 return TargetLDBackendCtorFn(*get(), Triple);
108 const llvm::Target* get() const function in class:mcld::Target
/frameworks/native/include/utils/
H A DGenerationCache.h73 const V& get(const K& key);
150 const V& GenerationCache<K, V>::get(const K& key) { function in class:android::GenerationCache
202 if (mOldest.get()) {
218 if (!mYoungest.get()) {
229 if (entry->parent.get()) {
235 if (entry->child.get()) {
/frameworks/native/libs/utils/
H A DBlobCache.cpp133 size_t BlobCache::get(const void* key, size_t keySize, void* value, function in class:android::BlobCache
136 ALOGV("get: not searching because the key is too large: %d (limit %d)",
144 ALOGV("get: no cache entry found for key of size %d", keySize);
153 ALOGV("get: copying %d bytes to caller's buffer", valueBlobSize);
156 ALOGV("get: caller's buffer is too small for value: %d (needs %d)",
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp63 egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
68 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
84 egl_cache_t* egl_cache_t::get() { function in class:android::egl_cache_t
109 "but unable to get eglSetBlobCacheFuncsANDROID");
155 egl_cache_t* c = egl_cache_t::get();
185 return bc->get(key, keySize, value, valueSize);
H A Degl_display.cpp81 egl_cache_t::get()->terminate();
84 egl_display_t* egl_display_t::get(EGLDisplay dpy) { function in class:android::egl_display_t
121 // get our driver loader
192 // get the query-strings for this display for each implementation
240 egl_cache_t::get()->initialize(this);
298 // Reset the extension string since it will be regenerated if we get
412 // we don't want to get into a state where we can't wake up.
H A Degl_display.h87 static egl_display_t* get(EGLDisplay dpy);
224 const egl_display_t* get() const { return mDpy; } function in class:android::egl_display_ptr
225 egl_display_t* get() { return mDpy; } function in class:android::egl_display_ptr
239 return egl_display_ptr(egl_display_t::get(dpy));
245 return egl_display_t::get(dpy);
H A Degl_object.h60 static bool get(egl_display_t const* display, egl_object_t* object);
73 if (o && egl_object_t::get(display, native)) {
77 inline N* get() { function in class:android::egl_object_t::LocalRef
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DMatrix4f.java67 public float get(int x, int y) { method in class:Matrix4f
233 float rhs_ij = rhs.get(i,j);
234 ri0 += lhs.get(j,0) * rhs_ij;
235 ri1 += lhs.get(j,1) * rhs_ij;
236 ri2 += lhs.get(j,2) * rhs_ij;
237 ri3 += lhs.get(j,3) * rhs_ij;
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java131 final Result result = get();
150 final boolean wasTaskInvoked = mTaskInvoked.get();
320 public final Result get() throws InterruptedException, ExecutionException { method in class:ModernAsyncTask
321 return mFuture.get();
339 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:ModernAsyncTask
341 return mFuture.get(timeout, unit);
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java104 public synchronized Entry get(String key) { method in class:DiskBasedCache
105 CacheHeader entry = mEntries.get(key);
171 Entry entry = get(key);
287 CacheHeader oldEntry = mEntries.get(key);
297 CacheHeader entry = mEntries.get(key);
369 // don't bother deleting, it'll get pruned eventually
/frameworks/base/media/java/android/media/
H A DCamcorderProfile.java210 * @see #get(int, int)
212 public static CamcorderProfile get(int quality) { method in class:CamcorderProfile
218 return get(i, quality);
263 public static CamcorderProfile get(int cameraId, int quality) { method in class:CamcorderProfile
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java104 public Entry get(int i) { method in class:NotificationData
105 return mEntries.get(i);
121 if (mEntryCmp.compare(mEntries.get(i), entry) > 0) {
/frameworks/base/core/java/android/webkit/
H A DHTML5Audio.java92 // given WebView. Queries the WebView on the UI thread. Calls to get()
109 synchronized boolean get() { method in class:HTML5Audio.IsPrivateBrowsingEnabledGetter
223 url, mIsPrivateBrowsingEnabledGetter.get());
229 if (mIsPrivateBrowsingEnabledGetter.get()) {
/frameworks/base/voip/java/android/net/sip/
H A DSimpleSessionDescription.java292 return super.get("a=fmtp:" + format, ' ');
335 return super.get("a=rtpmap:" + type, ' ');
343 return super.get("a=fmtp:" + type, ' ');
402 String address = get("c", '=');
430 String encryption = get("k", '=');
442 String encryption = get("k", '=');
471 String value = get("b=" + type, ':');
501 return get("a=" + name, ':');
571 String line = mLines.get(i);
603 private String get(Strin method in class:SimpleSessionDescription.Fields
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java430 boolean get(Time iterator, int day) method in class:RecurrenceProcessor.DaySet
438 Log.i(TAG, "get called with iterator=" + iterator
719 * you'll get a DateException.
940 if (!days.get(iterator, dayIndex)) {
982 // sometimes events get generated (BYDAY, BYHOUR, etc.) that
1062 // Add freqAmount to freqField until we get another date that we want.
/frameworks/base/core/java/android/os/
H A DBundle.java281 public Object get(String key) { method in class:Bundle
283 return mMap.get(key);
356 if ((array.get(n).describeContents()
367 && (array.get(0) instanceof Parcelable)) {
369 Parcelable p = (Parcelable) array.get(n);
803 Object o = mMap.get(key);
836 Object o = mMap.get(key);
869 Object o = mMap.get(key);
902 Object o = mMap.get(key);
935 Object o = mMap.get(ke
[all...]
/frameworks/base/core/java/android/provider/
H A DBrowserContract.java522 * @see android.provider.SyncStateContract.Helpers#get
524 public static byte[] get(ContentProviderClient provider, Account account) method in class:BrowserContract.SyncState
526 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
530 * @see android.provider.SyncStateContract.Helpers#get
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java140 * This bit will be set in the return value of {@link #get(int, int)} if the
146 * Mask the return value from {@link #get(int, int)} with this value to get
265 final int combining = sAccentToCombining.get(accent);
364 public int get(int keyCode, int metaState) { method in class:KeyCharacterMap
368 int map = sCombiningToAccent.get(ch);
484 int combining = sAccentToCombining.get(accent);
492 combined = sDeadKeyCache.get(combination, -1);
509 * {@link KeyCharacterMap#getNumber(int)} and {@link KeyCharacterMap#get(int, int)}.
525 * (the same ones used for {@link #get} an
[all...]
H A DViewConfiguration.java230 * @deprecated Use {@link android.view.ViewConfiguration#get(android.content.Context)} instead.
258 * @see #get(android.content.Context)
317 public static ViewConfiguration get(Context context) { method in class:ViewConfiguration
321 ViewConfiguration configuration = sConfigurations.get(density);
H A DViewTreeObserver.java655 access.get(i).onGlobalLayout();
680 cancelDraw |= !(access.get(i).onPreDraw());
697 listeners.get(i).onDraw();
731 access.get(i).onScrollChanged();
763 access.get(i).onComputeInternalInsets(inoutInfo);
781 * MyData d = access.get(i);
799 T get(int index) { method in class:ViewTreeObserver.CopyOnWriteArray.Access
800 return mData.get(index);
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java75 * ActivityChooserModel.get(context, "task_specific_history_file_name.xml");
338 public static ActivityChooserModel get(Context context, String historyFileName) { method in class:ActivityChooserModel
340 ActivityChooserModel dataModel = sDataModelRegistry.get(historyFileName);
422 return mActivities.get(index).resolveInfo;
439 ActivityResolveInfo currentActivity = activities.get(i);
474 ActivityResolveInfo chosenActivity = mActivities.get(index);
525 return mActivities.get(0).resolveInfo;
545 ActivityResolveInfo newDefaultActivity = mActivities.get(index);
546 ActivityResolveInfo oldDefaultActivity = mActivities.get(0);
710 ResolveInfo resolveInfo = resolveInfos.get(
[all...]
/frameworks/base/libs/hwui/
H A DShapeCache.h353 PathTexture* get(Entry entry) { function in class:android::uirenderer::ShapeCache
354 return mCache.get(entry);
598 SHAPE_LOGD("ShapeCache::get: create %s: name, size, mSize = %d, %d, %d",
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkPolicyManagerServiceTest.java263 backgroundChanged.get();
274 idle.get();
281 idle.get();
289 idle.get();
297 idle.get();
303 idle.get();
309 idle.get();
321 future.get();
330 future.get();
340 future.get();
912 public T get() throws InterruptedException, ExecutionException { method in class:NetworkPolicyManagerServiceTest.TestAbstractFuture
941 public Void get() throws InterruptedException, ExecutionException { method in class:NetworkPolicyManagerServiceTest.IdleFuture
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLFrame.java35 public static StopWatchMap get() { method in class:GLFrameTimer
65 * Keep a reference to the GL environment, so that it does not get deallocated while there
145 StopWatchMap timer = GLFrameTimer.get();
248 throw new RuntimeException("Could not get bitmap data from GL frame!");
/frameworks/av/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp93 virtual sp<IBinder> get() = 0;
116 virtual sp<IBinder> get() { function in class:BpHolder
138 reply->writeStrongBinder(get());
154 virtual sp<IBinder> get() { function in class:HolderService
400 return getHolder()->get();
754 // get the width
764 // get the height
778 // disable thumbnail to get more accurate size.
797 const char *s = param.get(CameraParameters::KEY_SUPPORTED_PICTURE_SIZES);
842 cc->setReleaser(c.get());
[all...]

Completed in 446 milliseconds

123456