Searched defs:id (Results 376 - 400 of 630) sorted by relevance

<<11121314151617181920>>

/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_context.cpp118 int id = __sync_fetch_and_add(&mTraceContextIds, 1); local
122 GLTraceContext *traceContext = new GLTraceContext(id, version, this, stream);
132 GLTraceContext::GLTraceContext(int id, int version, GLTraceState *state, argument
134 mId(id),
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEntry.java110 public static boolean isCreatedRecipient(long id) { argument
111 return id == RecipientEntry.INVALID_CONTACT || id == RecipientEntry.GENERATED_CONTACT;
117 * have a contact id or photo.
152 * to a contact and therefore does not have a contact id or photo.
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsUt.java128 int id = miUt.queryCallBarring(cbType);
130 if (id < 0) {
136 mPendingCmds.put(Integer.valueOf(id), result);
157 int id = miUt.queryCallForward(condition, number);
159 if (id < 0) {
165 mPendingCmds.put(Integer.valueOf(id), result);
185 int id = miUt.queryCallWaiting();
187 if (id < 0) {
193 mPendingCmds.put(Integer.valueOf(id), result);
212 int id
589 utConfigurationUpdated(IImsUt ut, int id) argument
599 utConfigurationUpdateFailed(IImsUt ut, int id, ImsReasonInfo error) argument
612 utConfigurationQueried(IImsUt ut, int id, Bundle ssInfo) argument
622 utConfigurationQueryFailed(IImsUt ut, int id, ImsReasonInfo error) argument
635 utConfigurationCallBarringQueried(IImsUt ut, int id, ImsSsInfo[] cbInfo) argument
649 utConfigurationCallForwardQueried(IImsUt ut, int id, ImsCallForwardInfo[] cfInfo) argument
663 utConfigurationCallWaitingQueried(IImsUt ut, int id, ImsSsInfo[] cwInfo) argument
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp41 Allocation::Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage) : argument
42 BaseObj(id, rs), mSelectedY(0), mSelectedZ(0), mSelectedLOD(0),
427 void *id = 0; local
429 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mipmaps, usage, 0);
431 if (id == 0) {
435 return new Allocation(id, rs, type, usage);
441 void *id = 0; local
443 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mipmaps, usage,
446 if (id == 0) {
450 return new Allocation(id, r
[all...]
H A DScriptIntrinsics.cpp25 ScriptIntrinsic::ScriptIntrinsic(sp<RS> rs, int id, sp<const Element> e) argument
27 mID = createDispatch(rs, RS::dispatch->ScriptIntrinsicCreate(rs->getContext(), id,
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DGuidedStepFragment.java224 return add(fragmentManager, fragment, android.R.id.content);
228 // to specify an id.
229 private static int add(FragmentManager fm, GuidedStepFragment f, int id) { argument
239 return ft.replace(id, f, TAG_LEAN_BACK_ACTIONS_FRAGMENT).commit();
347 ViewGroup guidanceContainer = (ViewGroup) v.findViewById(R.id.content_fragment);
348 ViewGroup actionContainer = (ViewGroup) v.findViewById(R.id.action_fragment);
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DMediaSessionCompatApi21.java141 public void onSkipToQueueItem(long id); argument
187 public void onSkipToQueueItem(long id) { argument
188 mCallback.onSkipToQueueItem(id);
239 public static Object createItem(Object mediaDescription, long id) { argument
240 return new MediaSession.QueueItem((MediaDescription) mediaDescription, id);
/frameworks/support/v4/java/android/support/v4/app/
H A DLoaderManager.java47 * @param id The ID whose loader is to be created.
51 public Loader<D> onCreateLoader(int id, Bundle args); argument
118 * @param id A unique identifier for this loader. Can be whatever you want.
126 public abstract <D> Loader<D> initLoader(int id, Bundle args, argument
133 * If a loader with the same id has previously been
138 * @param id A unique identifier for this loader. Can be whatever you want.
144 public abstract <D> Loader<D> restartLoader(int id, Bundle args, argument
153 public abstract void destroyLoader(int id); argument
156 * Return the Loader with the given id or null if no matching Loader
159 public abstract <D> Loader<D> getLoader(int id); argument
235 LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) argument
536 createLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
544 createAndInstallLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
591 initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
641 restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
708 destroyLoader(int id) argument
736 getLoader(int id) argument
[all...]
H A DNotificationManagerCompat.java115 void cancelNotification(NotificationManager notificationManager, String tag, int id); argument
117 void postNotification(NotificationManager notificationManager, String tag, int id, argument
126 int id) {
127 notificationManager.cancel(id);
131 public void postNotification(NotificationManager notificationManager, String tag, int id, argument
133 notificationManager.notify(id, notification);
145 int id) {
146 NotificationManagerCompatEclair.cancelNotification(notificationManager, tag, id);
150 public void postNotification(NotificationManager notificationManager, String tag, int id, argument
152 NotificationManagerCompatEclair.postNotification(notificationManager, tag, id,
125 cancelNotification(NotificationManager notificationManager, String tag, int id) argument
144 cancelNotification(NotificationManager notificationManager, String tag, int id) argument
179 cancel(int id) argument
188 cancel(String tag, int id) argument
208 notify(int id, Notification notification) argument
218 notify(String tag, int id, Notification notification) argument
563 final int id; field in class:NotificationManagerCompat.NotifyTask
567 NotifyTask(String packageName, int id, String tag, Notification notif) argument
591 final int id; field in class:NotificationManagerCompat.CancelTask
602 CancelTask(String packageName, int id, String tag) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DListMenuPresenter.java168 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
200 public void setId(int id) { argument
201 mId = id;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DResourcesWrapper.java54 public CharSequence getText(int id) throws NotFoundException { argument
55 return mResources.getText(id);
59 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException { argument
60 return mResources.getQuantityText(id, quantity);
64 public String getString(int id) throws NotFoundException { argument
65 return mResources.getString(id);
69 public String getString(int id, Object... formatArgs) throws NotFoundException { argument
70 return mResources.getString(id, formatArgs);
74 public String getQuantityString(int id, int quantity, Object... formatArgs) argument
76 return mResources.getQuantityString(id, quantit
80 getQuantityString(int id, int quantity) argument
85 getText(int id, CharSequence def) argument
90 getTextArray(int id) argument
95 getStringArray(int id) argument
100 getIntArray(int id) argument
105 obtainTypedArray(int id) argument
110 getDimension(int id) argument
115 getDimensionPixelOffset(int id) argument
120 getDimensionPixelSize(int id) argument
125 getFraction(int id, int base, int pbase) argument
130 getDrawable(int id) argument
135 getDrawable(int id, Theme theme) argument
140 getDrawableForDensity(int id, int density) argument
145 getDrawableForDensity(int id, int density, Theme theme) argument
150 getMovie(int id) argument
155 getColor(int id) argument
160 getColorStateList(int id) argument
165 getBoolean(int id) argument
170 getInteger(int id) argument
175 getLayout(int id) argument
180 getAnimation(int id) argument
185 getXml(int id) argument
190 openRawResource(int id) argument
195 openRawResource(int id, TypedValue value) argument
200 openRawResourceFd(int id) argument
205 getValue(int id, TypedValue outValue, boolean resolveRefs) argument
211 getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs) argument
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDescriptor.java32 * Each route is uniquely identified by an opaque id string. This token
39 private static final String KEY_ID = "id";
64 * Gets the unique id of the route.
66 * The route id associated with a route descriptor functions as a stable
186 * Gets the route's presentation display id, or -1 if none.
218 result.append("id=").append(getId());
265 * @param id The unique id of the route.
268 public Builder(String id, String name) { argument
270 setId(id);
299 setId(String id) argument
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScript.java68 KernelID(long id, RenderScript rs, Script s, int slot, int sig) { argument
69 super(id, rs);
94 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig, mUseIncSupp);
95 if (id == 0) {
99 k = new KernelID(id, mRS, this, slot, sig);
116 InvokeID(long id, RenderScript rs, Script s, int slot) { argument
117 super(id, rs);
133 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot);
134 if (id == 0) {
138 i = new InvokeID(id, mR
155 FieldID(long id, RenderScript rs, Script s, int slot) argument
312 Script(long id, RenderScript rs) argument
[all...]
/frameworks/wilhelm/src/
H A Dsles.c60 SLuint32 id = clazz->mSLObjectID; local
61 if (!id) {
62 id = clazz->mXAObjectID;
64 return id;
/frameworks/av/media/libstagefright/codecs/avc/common/include/
H A Davcapi_common.h137 uint32 id; member in struct:tagAVCFrameIO
/frameworks/av/services/audioflinger/
H A DEffects.h47 int id,
61 int id() const { return mId; } function in class:EffectModule
207 int id() const { return mEffect->id(); } function in class:EffectHandle
273 sp<EffectModule> getEffectFromId_l(int id);
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp479 int id)
484 return mAudioPolicyManager->registerEffect(desc, io, strategy, session, id);
487 status_t AudioPolicyService::unregisterEffect(int id) argument
492 return mAudioPolicyManager->unregisterEffect(id);
495 status_t AudioPolicyService::setEffectEnabled(int id, bool enabled) argument
500 return mAudioPolicyManager->setEffectEnabled(id, enabled);
475 registerEffect(const effect_descriptor_t *desc, audio_io_handle_t io, uint32_t strategy, int session, int id) argument
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h368 sp<CameraService::BasicClient> getCameraClient(const String8& id) const;
408 CameraState(const String8& id, int cost, const std::set<String8>& conflicting);
516 int checkCameraCapabilities(int id, camera_info info, int *latestStrangeCameraId);
519 * Get the camera state for a given camera id.
555 * Remove a single client corresponding to the given camera id from the list of active clients.
636 * Update the status for the given camera id (if that device exists), and broadcast the
655 // camera id -> torch status
657 // camera id -> torch client binder
660 // camera id -> [incoming uid, current uid] pair
839 int id local
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java283 * @param id Value to match
287 public UiSelector resourceId(String id) { argument
288 return buildSelector(SELECTOR_RESOURCE_ID, id);
764 break; //TODO: do we need this for AccessibilityNodeInfo.id?
/frameworks/base/core/java/android/app/
H A DNotificationManager.java63 * Each of the notify methods takes an int id parameter and optionally a
65 * are used to form a pair (tag, id), or ({@code null}, id) if tag is
68 * of the notify methods with a (tag, id) pair that is currently active and
71 * be replaced with the new one. This is also the same tag and id you pass
184 * the same id has already been posted by your application and has not yet been canceled, it
187 * @param id An identifier for this notification unique within your
192 public void notify(int id, Notification notification) argument
194 notify(null, id, notification);
199 * the same tag and id ha
208 notify(String tag, int id, Notification notification) argument
242 notifyAsUser(String tag, int id, Notification notification, UserHandle user) argument
278 cancel(int id) argument
288 cancel(String tag, int id) argument
302 cancelAsUser(String tag, int id, UserHandle user) argument
[all...]
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java125 * Specifies the resource id of a XML resource that describes the keyboard
196 * Gets information about the input device with the specified id.
197 * @param id The device id.
200 public InputDevice getInputDevice(int id) { argument
204 int index = mInputDevices.indexOfKey(id);
212 inputDevice = mIm.getInputDevice(id);
242 int id = mInputDevices.keyAt(i);
244 inputDevice = mIm.getInputDevice(id);
628 * @param id Th
636 deviceHasKeys(int id, int[] keyCodes) argument
[all...]
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java52 public final int id; field in class:SoundTrigger.ModuleProperties
94 ModuleProperties(int id, String implementor, String description, argument
99 this.id = id;
127 int id = in.readInt();
141 return new ModuleProperties(id, implementor, description, uuid, version,
149 dest.writeInt(id);
172 return "ModuleProperties [id=" + id + ", implementor=" + implementor + ", description="
259 public final int id; field in class:SoundTrigger.Keyphrase
274 Keyphrase(int id, int recognitionModes, String locale, String text, int[] users) argument
806 public final int id; field in class:SoundTrigger.KeyphraseRecognitionExtra
819 KeyphraseRecognitionExtra(int id, int recognitionModes, int coarseConfidenceLevel, ConfidenceLevel[] confidenceLevels) argument
[all...]
/frameworks/base/core/java/android/os/storage/
H A DVolumeInfo.java149 public final String id; field in class:VolumeInfo
162 public VolumeInfo(String id, int type, DiskInfo disk, String partGuid) { argument
163 this.id = Preconditions.checkNotNull(id);
170 id = parcel.readString();
210 return id;
218 return (disk != null) ? disk.id : null;
242 if (ID_PRIVATE_INTERNAL.equals(id) || ID_EMULATED_INTERNAL.equals(id)) {
364 if (ID_EMULATED_INTERNAL.equals(id)) {
[all...]
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java27 * state includes properties such as its id, print attributes used for
125 /** The unique print job id. */
131 /** The unique id of the printer. */
140 /** The id of the app that created the job. */
219 * Gets the unique print job id.
221 * @return The id.
228 * Sets the unique print job id.
230 * @param The job id.
234 public void setId(PrintJobId id) { argument
235 this.mId = id;
[all...]
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java162 * object as well as its identifying information (tag and id) and source
173 * object as well as its identifying information (tag and id) and source
195 * @param sbn A data structure encapsulating at least the original information (tag and id)
216 * @param sbn A data structure encapsulating at least the original information (tag and id)
292 * @param id ID of the notification as specified by the notifying app in
300 public final void cancelNotification(String pkg, String tag, int id) { argument
304 mWrapper, pkg, tag, id);

Completed in 8478 milliseconds

<<11121314151617181920>>