Searched refs:get (Results 251 - 275 of 1988) sorted by relevance

<<11121314151617181920>>

/frameworks/native/libs/binder/
H A DIMemory.cpp248 binder.get(), this, mSize, mHeapId);
266 sp<BpMemoryHeap> heap(static_cast<BpMemoryHeap*>(find_heap(binder).get()));
300 asBinder().get(), parcel_fd, size, err, strerror(-err));
317 asBinder().get(), size, fd, strerror(errno));
406 binder.get(), info.heap.get(),
407 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
408 static_cast<BpMemoryHeap*>(info.heap.get())->mHeapId,
417 // binder.get(), info.heap.get(), inf
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java198 play(items.get(0));
202 play(items.get(i)).before(items.get(i+1));
251 conf |= mNodes.get(i).animation.getChangingConfigurations();
543 Node node = mSortedNodes.get(i);
565 Node node = mSortedNodes.get(i);
574 Dependency dependency = node.dependencies.get(j);
600 Node node = nodesToStart.get(i);
615 tmpListeners.get(i).onAnimationStart(this);
627 tmpListeners.get(
[all...]
/frameworks/base/core/java/android/widget/
H A DDatePicker.java639 setDate(mTempDate.get(Calendar.YEAR), mTempDate.get(Calendar.MONTH),
640 mTempDate.get(Calendar.DAY_OF_MONTH));
714 init(mCurrentDate.get(Calendar.YEAR), mCurrentDate.get(Calendar.MONTH), mCurrentDate
715 .get(Calendar.DAY_OF_MONTH), null);
751 return mCurrentDate.get(Calendar.YEAR);
756 return mCurrentDate.get(Calendar.MONTH);
761 return mCurrentDate.get(Calendar.DAY_OF_MONTH);
777 if (mTempDate.get(Calenda
[all...]
/frameworks/base/core/tests/coretests/src/android/animation/
H A DEventsTest.java286 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
309 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
332 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
355 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
378 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
401 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
425 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
449 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
476 mFuture.get(getTimeout() + 100, TimeUnit.MILLISECONDS);
503 mFuture.get(getTimeou
[all...]
H A DViewPropertyAnimatorTest.java219 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
242 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
265 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
289 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
316 mFuture.get(getTimeout() + 100, TimeUnit.MILLISECONDS);
340 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
364 mFuture.get(getTimeout(), TimeUnit.MILLISECONDS);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java353 View mainView = mMainViewList.get(i);
370 View infoView = mInfoViewList.get(i);
382 View extraView = mExtraViewList.get(i);
410 View mainView = mMainViewList.get(i);
423 infoHeight += mInfoViewList.get(i).getMeasuredHeight();
441 View infoView = mInfoViewList.get(i);
461 View extraView = mExtraViewList.get(i);
586 mInfoViewList.get(i).setVisibility(View.VISIBLE);
590 mInfoViewList.get(i).setVisibility(View.GONE);
593 mExtraViewList.get(
[all...]
/frameworks/base/core/java/android/os/
H A DAsyncTask.java300 postResultIfNotInvoked(get());
314 final boolean wasTaskInvoked = mTaskInvoked.get();
438 return mCancelled.get();
486 public final Result get() throws InterruptedException, ExecutionException { method in class:AsyncTask
487 return mFuture.get();
505 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:AsyncTask
507 return mFuture.get(timeout, unit);
/frameworks/base/core/java/android/transition/
H A DCrossfade.java176 Rect startBounds = (Rect) startVals.get(PROPNAME_BOUNDS);
177 Rect endBounds = (Rect) endVals.get(PROPNAME_BOUNDS);
178 Bitmap startBitmap = (Bitmap) startVals.get(PROPNAME_BITMAP);
179 Bitmap endBitmap = (Bitmap) endVals.get(PROPNAME_BITMAP);
180 final BitmapDrawable startDrawable = (BitmapDrawable) startVals.get(PROPNAME_DRAWABLE);
181 final BitmapDrawable endDrawable = (BitmapDrawable) endVals.get(PROPNAME_DRAWABLE);
269 Log.d(LOG_TAG, "Captured bounds " + transitionValues.values.get(PROPNAME_BOUNDS));
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java103 AdapterItem item = mItems.get(groupPosition);
106 return children.get(childPosition);
118 AdapterItem item = mItems.get(groupPosition);
124 return mItems.get(groupPosition);
136 AdapterItem item = mItems.get(groupPosition);
147 AdapterItem parentItem = mItems.get(groupPosition);
229 return mItems.get(groupPosition).getType();
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DLayoutLibTestCallback.java76 new IntArrayWrapper((int[]) field.get(null)),
79 final Integer value = (Integer) field.get(null);
96 Class<?> aClass = mClasses.get(name);
141 return mProjectResources.get(id);
146 return mStyleableValueToNameMap.get(new IntArrayWrapper(id));
151 return mResources.get(type).get(name);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResponseData.java226 data[1] = byteToBCD(mCalendar.get(java.util.Calendar.YEAR) % 100);
229 data[2] = byteToBCD(mCalendar.get(java.util.Calendar.MONTH) + 1);
232 data[3] = byteToBCD(mCalendar.get(java.util.Calendar.DATE));
235 data[4] = byteToBCD(mCalendar.get(java.util.Calendar.HOUR_OF_DAY));
238 data[5] = byteToBCD(mCalendar.get(java.util.Calendar.MINUTE));
241 data[6] = byteToBCD(mCalendar.get(java.util.Calendar.SECOND));
243 String tz = SystemProperties.get("persist.sys.timezone", "");
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DImportTestProvider.java49 contentValuesCollection = mMimeTypeToExpectedContentValues.get(mimeType);
73 ContentProviderOperation operation = operations.get(i);
78 ContentProviderOperation operation = operations.get(i);
83 TestCase.assertNull(actualContentValues.get(RawContacts.ACCOUNT_NAME));
84 TestCase.assertNull(actualContentValues.get(RawContacts.ACCOUNT_TYPE));
116 mMimeTypeToExpectedContentValues.get(mimeType);
227 final Object actualValue = actual.get(key);
/frameworks/base/core/jni/
H A Dandroid_os_SELinux.cpp111 contextStr.reset(env->NewStringUTF(context.get()));
114 ALOGV("getPeerCon(%d) => %s", fd, context.get());
207 securityString.reset(env->NewStringUTF(context.get()));
210 ALOGV("getFileCon(%s) => %s", path.c_str(), context.get());
233 securityString.reset(env->NewStringUTF(context.get()));
236 ALOGV("getCon() => %s", context.get());
260 securityString.reset(env->NewStringUTF(context.get()));
263 ALOGV("getPidCon(%d) => %s", pid, context.get());
290 env->SetObjectArrayElement(stringArray, i, obj.get());
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java178 this.table = url.getPathSegments().get(0);
190 this.table = url.getPathSegments().get(0);
197 final String name = url.getPathSegments().get(1);
216 this.table = url.getPathSegments().get(0);
239 String table = tableUri.getPathSegments().get(0);
259 // a notification and then using the contract class to get their data,
260 // the system property will be updated and they'll get the new data.
263 String property = null, table = uri.getPathSegments().get(0);
320 String userRestriction = sRestrictedKeys.get(setting);
353 mutationCount = sKnownMutationsInFlight.get(mUserHandl
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup.cpp131 if (n->mInputs[ct2]->mDstField.get() && n->mInputs[ct2]->mDstField->mScript) {
133 s->setVarObj(n->mInputs[ct2]->mDstField->mSlot, n->mInputs[ct2]->mAlloc.get());
145 if (n->mInputs[ct3]->mDstKernel.get() == k) {
146 ain = n->mInputs[ct3]->mAlloc.get();
153 ain = mSG->mInputs[ct3]->mAlloc.get();
161 if (n->mOutputs[ct3]->mSource.get() == k) {
162 aout = n->mOutputs[ct3]->mAlloc.get();
163 if(n->mOutputs[ct3]->mDstField.get() != NULL) {
172 aout = mSG->mOutputs[ct3]->mAlloc.get();
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeUtils.java70 buffer.append(key).append("=").append(Arrays.toString(map.get(key)));
121 if (!Objects.deepEquals(map.get(key), otherMap.get(key))) {
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DPerfMeasurement.java139 mCollectedTimestamps.get(i),
140 mCollectedGpuDurations.get(i),
141 mCollectedCpuDurations.get(i)));
/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java139 return mPrivateDnsRouteSet.get();
149 return mDefaultRouteSet.get();
159 return mTeardownRequested.get();
/frameworks/base/core/java/android/util/
H A DLongSparseLongArray.java94 public long get(long key) { method in class:LongSparseLongArray
95 return get(key, 0);
102 public long get(long key, long valueIfKeyNotFound) { method in class:LongSparseLongArray
H A DMonthDisplayHelper.java72 return mCalendar.get(Calendar.YEAR);
76 return mCalendar.get(Calendar.MONTH);
89 return mCalendar.get(Calendar.DAY_OF_WEEK);
H A DSparseIntArray.java92 public int get(int key) { method in class:SparseIntArray
93 return get(key, 0);
100 public int get(int key, int valueIfKeyNotFound) { method in class:SparseIntArray
H A DSparseLongArray.java92 public long get(int key) { method in class:SparseLongArray
93 return get(key, 0);
100 public long get(int key, long valueIfKeyNotFound) { method in class:SparseLongArray
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java135 animation.mAnimations.add(animations.get(i).clone());
189 if (animations.get(i).hasAlpha()) {
261 Animation a = animations.get(i);
274 Animation a = animations.get(i);
289 animations.get(i).restrictDuration(durationMillis);
310 duration = Math.max(duration, animations.get(i).getDuration());
328 final long d = animations.get(i).computeDurationHint();
350 final Animation a = animations.get(i);
381 final Animation a = animations.get(i);
416 animations.get(
[all...]
/frameworks/base/libs/hwui/
H A DStatefulBaseRenderer.h141 return mSnapshot != NULL ? mSnapshot.get() : mFirstSnapshot.get();
145 return mFirstSnapshot.get();
/frameworks/base/libs/hwui/renderthread/
H A DDrawFrameTask.cpp55 if (mLayers[i].get() == layer) {
64 if (mLayers[i].get() == layer) {
130 mContext->processLayerUpdate(mLayers[i].get());

Completed in 623 milliseconds

<<11121314151617181920>>