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

1 2 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
InflaterTest.java 45 Inflater inflate = new Inflater(); local
46 inflate.setInput(byteArray);
47 inflate.end();
51 inflate.reset();
52 inflate.setInput(byteArray);
68 Inflater inflate = new Inflater(false); local
71 while (!(inflate.finished())) {
72 if (inflate.needsInput()) {
73 inflate.setInput(outPutBuff1);
76 inflate.inflate(outPutInf)
119 Inflater inflate = new Inflater(); local
148 Inflater inflate = new Inflater(); local
205 Inflater inflate = new Inflater(); local
259 Inflater inflate = new Inflater(); local
362 Inflater inflate = new Inflater(); local
478 Inflater inflate = new Inflater(); local
491 Inflater inflate = new Inflater(true); local
539 Inflater inflate = new Inflater(); local
566 Inflater inflate = new Inflater(); local
593 Inflater inflate = new Inflater(); local
697 Inflater inflate = new Inflater(); local
711 Inflater inflate = new Inflater(); local
1092 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/okhttp/okio/src/test/java/okio/
InflaterSourceTest.java 30 @Test public void inflate() throws Exception { method in class:InflaterSourceTest
33 OkBuffer inflated = inflate(deflated);
41 inflate(deflated);
66 OkBuffer inflated = inflate(deflated);
73 OkBuffer inflated = inflate(deflated);
95 private OkBuffer inflate(OkBuffer deflated) throws IOException { method in class:InflaterSourceTest
  /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
  /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 1216 milliseconds

1 2 3 4 5 6 7 8 91011>>