Searched defs:id (Results 201 - 225 of 397) sorted by relevance

1234567891011>>

/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DSampler.java45 Value(int id) { argument
46 mID = id;
57 Sampler(int id, RenderScript rs) { argument
58 super(id, rs);
286 int id = mRS.nSamplerCreate(mMag.mID, mMin.mID,
288 Sampler sampler = new Sampler(id, mRS);
H A DScript.java38 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
39 super(id, rs);
64 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
65 if (id == 0) {
69 k = new KernelID(id, mRS, this, slot, sig);
85 FieldID(int id, RenderScript rs, Script s, int slot) { argument
86 super(id, rs);
107 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
108 if (id == 0) {
112 f = new FieldID(id, mR
170 Script(int id, RenderScript rs) argument
[all...]
H A DScriptGroup.java84 ScriptGroup(int id, RenderScript rs) { argument
85 super(id, rs);
392 int id = mRS.nScriptGroupCreate(kernels, src, dstk, dstf, types);
393 if (id == 0) {
397 ScriptGroup sg = new ScriptGroup(id, mRS);
H A DScriptIntrinsicBlend.java25 ScriptIntrinsicBlend(int id, RenderScript rs) { argument
26 super(id, rs);
40 int id = rs.nScriptIntrinsicCreate(7, e.getID(rs));
41 return new ScriptIntrinsicBlend(id, rs);
45 private void blend(int id, Allocation ain, Allocation aout) { argument
52 forEach(id, ain, aout, null);
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java57 public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
58 onListItemClick((ListView)parent, v, position, id);
77 * returned view hierarchy <em>must</em> have a ListView whose id
78 * is {@link android.R.id#list android.R.id.list} and can optionally
79 * have a sibling view id {@link android.R.id#empty android.R.id.empty}
123 lv.setId(android.R.id.list);
170 * @param id Th
172 onListItemClick(ListView l, View v, int position, long id) argument
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DLoader.java128 public void registerListener(int id, OnLoadCompleteListener<D> listener) { argument
133 mId = id;
351 sb.append(" id=");
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java136 public void setLabelFor(View view, int id);; argument
206 public void setLabelFor(View view, int id) { argument
316 public void setLabelFor(View view, int id) { argument
317 ViewCompatJellybeanMr1.setLabelFor(view, id);
737 * Gets the id of a view for which a given view serves as a label for
741 * @return The labeled view id.
748 * Sets the id of a view for which a given view serves as a label for
752 * @param labeledId The labeled view id.
/frameworks/support/v7/gridlayout/gen/android/support/v7/gridlayout/
H A DR.java218 public static final class id { class in class:R
/frameworks/wilhelm/tests/examples/
H A DxaVideoDecoderCapabilities.cpp60 XAuint32 id; member in struct:__anon1692
64 const char *id_to_string(XAuint32 id, const id_to_string_t *table, size_t numEntries) argument
68 if (id == table[i].id) {
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp51 int id = ap->load(s, priority); local
53 return id;
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_rights_manager.c50 static int32_t drm_writeToUidTxt(uint8_t* Uid, int32_t* id) argument
63 if (*id < 1)
97 if (idMax < *id)
110 strcpy((char *)uidStr[*id - 1], (char *)Uid);
111 uidStr[*id - 1][length] = '\n';
112 uidStr[*id - 1][length + 1] = '\0';
113 if (idMax < (*id))
151 int32_t drm_readFromUidTxt(uint8_t* Uid, int32_t* id, int32_t option) argument
163 if (NULL == id || NULL == Uid)
200 if (*id <
241 drm_acquireId(uint8_t* uid, int32_t* id) argument
251 drm_writeOrReadInfo(int32_t id, T_DRM_Rights* Ro, int32_t* RoAmount, int32_t option) argument
356 int32_t id; local
417 drm_removeIdInfoFile(int32_t id) argument
443 drm_updateUidTxtWhenDelete(int32_t id) argument
535 int32_t id, roAmount; local
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.h86 // coupled to Java objects. This is done by using an "id" field in the Java
115 const int id = next_id_; local
116 objects_[id] = object;
117 owns_[id] = owns;
119 return id;
142 const int id = RegisterObject(c_object, owns); local
145 env->SetIntField(j_object, id_field, id);
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp199 const int id = ++max_surface_id_; local
200 surfaces_[id] = SurfaceWindowPair(surface, window_handle);
201 return id;
268 const int id = contexts_.size(); local
269 contexts_[id] = context;
270 return id;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java51 writeBooleanTag(row, R.id.expandable_tag, expandedLarge != null);
176 protected static boolean readBooleanTag(View view, int id) { argument
178 Object value = view.getTag(id);
184 protected static boolean writeBooleanTag(View view, int id, boolean value) { argument
186 view.setTag(id, Boolean.valueOf(value));
196 return readBooleanTag(row, R.id.expandable_tag);
203 return readBooleanTag(row, R.id.user_expanded_tag);
210 return writeBooleanTag(row, R.id.user_expanded_tag, userExpanded);
217 return readBooleanTag(row, R.id.user_lock_tag);
224 return writeBooleanTag(row, R.id
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbStorageActivity.java124 mIcon = (ImageView) findViewById(com.android.internal.R.id.icon);
125 mBanner = (TextView) findViewById(com.android.internal.R.id.banner);
126 mMessage = (TextView) findViewById(com.android.internal.R.id.message);
128 mMountButton = (Button) findViewById(com.android.internal.R.id.mount_button);
130 mUnmountButton = (Button) findViewById(com.android.internal.R.id.unmount_button);
132 mProgressBar = (ProgressBar) findViewById(com.android.internal.R.id.progress);
213 public Dialog onCreateDialog(int id, Bundle args) { argument
214 switch (id) {
237 private void scheduleShowDialog(final int id) { argument
242 removeDialog(id);
[all...]
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp77 char id[3]; member in struct:android::id3_header
90 if (memcmp(header.id, "ID3", 3)) {
345 ID3::Iterator::Iterator(const ID3 &parent, const char *id) argument
351 if (id) {
352 mID = strdup(id);
379 void ID3::Iterator::getID(String8 *id) const {
380 id->setTo("");
387 id->setTo((const char *)&mParent.mData[mOffset], 3);
389 id->setTo((const char *)&mParent.mData[mOffset], 4);
395 id
467 getString(String8 *id, String8 *comment) const argument
477 getstring(String8 *id, bool otherdata) const argument
619 char id[4]; local
675 char id[5]; local
722 String8 id; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp85 sp<AMessage> msg = new AMessage(kWhatAddStream, id());
96 sp<AMessage> msg = new AMessage(kWhatRemoveStream, id());
235 sp<AMessage> msg = new AMessage(kWhatPollStreams, id());
587 uint32_t id = u32at(&data[4]); local
589 sp<ARTPSource> source = findSource(s, id);
605 uint32_t id = u32at(&data[4]); local
611 id,
616 sp<ARTPSource> source = findSource(s, id);
641 sp<AMessage> msg = new AMessage(kWhatInjectPacket, id());
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DWifiDisplaySink.cpp46 sp<AMessage> msg = new AMessage(kWhatStart, id());
53 sp<AMessage> msg = new AMessage(kWhatStart, id());
139 sp<AMessage> notify = new AMessage(kWhatRTSPNotify, id());
237 ResponseID id; local
238 id.mSessionID = sessionID;
239 id.mCSeq = cseq;
240 mResponseHandlers.add(id, func);
318 // Strip any options from the returned session id.
421 ResponseID id; local
422 id
[all...]
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java364 TextView alertTitle = (TextView) findViewById(com.android.internal.R.id.alertTitle);
371 Button cancelButton = (Button) findViewById(com.android.internal.R.id.button1);
402 protected void onListItemClick(ListView l, View v, int position, long id) { argument
H A DLoaderManager.java66 * @param id The ID whose loader is to be created.
70 public Loader<D> onCreateLoader(int id, Bundle args); argument
137 * @param id A unique identifier for this loader. Can be whatever you want.
145 public abstract <D> Loader<D> initLoader(int id, Bundle args, argument
152 * If a loader with the same id has previously been
157 * @param id A unique identifier for this loader. Can be whatever you want.
163 public abstract <D> Loader<D> restartLoader(int id, Bundle args, argument
172 public abstract void destroyLoader(int id); argument
175 * Return the Loader with the given id or null if no matching Loader
178 public abstract <D> Loader<D> getLoader(int id); argument
242 LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) argument
543 createLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
551 createAndInstallLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
598 initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
648 restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
715 destroyLoader(int id) argument
743 getLoader(int id) argument
[all...]
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java124 * Specifies the resource id of a XML resource that describes the keyboard
195 * Gets information about the input device with the specified id.
196 * @param id The device id.
199 public InputDevice getInputDevice(int id) { argument
203 int index = mInputDevices.indexOfKey(id);
211 inputDevice = mIm.getInputDevice(id);
239 int id = mInputDevices.keyAt(i);
241 inputDevice = mIm.getInputDevice(id);
729 * @param deviceId The id o
[all...]
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java54 * <li><em>id</em>: identifier meta-data, not commonly used</li>
60 * NDEF Records with correctly set tnf, type, id and payload fields, please
90 * Type, id and payload fields are empty in a {@literal TNF_EMPTY} record.
267 "urn:epc:id:", // 0x1E
484 * Basic validation of the tnf, type, id and payload is performed
489 * id or payload.</li>
499 * Deep inspection of the type, id and payload fields is not
505 * To omit a type, id or payload field, set the parameter to an
510 * @param id byte array, containing zero to 255 bytes, or null
515 public NdefRecord(short tnf, byte[] type, byte[] id, byt argument
865 validateTnf(short tnf, byte[] type, byte[] id, byte[] payload) argument
[all...]
/frameworks/base/core/java/android/os/
H A DCommonTimeConfig.java182 * @param id The 64-bit group ID of the common time service.
186 public int setMasterElectionGroupId(long id) { argument
189 return mUtils.transactSetLong(METHOD_SET_MASTER_ELECTION_GROUP_ID, id);
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java417 public boolean performContextMenuAction(int id) { argument
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java318 public boolean performContextMenuAction(int id) { argument
320 mIInputContext.performContextMenuAction(id);

Completed in 4263 milliseconds

1234567891011>>