Searched defs:id (Results 26 - 50 of 305) sorted by relevance

1234567891011>>

/frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
H A Dsp_dec.cpp141 id = pointer to an array whose contents are of type char
186 char *id)
214 s->complexityCounter = getCounterId(id);
246 Word8 * id)
249 OSCL_UNUSED_ARG(id);
245 GSMInitDecode(void **state_data, Word8 * id) argument
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
H A Dsp_enc.cpp113 id = pointer to an array whose contents are of type char
156 char *id)
173 s->complexityCounter = getCounterId(id);
217 Word8 *id)
221 OSCL_UNUSED_ARG(id);
215 GSMInitEncode(void **state_data, Flag dtx, Word8 *id) argument
/frameworks/base/media/mtp/
H A DMtpStorage.cpp35 MtpStorage::MtpStorage(MtpStorageID id, const char* filePath, argument
38 : mStorageID(id),
46 LOGV("MtpStorage id: %d path: %s\n", id, filePath);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaDataConnection.java36 private CdmaDataConnection(CDMAPhone phone, String name, int id, RetryManager rm, argument
38 super(phone, name, id, rm, dct);
45 * @param id the connection id
49 static CdmaDataConnection makeDataConnection(CDMAPhone phone, int id, RetryManager rm, argument
55 id, rm, dct);
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DDialogActivity.java81 protected Dialog onCreateDialog(int id) argument
83 switch (id)
91 return super.onCreateDialog(id);
H A DEditTextActivityDialog.java77 protected Dialog onCreateDialog(int id) { argument
78 switch (id) {
85 return super.onCreateDialog(id);
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DA3DSelector.java87 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DTestActivity.java66 public void onListItemClick(ListView l, View v, int position, long id) argument
/frameworks/base/tools/localize/
H A DValues.h20 const string& id, int index, XMLNode* value,
35 static bool ParseTypedID(const string& typed, string* id, int* index);
40 string id; member in struct:StringResource
/frameworks/base/core/java/android/app/
H A DListActivity.java42 * id "@android:id/list" (or {@link android.R.id#list} if it's in code)
46 * id "android:id/empty". Note that when an empty view is present, the list view
62 * <ListView android:id="@android:id/list"
69 * <TextView android:id="@android:id/empty"
105 * <TextView android:id
207 onListItemClick(ListView l, View v, int position, long id) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DUserInfo.java44 public int id; field in class:UserInfo
48 public UserInfo(int id, String name, int flags) { argument
49 this.id = id;
71 id = orig.id;
77 return "UserInfo{" + id + ":" + name + ":" + Integer.toHexString(flags) + "}";
85 dest.writeInt(id);
101 id = source.readInt();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbInterface.java48 public UsbInterface(int id, int Class, int subClass, int protocol, argument
50 mId = id;
123 int id = in.readInt();
128 return new UsbInterface(id, Class, subClass, protocol, endpoints);
/frameworks/base/core/java/android/net/http/
H A DConnectionThread.java48 int id,
53 setName("http" + id);
54 mId = id;
47 ConnectionThread(Context context, int id, RequestQueue.ConnectionManager connectionManager, RequestFeeder requestFeeder) argument
H A DLoggingEventHandler.java78 public void error(int id, String description) { argument
80 HttpLog.v("LoggingEventHandler: error() called Id:" + id +
/frameworks/base/core/java/android/os/
H A DPower.java45 public static native void acquireWakeLock(int lock, String id); argument
46 public static native void releaseWakeLock(String id); argument
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java62 * @param id The resource id of the animation to load
63 * @return The animation object reference by the specified id
66 public static Animation loadAnimation(Context context, int id) argument
71 parser = context.getResources().getAnimation(id);
75 Integer.toHexString(id));
80 Integer.toHexString(id));
136 public static LayoutAnimationController loadLayoutAnimation(Context context, int id) argument
141 parser = context.getResources().getAnimation(id);
145 Integer.toHexString(id));
259 loadInterpolator(Context context, int id) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DCompletionInfo.java36 public CompletionInfo(long id, int index, CharSequence text) { argument
37 mId = id;
46 public CompletionInfo(long id, int index, CharSequence text, CharSequence label) { argument
47 mId = id;
62 * corresponding to the id associated with it in the original adapter.
96 + "\" id=" + mId + " label=" + mLabel + "}";
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarNotification.java44 public int id; field in class:StatusBarNotification
54 public StatusBarNotification(String pkg, int id, String tag, argument
60 this.id = id;
75 this.id = in.readInt();
89 out.writeInt(this.id);
121 return new StatusBarNotification(this.pkg, this.id, this.tag,
126 return "StatusBarNotification(package=" + pkg + " id=" + id + " tag=" + tag
/frameworks/base/core/java/com/android/internal/view/menu/
H A DExpandedMenuView.java70 public void onItemClick(AdapterView parent, View v, int position, long id) { argument
/frameworks/base/core/jni/
H A Dandroid_nfc_NdefMessage.cpp92 jbyteArray type, id, payload; local
124 id = e->NewByteArray(record.IdLength);
125 if(id == NULL) {
138 e->SetByteArrayRegion(id, 0, record.IdLength,
144 (jshort)record.Tnf, type, id, payload, (jbyte)record.Flags);
151 e->DeleteLocalRef(id);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewSimple.java50 mTextView = (AutoCompleteTextView) findViewById(R.id.autocompletetextview1);
99 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
108 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridThrasher.java118 mText = (TextView) findViewById(R.id.text);
120 GridView g = (GridView) findViewById(R.id.grid);
128 public void onItemSelected(AdapterView parent, View v, int position, long id) { argument
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListScrollListener.java49 mText = (TextView) findViewById(R.id.text);
57 public void onItemSelected(AdapterView parent, View v, int position, long id) { argument
H A DListThrasher.java115 mText = (TextView) findViewById(R.id.text);
124 public void onItemSelected(AdapterView parent, View v, int position, long id) { argument
/frameworks/base/graphics/java/android/renderscript/
H A DBaseObj.java28 BaseObj(int id, RenderScript rs) { argument
31 mID = id;
35 void setID(int id) { argument
39 mID = id;
54 throw new RSRuntimeException("Internal error: Object id 0.");

Completed in 934 milliseconds

1234567891011>>