Searched defs:onCreateItem (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DSimpleInflaterTest.java54 protected StringBuilder onCreateItem(String tagName, AttributeSet attrs) { method in class:SimpleInflaterTest.TestInflater
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DReflectionInflater.java118 protected T onCreateItem(String tagName, AttributeSet attrs) { method in class:ReflectionInflater
H A DSimpleInflater.java34 * need to implement {@link #onCreateItem(String, AttributeSet)} to create an object representation
125 protected abstract T onCreateItem(String tagName, AttributeSet attrs); method in class:SimpleInflater
129 T item = onCreateItem(name, attrs);
183 * @return True to continue parsing without calling {@link #onCreateItem(String, AttributeSet)},
/frameworks/support/preference/src/main/java/androidx/preference/
H A DPreferenceInflater.java276 * super.onCreateItem(name) for names you do not recognize.
282 protected Preference onCreateItem(String name, AttributeSet attrs) method in class:PreferenceInflater
293 item = onCreateItem(name, attrs);
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java82 public T onCreateItem(String name, Context context, AttributeSet attrs); method in interface:GenericInflater.Factory
93 public T onCreateItem(String name, Context context, AttributeSet attrs) { method in class:GenericInflater.FactoryMerger
94 T v = mF1.onCreateItem(name, context, attrs);
96 return mF2.onCreateItem(name, context, attrs);
172 * returns null, proceed to call onCreateItem(name).
184 * default {@link #onCreateItem} method is called.
412 * super.onCreateItem(name) for names you do not recognize.
418 protected T onCreateItem(String name, AttributeSet attrs) throws ClassNotFoundException { method in class:GenericInflater
426 T item = (mFactory == null) ? null : mFactory.onCreateItem(name, mContext, attrs);
430 item = onCreateItem(nam
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/
H A DSuggestionParser.java431 Object xmlRoot = onCreateItem(parser.getName(), attrs);
459 Object item = onCreateItem(name, attrs);
473 protected Object onCreateItem(String name, AttributeSet attrs) { method in class:SuggestionParser.SuggestionOrderInflater

Completed in 210 milliseconds