HomeSort by relevance Sort by last modified time
    Searched refs:inflate (Results 51 - 75 of 1263) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestCanvas2.java 34 return inflater.inflate(R.layout.canvas2, container, false);
BiDiTestGalleryLtr.java 30 View v = inflater.inflate(R.layout.gallery_ltr, container, false);
BiDiTestGalleryRtl.java 30 View v = inflater.inflate(R.layout.gallery_rtl, container, false);
  /libcore/luni/src/main/native/
ZipUtilities.h 33 void setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate);
  /packages/apps/Browser/src/com/android/browser/
AddNewBookmark.java 42 factory.inflate(R.layout.add_new_bookmark, this);
  /packages/apps/Tag/src/com/android/apps/tag/record/
UnknownRecord.java 31 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
  /developers/samples/android/ui/actionbar/DoneBar/DoneBarSample/src/main/java/com/example/android/donebar/
DoneButtonActivity.java 36 // Inflate a "Done" custom action bar view to serve as the "Up" affordance.
39 final View customActionBarView = inflater.inflate(
66 getMenuInflater().inflate(R.menu.cancel, menu);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarSettingsActionProviderActivity.java 47 getMenuInflater().inflate(R.menu.action_bar_settings_action_provider, menu);
87 // Inflate the action view to be shown on the action bar.
89 View view = layoutInflater.inflate(R.layout.action_bar_settings_action_provider, null);
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarSettingsActionProviderActivity.java 42 getMenuInflater().inflate(R.menu.action_bar_settings_action_provider, menu);
71 // Inflate the action view to be shown on the action bar.
73 View view = layoutInflater.inflate(R.layout.action_bar_settings_action_provider, null);
  /development/samples/browseable/DoneBar/src/com.example.android.donebar/
DoneButtonActivity.java 36 // Inflate a "Done" custom action bar view to serve as the "Up" affordance.
39 final View customActionBarView = inflater.inflate(
66 getMenuInflater().inflate(R.menu.cancel, menu);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResourceCursorAdapter.java 84 return mInflater.inflate(mLayout, parent, false);
89 return mInflater.inflate(mDropDownLayout, parent, false);
  /frameworks/base/core/java/android/widget/
ResourceCursorAdapter.java 104 return mInflater.inflate(mLayout, parent, false);
109 return mInflater.inflate(mDropDownLayout, parent, false);
ResourceCursorTreeAdapter.java 100 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
105 return mInflater.inflate((isExpanded) ? mExpandedGroupLayout : mCollapsedGroupLayout,
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
Demo0.java 49 inflater.inflate(R.layout.search_screen, mSceneRoot);
55 inflater.inflate(R.layout.results_screen, mSceneRoot);
  /frameworks/support/v4/java/android/support/v4/widget/
ResourceCursorAdapter.java 106 return mInflater.inflate(mLayout, parent, false);
111 return mInflater.inflate(mDropDownLayout, parent, false);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List9.java 71 LayoutInflater inflate = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); local
73 mDialogText = (TextView) inflate.inflate(R.layout.list_position, null);
  /external/droiddriver/samples/testapp/src/com/google/android/apps/common/testing/ui/testapp/
MenuActivity.java 33 inflater.inflate(R.menu.contextmenu, menu);
46 inflater.inflate(R.menu.optionsmenu, menu);
64 popup.getMenuInflater().inflate(R.menu.popupmenu, popup.getMenu());
  /frameworks/base/core/tests/coretests/src/android/view/
InflateTest.java 46 // mInflater.inflate(mResId, null, null);
59 mView = mInflater.inflate(resourceId, null);
65 mInflater.inflate(resourceId, null);
67 mInflater.inflate(resourceId, null);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextGammaActivity.java 77 inflater.inflate(R.layout.text_large, this, true);
78 inflater.inflate(R.layout.text_medium, this, true);
79 inflater.inflate(R.layout.text_small, this, true);
  /libcore/luni/src/main/java/java/util/zip/
Inflater.java 37 * if (inflater.inflate(decompressedBytes) != decompressedByteCount) {
47 * <p>If you don't know how big the decompressed data will be, you can call {@link #inflate}
204 public int inflate(byte[] buf) throws DataFormatException { method in class:Inflater
205 return inflate(buf, 0, buf.length);
217 public synchronized int inflate(byte[] buf, int offset, int byteCount) throws DataFormatException { method in class:Inflater
239 * dictionary. This method should be called if the first call to {@link #inflate} returns 0,
242 * inflate} again. Use {@link #getAdler} to determine which dictionary is required.
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterInputStreamTest.java 42 assertEquals(Arrays.toString(data), Arrays.toString(inflate(out.toByteArray()))); method
52 public byte[] inflate(byte[] bytes) throws IOException { method in class:DeflaterInputStreamTest
76 assertEquals(Arrays.toString(data), Arrays.toString(inflate(out.toByteArray()))); method
InflaterTest.java 52 assertEquals(0, inflater.inflate(new byte[8]));
60 // We use a tiny output buffer to ensure that we call inflate multiple times, and
70 int inflatedByteCount = inflater.inflate(buf);
99 assertEquals(0, inflater.inflate(new byte[0], 0, 0));
  /packages/apps/Camera/src/com/android/camera/
PreferenceInflater.java 33 * Inflate <code>CameraPreference</code> from XML resource.
50 public CameraPreference inflate(int resId) { method in class:PreferenceInflater
51 return inflate(mContext.getResources().getXml(resId));
75 private CameraPreference inflate(XmlPullParser parser) { method in class:PreferenceInflater
  /packages/apps/Camera2/src/com/android/camera/
PreferenceInflater.java 33 * Inflate <code>CameraPreference</code> from XML resource.
50 public CameraPreference inflate(int resId) { method in class:PreferenceInflater
51 return inflate(mContext.getResources().getXml(resId));
75 private CameraPreference inflate(XmlPullParser parser) { method in class:PreferenceInflater
  /packages/apps/LegacyCamera/src/com/android/camera/
PreferenceInflater.java 33 * Inflate <code>CameraPreference</code> from XML resource.
50 public CameraPreference inflate(int resId) { method in class:PreferenceInflater
51 return inflate(mContext.getResources().getXml(resId));
75 private CameraPreference inflate(XmlPullParser parser) { method in class:PreferenceInflater

Completed in 1136 milliseconds

1 23 4 5 6 7 8 91011>>