Searched defs:id (Results 76 - 100 of 348) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/app/
H A DListFragment.java46 * id "@android:id/list" (or {@link android.R.id#list} if it's in code)
50 * id "android:empty". Note that when an empty view is present, the list view
66 * <ListView android:id="@id/android:list"
73 * <TextView android:id="@id/android:empty"
109 * <TextView android:id="@+id/text
230 onListItemClick(ListView l, View v, int position, long id) argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DGesture.java160 * Sets the id of the gesture.
162 * @param id
164 void setID(long id) { argument
165 mGestureID = id;
169 * @return the id of the gesture
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java101 @Override public boolean onTextContextMenuItem(int id) { argument
102 if (mIME != null && mIME.onExtractTextContextMenuItem(id)) {
105 if (id == android.R.id.copy) stopSelectionActionMode();
108 return super.onTextContextMenuItem(id);
/frameworks/base/core/java/android/net/http/
H A DEventHandler.java116 * @param id One of the error codes defined below
119 public void error(int id, String description); argument
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java162 mListView = (ListView) childPrefScreen.findViewById(android.R.id.list);
199 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java77 GridView grid = (GridView) findViewById(R.id.characterPicker);
81 mCancelButton = (Button) findViewById(R.id.cancel);
88 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
/frameworks/base/core/java/com/android/internal/app/
H A DHeavyWeightSwitcherActivity.java76 setIconAndText(R.id.old_app_icon, R.id.old_app_action, R.id.old_app_description,
78 setIconAndText(R.id.new_app_icon, R.id.new_app_action, R.id.new_app_description,
81 View button = findViewById((R.id.switch_old));
83 button = findViewById((R.id.switch_new));
85 button = findViewById((R.id.cancel));
94 void setText(int id, CharSequenc argument
98 setDrawable(int id, Drawable dr) argument
[all...]
H A DLocalePicker.java85 return constructAdapter(context, R.layout.locale_picker_item, R.id.locale);
205 public void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java143 public boolean performContextMenuAction(int id) { argument
144 if (DEBUG) Log.v(TAG, "performContextMenuAction " + id);
146 mTextView.onTextContextMenuItem(id);
/frameworks/base/graphics/java/android/renderscript/
H A DAllocationAdapter.java28 AllocationAdapter(int id, RenderScript rs, Allocation alloc) { argument
29 super(id, rs, alloc.mType, alloc.mUsage);
H A DFileA3D.java63 EntryType(int id) { argument
64 mID = id;
158 IndexEntry(RenderScript rs, int index, int id, String name, EntryType type) { argument
161 mID = id;
171 FileA3D(int id, RenderScript rs, InputStream stream) { argument
172 super(id, rs);
283 * @param id resource to create FileA3D from
287 static public FileA3D createFromResource(RenderScript rs, Resources res, int id) { argument
292 is = res.openRawResource(id);
294 throw new RSRuntimeException("Unable to open resource " + id);
[all...]
H A DFont.java153 Font(int id, RenderScript rs) { argument
154 super(id, rs);
200 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) { argument
201 String name = "R." + Integer.toString(id);
206 is = res.openRawResource(id);
208 throw new RSRuntimeException("Unable to open resource " + id);
222 throw new RSRuntimeException("Unable to create font from resource " + id);
H A DProgramFragmentFixedFunction.java33 ProgramFragmentFixedFunction(int id, RenderScript rs) { argument
34 super(id, rs);
76 int id = mRS.nProgramFragmentCreate(mShader, texNames, tmp);
77 ProgramFragmentFixedFunction pf = new ProgramFragmentFixedFunction(id, mRS);
118 EnvMode(int id) { argument
119 mID = id;
148 Format(int id) { argument
149 mID = id;
H A DProgramVertexFixedFunction.java33 ProgramVertexFixedFunction(int id, RenderScript rs) { argument
34 super(id, rs);
103 int id = mRS.nProgramVertexCreate(mShader, texNames, tmp);
104 ProgramVertexFixedFunction pv = new ProgramVertexFixedFunction(id, mRS);
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.java75 Script(int id, RenderScript rs) { argument
76 super(id, rs);
/frameworks/base/libs/androidfw/
H A DInputDevice.cpp145 void InputDeviceInfo::initialize(int32_t id, int32_t generation, argument
147 mId = id;
/frameworks/base/libs/hwui/
H A DTexture.h58 glBindTexture(renderTarget, id);
81 glBindTexture(renderTarget, id);
92 GLuint id; member in struct:android::uirenderer::Texture
140 glDeleteTextures(1, &mTexture->id);
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java188 private String queryString(int id, String column) { argument
194 ID_WHERE, new String[] { Integer.toString(id) }, null, null);
209 private String queryAudio(int id, String column) { argument
214 ID_WHERE, new String[] { Integer.toString(id) }, null, null);
229 private String queryGenre(int id) { argument
232 Uri uri = Audio.Genres.getContentUriForAudioId(mVolumeName, id);
251 private Long queryLong(int id, String column) { argument
257 ID_WHERE, new String[] { Integer.toString(id) }, null, null);
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DCameraBrowser.java81 TextView textView1 = (TextView)view.findViewById(android.R.id.text1);
82 TextView textView2 = (TextView)view.findViewById(android.R.id.text2);
117 protected void onListItemClick(ListView l, View v, int position, long id) { argument
H A DMtpClient.java238 * @param id the ID of the USB device
241 public MtpDevice getDevice(int id) { argument
243 return mDevices.get(UsbDevice.getDeviceName(id));
H A DObjectBrowser.java87 TextView nameView = (TextView)view.findViewById(R.id.name);
98 ImageView thumbView = (ImageView)view.findViewById(R.id.thumbnail);
133 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/base/obex/javax/obex/
H A DClientSession.java167 public void setConnectionID(long id) { argument
168 if ((id < 0) || (id > 0xFFFFFFFFL)) {
171 mConnectionId = ObexHelper.convertToByteArray(id);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java51 writeBooleanTag(row, R.id.expandable_tag, expandedLarge != null);
164 protected static boolean readBooleanTag(View view, int id) { argument
166 Object value = view.getTag(id);
172 protected static boolean writeBooleanTag(View view, int id, boolean value) { argument
174 view.setTag(id, Boolean.valueOf(value));
184 return readBooleanTag(row, R.id.expandable_tag);
191 return readBooleanTag(row, R.id.user_expanded_tag);
198 return writeBooleanTag(row, R.id.user_expanded_tag, userExpanded);
/frameworks/base/services/common_time/
H A Dcommon_clock_service.cpp80 status_t CommonClockService::getTimelineID(uint64_t* id) { argument
81 *id = mTimeServer.getTimelineID();

Completed in 349 milliseconds

1234567891011>>