Searched refs:parent (Results 1 - 25 of 92) sorted by relevance

1234

/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DUrlIntentListener.java32 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
36 final Context context = parent.getContext();
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DSpinner1.java52 AdapterView<?> parent, View view, int position, long id) {
56 public void onNothingSelected(AdapterView<?> parent) {
69 AdapterView<?> parent, View view, int position, long id) {
73 public void onNothingSelected(AdapterView<?> parent) {
H A DList7.java79 public void onItemSelected(AdapterView<?> parent, View v, int position, long id) { argument
82 Cursor c = (Cursor) parent.getItemAtPosition(position);
97 public void onNothingSelected(AdapterView<?> parent) { argument
H A DList5.java70 public View getView(int position, View convertView, ViewGroup parent) { argument
74 android.R.layout.simple_expandable_list_item_1, parent, false);
H A DAnimation2.java52 public void onItemSelected(AdapterView<?> parent, View v, int position, long id) { argument
82 public void onNothingSelected(AdapterView<?> parent) { argument
H A DImageSwitcher1.java59 public void onItemSelected(AdapterView<?> parent, View v, int position, long id) { argument
63 public void onNothingSelected(AdapterView<?> parent) { argument
94 public View getView(int position, View convertView, ViewGroup parent) { argument
H A DAnimation3.java53 public void onItemSelected(AdapterView<?> parent, View v, int position, long id) { argument
99 public void onNothingSelected(AdapterView<?> parent) { argument
H A DAutoComplete4.java63 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
66 android.R.layout.simple_dropdown_item_1line, parent, false);
H A DList13.java95 public View getView(int position, View convertView, ViewGroup parent) { argument
99 text = (TextView)mInflater.inflate(android.R.layout.simple_list_item_1, parent, false);
/development/tools/emulator/system/camera/fake-pipeline2/
H A DJpegCompressor.h46 JpegCompressor(EmulatedFakeCamera2 *parent);
82 JpegCompressor *parent; member in struct:android::JpegCompressor::JpegError
87 JpegCompressor *parent; member in struct:android::JpegCompressor::JpegDestination
H A DJpegCompressor.cpp28 JpegCompressor::JpegCompressor(EmulatedFakeCamera2 *parent): argument
31 mParent(parent),
106 error.parent = this;
117 jpegDestMgr.parent = this;
248 error->parent->mJpegErrorInfo = cinfo;
254 __FUNCTION__, dest->parent->mJpegBuffer.img, kMaxJpegSize);
255 dest->next_output_byte = (JOCTET*)(dest->parent->mJpegBuffer.img);
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
H A DTaskBackService.java87 // Grab the parent of the view that fired the event.
93 // Using this parent, get references to both child nodes, the label and the checkbox.
146 AccessibilityNodeInfo parent = current.getParent();
147 if (parent == null) {
150 if (TASK_LIST_VIEW_CLASS_NAME.equals(parent.getClassName())) {
155 current = parent;
H A DTaskListView.java87 public View getView(int position, View convertView, ViewGroup parent) { argument
90 convertView = inflater.inflate(R.layout.tasklist_row, parent, false);
/development/samples/Home/src/com/example/android/home/
H A DWallpaper.java79 public void onItemSelected(AdapterView parent, View v, int position, long id) { argument
83 public void onItemClick(AdapterView parent, View v, int position, long id) { argument
107 public void onNothingSelected(AdapterView parent) { argument
136 public View getView(final int position, View convertView, ViewGroup parent) { argument
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
H A DLatinKeyboard.java41 protected Key createKeyFromXml(Resources res, Row parent, int x, int y, argument
43 Key key = new LatinKey(res, parent, x, y, parser);
96 public LatinKey(Resources res, Keyboard.Row parent, int x, int y, XmlResourceParser parser) { argument
97 super(res, parent, x, y, parser);
/development/testrunner/
H A Dmake_tree.py27 def __init__(self, name, parent):
31 self._parent = parent
33 if parent:
34 self._path = os.path.join(parent._GetPath(), name)
/development/apps/Development/src/com/android/development/
H A DArrayAdapter.java62 public View getView(int position, View convertView, ViewGroup parent) { argument
65 view = mInflater.inflate(mLayoutRes, parent, false);
/development/ndk/platforms/android-3/include/linux/
H A Dproc_fs.h47 struct proc_dir_entry *next, *parent, *subdir; member in struct:proc_dir_entry
75 #define remove_proc_entry(name, parent) do {} while (0)
H A Drelay.h76 struct dentry *parent,
85 struct dentry *parent,
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DScreenOrientation.java64 AdapterView<?> parent, View view, int position, long id) {
68 public void onNothingSelected(AdapterView<?> parent) {
H A DSoftInputModes.java58 AdapterView<?> parent, View view, int position, long id) {
62 public void onNothingSelected(AdapterView<?> parent) {
H A DQuickContactsDemo.java88 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
89 View view = super.newView(context, cursor, parent);
/development/samples/Spinner/src/com/android/example/spinner/
H A DSpinnerActivity.java185 * @param parent - the AdapterView for this listener
190 public void onItemSelected(AdapterView<?> parent, View v, int pos, long row) { argument
193 SpinnerActivity.this.mSelection = parent.getItemAtPosition(pos).toString();
204 * @param parent - The View for this Listener
206 public void onNothingSelected(AdapterView<?> parent) { argument
/development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
H A DNativeMedia.java152 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
153 mSourceString = parent.getItemAtPosition(pos).toString();
157 public void onNothingSelected(AdapterView parent) {
172 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
173 mSinkString = parent.getItemAtPosition(pos).toString();
198 public void onNothingSelected(AdapterView parent) {
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
H A DAppNavHomeActivity.java109 public View getView(int position, View convertView, ViewGroup parent) { argument
112 parent, false);

Completed in 496 milliseconds

1234