Searched defs:get (Results 276 - 300 of 362) sorted by relevance

<<1112131415

/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java211 return mJobSet.get(uid, jobId);
300 JobStatus jobStatus = jobList.get(i);
365 Object o = copy.get(key);
469 JobStatus js = jobs.get(i);
809 ArraySet<JobStatus> jobs = mJobs.get(uid);
832 ArraySet<JobStatus> jobs = mJobs.get(uid);
842 ArraySet<JobStatus> jobs = mJobs.get(uid);
864 ArraySet<JobStatus> jobs = mJobs.get(uid);
868 public JobStatus get(int uid, int jobId) { method in class:JobStore.JobSet
869 ArraySet<JobStatus> jobs = mJobs.get(ui
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A Dcommon.cpp332 get function
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2TestProperties.cpp44 const Area& curr = get();
54 buffer->updateBufferArea(get());
62 mSourceCrop->updateBufferArea(get());
70 mSurfaceDamage->updateBufferArea(get());
93 const Area& curr = get();
123 dmp << "\tblend mode: " << getBlendModeName(get()) << "\n";
136 mColor->updateBlendMode(get());
169 const hwc_color_t& color = get();
236 dmp << "\tcomposition: " << getCompositionName(get()) << "\n";
265 dmp << "\tdataspace: " << get() << "\
702 hwc_region_t Hwc2TestVisibleRegion::get() const function in class:Hwc2TestVisibleRegion
[all...]
H A DHwc2TestBuffer.cpp183 mSurface.get(), surfaceAttrs);
269 int32_t get() function in class:Hwc2TestFenceGenerator
372 int Hwc2TestBuffer::get(buffer_handle_t* outHandle, int32_t* outFence) function in class:Hwc2TestBuffer
385 *outFence = mFenceGenerator->get();
464 int Hwc2TestClientTargetBuffer::get(buffer_handle_t* outHandle, function in class:Hwc2TestClientTargetBuffer
598 * sections by height. Each section would get one color.
691 *outFence = mFenceGenerator->get();
H A DHwc2TestProperties.h114 T get() const function in class:Hwc2TestProperty
377 hwc_region_t get() const;
/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.
942 if (!days.get(iterator, dayIndex)) {
984 // sometimes events get generated (BYDAY, BYHOUR, etc.) that
1064 // Add freqAmount to freqField until we get another date that we want.
/frameworks/opt/net/voip/src/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/telephony/src/java/com/android/internal/telephony/ims/
H A DImsResolver.java198 ImsServiceController get(Context context, ComponentName componentName); method in interface:ImsResolver.ImsServiceControllerFactory
317 SparseArray<ImsServiceController> services = mBoundImsServicesByFeature.get(slotId);
321 controller = services.get(feature);
338 SparseArray<ImsServiceController> services = mBoundImsServicesByFeature.get(slotId);
357 SparseArray<ImsServiceController> services = mBoundImsServicesByFeature.get(slotId);
361 ImsServiceController c = services.get(feature, null);
387 Log.d(TAG, "Updating features - Old features: " + match.get().supportedFeatures
389 match.get().supportedFeatures = info.supportedFeatures;
419 mInstalledServicesCache.remove(match.get());
420 Log.i(TAG, "Removing ImsService: " + match.get()
[all...]
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java124 Element get(int group, int element) { method in class:LoaderDicom.TagSet
125 return get(tagInt(group, element));
234 mMappedByteBuffer.get(readBuff, 0, (int) (e.mLength));
246 mMappedByteBuffer.get(readBuff, 0, (int) (e.mLength));
255 mMappedByteBuffer.asShortBuffer().get(s);
315 v.mData[count] = (short[]) data.get(0x7fe0, 0x10).mValue;
317 v.mDimx = (Short) data.get(0x28, 0x10).mValue;
318 v.mDimy = (Short) data.get(0x28, 0x11).mValue;
407 int z = fileMap.get(file);
410 short[] slice = (short[]) data.get(
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DSortedList.java65 * The callback instance that controls the behavior of the SortedList and get notified when
437 T item = get(index);
467 * If the new object is a different object (<code>get(index) != item</code>) and
482 final T existing = get(index);
537 final T item = get(index);
554 public T get(int index) throws IndexOutOfBoundsException { method in class:SortedList
556 throw new IndexOutOfBoundsException("Asked to get item at " + index + " but size is "
/frameworks/av/services/camera/libcameraservice/utils/
H A DClientManager.h324 std::shared_ptr<ClientDescriptor<KEY, VALUE>> get(const KEY& key) const;
576 std::shared_ptr<ClientDescriptor<KEY, VALUE>> ClientManager<KEY, VALUE, LISTENER>::get( function in class:android::resource_policy::ClientManager
/frameworks/base/core/java/android/os/
H A DBaseBundle.java422 out.add(deepCopyValue(from.get(i)));
446 public Object get(String key) { method in class:BaseBundle
448 return mMap.get(key);
826 Object o = mMap.get(key);
860 Object o = mMap.get(key);
894 Object o = mMap.get(key);
928 Object o = mMap.get(key);
962 Object o = mMap.get(key);
996 Object o = mMap.get(key);
1030 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 DFocusFinder.java52 return tlFocusFinder.get();
310 return focusables.get(count - 1);
348 View focusable = focusables.get(i);
353 // get focus bounds of other view in same coordinate system
369 return focusables.get(position + 1);
373 return focusables.get(0);
382 return focusables.get(position - 1);
386 return focusables.get(count - 1);
400 return clusters.get(0);
406 return clusters.get(positio
881 View get(View root, View view); method in interface:FocusFinder.UserSpecifiedFocusComparator.NextFocusGetter
[all...]
H A DKeyCharacterMap.java139 * This bit will be set in the return value of {@link #get(int, int)} if the
145 * Mask the return value from {@link #get(int, int)} with this value to get
266 final int combining = sAccentToCombining.get(accent);
365 public int get(int keyCode, int metaState) { method in class:KeyCharacterMap
369 int map = sCombiningToAccent.get(ch);
496 int combining = sAccentToCombining.get(accent);
504 combined = sDeadKeyCache.get(combination, -1);
522 * {@link KeyCharacterMap#getNumber(int)} and {@link KeyCharacterMap#get(int, int)}.
538 * (the same ones used for {@link #get} an
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java79 * ActivityChooserModel.get(context, "task_specific_history_file_name.xml");
342 public static ActivityChooserModel get(Context context, String historyFileName) { method in class:ActivityChooserModel
344 ActivityChooserModel dataModel = sDataModelRegistry.get(historyFileName);
426 return mActivities.get(index).resolveInfo;
443 ActivityResolveInfo currentActivity = activities.get(i);
478 ActivityResolveInfo chosenActivity = mActivities.get(index);
529 return mActivities.get(0).resolveInfo;
549 ActivityResolveInfo newDefaultActivity = mActivities.get(index);
550 ActivityResolveInfo oldDefaultActivity = mActivities.get(0);
714 ResolveInfo resolveInfo = resolveInfos.get(
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10Ext.cpp358 get function
/frameworks/base/keystore/java/android/security/
H A DKeyStore.java168 public byte[] get(String key, int uid) { method in class:KeyStore
170 return mBinder.get(key, uid);
177 public byte[] get(String key) { method in class:KeyStore
178 return get(key, UID_SELF);
/frameworks/base/libs/hwui/
H A DProgramCache.cpp521 Program* ProgramCache::get(const ProgramDescription& description) { function in class:android::uirenderer::ProgramCache
536 program = iter->second.get();
/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/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java340 public Entry get(String key) { method in class:NotificationData
341 return mEntries.get(key);
503 final ForegroundServiceController fsc = Dependency.get(ForegroundServiceController.class);
543 NotificationData.Entry e = mSortedAndFiltered.get(active);
/frameworks/base/rs/java/android/renderscript/
H A DScriptGroup.java262 Future f = mGlobalFuture.get(field);
269 Object obj = mBindings.get(field);
396 Object get() { return mValue; } method in class:ScriptGroup.Input
419 closureIDs[i] = closures.get(i).getID(rs);
454 Input unbound = mInputs2.get(i);
465 output = ((Input)output).get();
574 final ConnectLine cl = target.mOutputs.get(ct);
594 if (mNodes.get(ct).dagNumber == valueKilled)
595 mNodes.get(ct).dagNumber = valueUsed;
608 final ConnectLine cl = n.mOutputs.get(c
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiDiagnostics.java229 pw.print(mLastAlerts.get(i));
236 pw.print(mLastBugReports.get(i));
286 builder.append(kernelLogLines.get(i)).append("\n");
294 builder.append(logcatLines.get(i)).append("\n");
361 public final E get(int i) { method in class:WifiDiagnostics.LimitedCircularArray
362 return mArrayList.get(i);
386 ByteArrayRingBuffer ring = mRingBufferData.get(status.name);
407 mLastAlerts.get(i).clearVerboseLogs();
411 mLastBugReports.get(i).clearVerboseLogs();
513 ByteArrayRingBuffer data = mRingBufferData.get(buffe
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DBackgroundScanScheduler.java204 WifiScanner.ScanSettings setting = mScanSettingsList.get(i);
288 public Bucket get(int index) { method in class:BackgroundScanScheduler.BucketList
340 // TODO: find a way to get max channels
349 // TODO: find a way to get max batch size
424 Bucket maxScheduledBucket = mSettingsToScheduledBucket.get(settings);
541 for (ScanSettings scanRequest : mBuckets.get(i).getSettingsList()) {
740 Bucket exponentialBucket = mBuckets.get(EXPONENTIAL_BACK_OFF_BUCKET_IDX);
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DEmojiCompat.java70 * After initialization the {@link #get()} function can be used to get the configured instance and
74 * <pre><code>CharSequence processedSequence = EmojiCompat.get().process("some string")</pre>
289 public static EmojiCompat get() { method in class:EmojiCompat
906 mInitCallbacks.get(i).onInitialized();
912 mInitCallbacks.get(i).onFailed(mThrowable);

Completed in 3012 milliseconds

<<1112131415