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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterTest.java 46 Inflater inflate = new Inflater(); local
47 inflate.setInput(byteArray);
48 inflate.end();
50 inflate.reset();
51 inflate.setInput(byteArray);
55 assertEquals("inflate can still be used after end is called", 1, r);
69 Inflater inflate = new Inflater(false); local
72 while (!(inflate.finished())) {
73 if (inflate.needsInput()) {
74 inflate.setInput(outPutBuff1)
120 Inflater inflate = new Inflater(); local
149 Inflater inflate = new Inflater(); local
206 Inflater inflate = new Inflater(); local
260 Inflater inflate = new Inflater(); local
363 Inflater inflate = new Inflater(); local
479 Inflater inflate = new Inflater(); local
492 Inflater inflate = new Inflater(true); local
540 Inflater inflate = new Inflater(); local
567 Inflater inflate = new Inflater(); local
594 Inflater inflate = new Inflater(); local
698 Inflater inflate = new Inflater(); local
712 Inflater inflate = new Inflater(); local
1093 Inflater inflate = new Inflater(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationListHelper.java 38 .inflate(R.layout.conversation_sync_disabled_tip_view, null);
43 .inflate(R.layout.conversation_outbox_tip_view, null);
49 .inflate(R.layout.conversation_photo_teaser_view, null);
54 .inflate(R.layout.conversation_long_press_to_select_tip_view, null);
58 .inflate(R.layout.nested_folder_teaser_view, null);
  /development/apps/SettingInjectorSample/src/com/example/android/injector/
MySettingActivity.java 37 View view = getLayoutInflater().inflate(R.layout.my_setting_activity, null);
  /frameworks/base/core/tests/coretests/src/com/android/internal/widget/
SizeAdaptiveLayoutTest.java 46 // inflate the layout
53 private void inflate(int resource){ method in class:SizeAdaptiveLayoutTest
54 mSizeAdaptiveLayout = (SizeAdaptiveLayout) mInflater.inflate(resource, null);
72 inflate(R.layout.size_adaptive);
80 inflate(R.layout.size_adaptive);
97 inflate(R.layout.size_adaptive);
114 inflate(R.layout.size_adaptive);
131 inflate(R.layout.size_adaptive);
150 inflate(R.layout.size_adaptive_text);
164 inflate(R.layout.size_adaptive_singleton)
    [all...]
  /external/chromium_org/third_party/skia/include/views/
SkViewInflate.h 25 as a view, otherwise assume root is that view, and just "inflate" it.
29 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
30 SkView* inflate(const char xml[], size_t len, SkView* root = NULL);
43 Do not call "inflate" on the view, just return it. This will
47 /** Base implementation calls view->inflate(dom, node). Subclasses may override this
  /external/skia/include/views/
SkViewInflate.h 25 as a view, otherwise assume root is that view, and just "inflate" it.
29 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
30 SkView* inflate(const char xml[], size_t len, SkView* root = NULL);
43 Do not call "inflate" on the view, just return it. This will
47 /** Base implementation calls view->inflate(dom, node). Subclasses may override this
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeAttachmentTile.java 23 public static ComposeAttachmentTile inflate(LayoutInflater inflater, ViewGroup parent) { method in class:ComposeAttachmentTile
24 ComposeAttachmentTile view = (ComposeAttachmentTile) inflater.inflate(
  /development/samples/HelloActivity/src/com/example/android/helloactivity/
HelloActivity.java 38 View view = getLayoutInflater().inflate(R.layout.hello_activity, null);
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketPerMessageDeflate.h 65 // Inflate the given frame.
71 bool inflate(WebSocketFrame&);
73 // Reset the internal buffer used by inflate.
74 // You must call this method between consecutive calls of the inflate method.
77 // Return the reason of the last failure in inflate or deflate.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
CustomView.java 13 inflate(context, R.layout.inner_merge, this); method
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestFrameLayoutLocale.java 30 return inflater.inflate(R.layout.frame_layout_locale, container, false);
BiDiTestFrameLayoutLtr.java 30 return inflater.inflate(R.layout.frame_layout_ltr, container, false);
BiDiTestFrameLayoutRtl.java 30 return inflater.inflate(R.layout.frame_layout_rtl, container, false);
BiDiTestGridLayoutLocale.java 30 return inflater.inflate(R.layout.grid_layout_locale, container, false);
BiDiTestGridLayoutLtr.java 30 return inflater.inflate(R.layout.grid_layout_ltr, container, false);
BiDiTestGridLayoutRtl.java 30 return inflater.inflate(R.layout.grid_layout_rtl, container, false);
BiDiTestLinearLayoutLocale.java 30 return inflater.inflate(R.layout.linear_layout_locale, container, false);
BiDiTestLinearLayoutLtr.java 30 return inflater.inflate(R.layout.linear_layout_ltr, container, false);
BiDiTestLinearLayoutRtl.java 30 return inflater.inflate(R.layout.linear_layout_rtl, container, false);
BiDiTestRelativeLayout2Locale.java 30 return inflater.inflate(R.layout.relative_layout_2_locale, container, false);
BiDiTestRelativeLayout2Ltr.java 30 return inflater.inflate(R.layout.relative_layout_2_ltr, container, false);
BiDiTestRelativeLayout2Rtl.java 30 return inflater.inflate(R.layout.relative_layout_2_rtl, container, false);
BiDiTestRelativeLayoutLtr.java 30 return inflater.inflate(R.layout.relative_layout_ltr, container, false);
BiDiTestRelativeLayoutRtl.java 30 return inflater.inflate(R.layout.relative_layout_rtl, container, false);
BiDiTestTableLayoutLocale.java 30 return inflater.inflate(R.layout.table_layout_locale, container, false);

Completed in 224 milliseconds

1 2 3 4 5 6 7 8 91011>>