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

1 2 3 4 5 6 7 8 91011>>

  /development/apps/SettingInjectorSample/src/com/example/android/injector/
MySettingActivity.java 37 View view = getLayoutInflater().inflate(R.layout.my_setting_activity, null);
  /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
DeflaterSinkTest.java 39 OkBuffer inflated = inflate(sink);
51 OkBuffer inflated = inflate(sink);
63 OkBuffer inflated = inflate(sink);
75 OkBuffer inflated = inflate(sink);
87 assertEquals(repeat('a', byteCount), inflate(buffer).readUtf8(byteCount));
113 * Uses streaming decompression to inflate {@code deflated}. The input must
116 private OkBuffer inflate(OkBuffer deflated) throws IOException { method in class:DeflaterSinkTest
  /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
  /developers/build/prebuilts/gradle/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
CustomFragment.java 30 return inflater.inflate(R.layout.custom_fragment, container, false);
  /developers/samples/android/wearable/wear/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
CustomFragment.java 30 return inflater.inflate(R.layout.custom_fragment, container, false);
  /development/samples/HelloActivity/src/com/example/android/helloactivity/
HelloActivity.java 38 View view = getLayoutInflater().inflate(R.layout.hello_activity, null);
  /development/samples/browseable/GridViewPager/Wearable/src/com.example.android.wearable.gridviewpager/
CustomFragment.java 30 return inflater.inflate(R.layout.custom_fragment, container, false);
  /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/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
AddressWidgetUiComponentProvider.java 56 TextView textView = (TextView) mInflater.inflate(R.layout.address_textview, null, false);
68 return (EditText) mInflater.inflate(R.layout.address_edittext, null, false);
78 return (Spinner) mInflater.inflate(R.layout.address_spinner, null, false);
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WidgetDataFragment.java 17 return inflater.inflate(R.layout.fragment, null);
  /development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/
ImageFragment.java 31 View view = inflater.inflate(R.layout.image_fragment, container, false);
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 213 View view = mLayoutInflater.inflate(
218 view = mLayoutInflater.inflate(-1, null);
230 view = mLayoutInflater.inflate(R.layout.inflater_layout,
237 View view = mLayoutInflater.inflate(
242 view = mLayoutInflater.inflate(-1, null, false);
255 view = mLayoutInflater.inflate(R.layout.inflater_layout,
261 view = mLayoutInflater.inflate(R.layout.inflater_layout,
270 View view = mLayoutInflater.inflate(parser, null);
274 view = mLayoutInflater.inflate(null, null);
288 view = mLayoutInflater.inflate(parser, mLayout)
    [all...]
  /developers/build/prebuilts/gradle/DoneBar/Application/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);
  /developers/samples/android/ui/actionbar/DoneBar/Application/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/chromium_org/remoting/android/java/src/org/chromium/chromoting/
AccountsAdapter.java 29 View view = mInflater.inflate(R.layout.account_selected, parent, false);
38 TextView view = (TextView) mInflater.inflate(R.layout.account_dropdown, 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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
NameValueBlockReader.java 61 @Override public int inflate(byte[] buffer, int offset, int count)
63 int result = super.inflate(buffer, offset, count);
66 result = super.inflate(buffer, offset, count);
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test6DetailFragment.java 45 View rootView = inflater.inflate(R.layout.test6_detail_fragment, container, false);
  /developers/build/prebuilts/gradle/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
SettingsFragment.java 37 View view = inflater.inflate(R.layout.setting_layout, container, false);
  /developers/build/prebuilts/gradle/PdfRendererBasic/Application/src/main/java/com/example/android/pdfrendererbasic/
MainActivity.java 43 getMenuInflater().inflate(R.menu.main, menu);
  /developers/samples/android/ui/graphics/PdfRendererBasic/Application/src/main/java/com/example/android/pdfrendererbasic/
MainActivity.java 43 getMenuInflater().inflate(R.menu.main, menu);

Completed in 1864 milliseconds

1 2 3 4 5 6 7 8 91011>>