/packages/apps/Contacts/src/com/android/contacts/list/ |
EmailAddressPickerFragment.java | 63 protected View inflateView(LayoutInflater inflater, ViewGroup container) {
|
PostalAddressPickerFragment.java | 78 protected View inflateView(LayoutInflater inflater, ViewGroup container) {
|
JoinContactListFragment.java | 157 protected View inflateView(LayoutInflater inflater, ViewGroup container) {
|
ContactPickerFragment.java | 193 protected View inflateView(LayoutInflater inflater, ViewGroup container) {
|
DefaultContactBrowseListFragment.java | 109 protected View inflateView(LayoutInflater inflater, ViewGroup container) {
|
/external/skia/src/views/ |
SkViewInflate.cpp | 50 this->inflateView(parent, dom, node); 53 void SkViewInflate::inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node)
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/ |
RobolectricTestRunnerTest.java | 80 loader.inflateView(Robolectric.application, R.layout.text_views, null); 81 fail("ResourceLoader#inflateView should produce an i18nException");
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ |
ResourceLoaderTest.java | 49 resourceLoader.inflateView(Robolectric.application, R.layout.text_views, vg); 71 ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.different_screen_sizes, viewGroup); 89 ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.different_screen_sizes, viewGroup);
|
ViewLoaderTest.java | 61 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/media"); 69 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); 77 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); 85 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); 93 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); 101 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); 110 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); 119 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); 126 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/webview_holder"); 136 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/media") [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
ScreenPinningRequest.java | 157 inflateView(isLandscape); 201 private void inflateView(boolean isLandscape) { 269 inflateView(isLandscapePhone(mContext));
|
/packages/apps/Dialer/src/com/android/dialer/list/ |
AllContactsFragment.java | 148 protected View inflateView(LayoutInflater inflater, ViewGroup container) {
|
SearchFragment.java | 387 protected View inflateView(LayoutInflater inflater, ViewGroup container) { 388 final LinearLayout parent = (LinearLayout) super.inflateView(inflater, container);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
ViewLoader.java | 80 public View inflateView(Context context, String key) { 81 return inflateView(context, key, null); 84 public View inflateView(Context context, String key, View parent) { 85 return inflateView(context, key, null, parent); 88 public View inflateView(Context context, int resourceId, View parent) { 89 return inflateView(context, resourceExtractor.getResourceName(resourceId), parent); 92 private View inflateView(Context context, String layoutName, Map<String, String> attributes, View parent) { 190 View view = inflateView(context, layout.substring(1), attributes, parent);
|
ResourceLoader.java | 395 public View inflateView( Context context, int resource, ViewGroup viewGroup ) { 397 return viewLoader.inflateView( context, resource, viewGroup );
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
KeyguardBouncer.java | 200 inflateView(); 225 inflateView(); 229 protected void inflateView() {
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
PhoneNumberPickerFragment.java | 304 protected View inflateView(LayoutInflater inflater, ViewGroup container) {
|
ContactEntryListFragment.java | 166 protected abstract View inflateView(LayoutInflater inflater, ViewGroup container); 740 mView = inflateView(inflater, container); [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/ |
ViewInflater.java | 283 View view = inflateView(context, xml, null); 317 private View inflateView(Context context, XmlPullParser xml, ViewGroup root) 329 inflateView(context, xml, (ViewGroup) view); [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
BridgeContext.java | 403 public Pair<View, Boolean> inflateView(ResourceReference resource, ViewGroup parent, [all...] |