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

1 2

  /prebuilts/go/darwin-x86/src/compress/flate/
inflate_test.go 26 inflated := make([]bytes.Buffer, 2)
29 io.Copy(&inflated[0], f)
31 io.Copy(&inflated[1], f)
35 if s != inflated[i].String() {
36 t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i], s)
  /prebuilts/go/linux-x86/src/compress/flate/
inflate_test.go 26 inflated := make([]bytes.Buffer, 2)
29 io.Copy(&inflated[0], f)
31 io.Copy(&inflated[1], f)
35 if s != inflated[i].String() {
36 t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i], s)
  /external/okhttp/okio/okio/src/test/java/okio/
InflaterSourceTest.java 34 Buffer inflated = inflate(deflated); local
35 assertEquals("God help us, we're in the hands of engineers.", inflated.readUtf8());
67 Buffer inflated = inflate(deflated); local
68 assertEquals(original, inflated.readUtf8());
74 Buffer inflated = inflate(deflated); local
75 assertEquals(original, inflated.readByteString());
80 Buffer inflated = new Buffer().writeUtf8(repeat('a', i)); local
84 while (source.read(inflated, Integer.MAX_VALUE) != -1) {
86 inflated.skip(i);
87 assertEquals("God help us, we're in the hands of engineers.", inflated.readUtf8())
    [all...]
DeflaterSinkTest.java 39 Buffer inflated = inflate(sink); local
40 assertEquals(original, inflated.readUtf8());
51 Buffer inflated = inflate(sink); local
52 assertEquals(original, inflated.readUtf8());
63 Buffer inflated = inflate(sink); local
64 assertEquals(original, inflated.readUtf8());
75 Buffer inflated = inflate(sink); local
76 assertEquals(original, inflated.readByteString());
103 Buffer inflated = inflate(sink); local
104 assertEquals(original, inflated.readUtf8())
    [all...]
GzipSinkTest.java 34 Buffer inflated = gunzip(sink); local
35 assertEquals(original, inflated.readUtf8());
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
ViewStubProxy.java 24 * the ViewStub is accessible. After inflation, the root View of the inflated layout
25 * will be available. If the inflated layout has data binding, the ViewDataBinding for the inflated
37 public void onInflate(ViewStub stub, View inflated) {
38 mRoot = inflated;
40 inflated, stub.getLayoutResource());
44 mOnInflateListener.onInflate(stub, inflated);
62 * Returns <code>true</code> if the ViewStub has replaced itself with the inflated layout
65 * @return <code>true</code> if the ViewStub has replaced itself with the inflated layout
73 * Returns the root View of the layout replacing the ViewStub once it has been inflated
    [all...]
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
SetupWizardItemsLayout.java 46 ItemGroup inflated = (ItemGroup) new ItemInflater(context).inflate(xml); local
47 mAdapter = new ItemAdapter(inflated);
GlifListLayout.java 84 final ItemGroup inflated = (ItemGroup) new ItemInflater(context).inflate(xml); local
85 setAdapter(new ItemAdapter(inflated));
  /frameworks/base/core/tests/coretests/src/android/view/
RemoteViewsTest.java 70 View inflated = clone.apply(mContext, mContainer); local
72 Drawable drawable = ((ImageView) inflated.findViewById(R.id.image)).getDrawable();
91 View inflated = clone.apply(mContext, mContainer); local
93 TextView textView = (TextView) inflated.findViewById(R.id.text);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
DataBindingUtilTest.java 41 View inflated = root.getChildAt(1); local
42 assertNull(DataBindingUtil.findBinding(inflated));
43 BasicBindingBinding innerBinding = DataBindingUtil.bind(inflated);
44 assertEquals(innerBinding, DataBindingUtil.findBinding(inflated));
  /external/jetty/src/java/org/eclipse/jetty/websocket/
DeflateFrameExtension.java 97 int inflated=_inflater.inflate(buf.array(),buf.putIndex(),buf.space()); local
98 if (inflated==0)
100 buf.setPutIndex(buf.putIndex()+inflated);
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 198 ByteArrayOutputStream inflated = new ByteArrayOutputStream(); local
202 inflated.write(buffer, 0, nRead);
205 inflated.flush();
206 result = inflated.toByteArray();
208 Log.v(TAG, "Inflated " + compressedData.length + " bytes to " + result.length);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationsQuickSettingsContainer.java 124 public void onInflate(ViewStub stub, View inflated) {
126 mUserSwitcher = inflated;
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherClings.java 97 View inflated = mInflater.inflate(R.layout.migration_cling, root); local
98 inflated.findViewById(R.id.cling_dismiss_migration_copy_apps).setOnClickListener(this);
99 inflated.findViewById(R.id.cling_dismiss_migration_use_default).setOnClickListener(this);
  /frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
GlifRecyclerLayout.java 81 final ItemGroup inflated = (ItemGroup) new ItemInflater(context).inflate(xml); local
82 RecyclerItemAdapter adapter = new RecyclerItemAdapter(inflated);
SetupWizardRecyclerLayout.java 84 final ItemGroup inflated = (ItemGroup) new ItemInflater(context).inflate(xml); local
85 mAdapter = new RecyclerItemAdapter(inflated);
  /packages/apps/Settings/src/com/android/settings/
PreviewPagerAdapter.java 85 public void onInflate(ViewStub stub, View inflated) {
86 inflated.setVisibility(stub.getVisibility());
132 // already been inflated.
144 // Inflate immediately if the stub has not yet been inflated.
  /frameworks/base/core/java/android/view/
ViewStub.java 36 * is inflated. The ViewStub then replaces itself in its parent with the inflated View or Views.
40 * The inflated View is added to the ViewStub's parent with the ViewStub's layout
55 * id "subTree," specified by the inflatedId property. The inflated View is finally
62 * View inflated = stub.inflate();
65 * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View
66 * and the inflated View is returned. This lets applications get a reference to the
67 * inflated View without executing an extra findViewById().
90 * @param layoutResource The reference to a layout resource that will be inflated.
121 * Returns the id taken by the inflated view. If the inflated id i
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ViewStubCompat.java 67 * Returns the id taken by the inflated view. If the inflated id is
68 * {@link View#NO_ID}, the inflated view keeps its original id.
70 * @return A positive integer used to identify the inflated view or
71 * {@link #NO_ID} if the inflated view should keep its id.
81 * Defines the id taken by the inflated view. If the inflated id is
82 * {@link View#NO_ID}, the inflated view keeps its original id.
84 * @param inflatedId A positive integer used to identify the inflated view or
85 * {@link #NO_ID} if the inflated view should keep its id
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java 861 public void onInflate(ViewStub stub, View inflated) {
862 mSettingsIconRow = (NotificationSettingsIconRow) inflated;
870 public void onInflate(ViewStub stub, View inflated) {
871 mGuts = (NotificationGuts) inflated;
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewStubTest.java 158 assertEquals("Default ViewStub inflated ID is View.NO_ID",
162 assertEquals("Set ViewStub inflated ID to package resource ID",
166 assertEquals("Set ViewStub inflated ID to View.NO_ID",
215 public void onInflate(ViewStub stub, View inflated) {
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
ListenerBindingObject.java 227 public void onInflate(ViewStub stub, View inflated) {
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-websocket/8.1.14.v20131031/
jetty-websocket-8.1.14.v20131031.jar 
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 

Completed in 1072 milliseconds

1 2