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

  /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/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...]
  /libcore/luni/src/main/java/java/util/zip/
InflaterOutputStream.java 150 int inflated; local
151 while ((inflated = inf.inflate(buf)) > 0) {
152 out.write(buf, 0, inflated);
  /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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationsQuickSettingsContainer.java 98 public void onInflate(ViewStub stub, View inflated) {
100 mUserSwitcher = inflated;
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 186 ByteArrayOutputStream inflated = new ByteArrayOutputStream(); local
190 inflated.write(buffer, 0, nRead);
193 inflated.flush();
194 result = inflated.toByteArray();
196 Log.v(TAG, "Inflated " + compressedData.length + " bytes to " + result.length);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherClings.java 100 View inflated = mInflater.inflate(R.layout.migration_cling, root); local
101 inflated.findViewById(R.id.cling_dismiss_migration_copy_apps).setOnClickListener(this);
102 inflated.findViewById(R.id.cling_dismiss_migration_use_default).setOnClickListener(this);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java 359 public void onInflate(ViewStub stub, View inflated) {
360 mGuts = (NotificationGuts) inflated;
370 public void onInflate(ViewStub stub, View inflated) {
371 mExpandButtonContainer = inflated;
372 mExpandButton = inflated.findViewById(R.id.notification_expand_button);
373 mExpandButtonDivider = inflated.findViewById(R.id.notification_expand_divider);
381 public void onInflate(ViewStub stub, View inflated) {
382 mChildrenContainer = (NotificationChildrenContainer) inflated;
    [all...]
  /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/internal/widget/
ViewStubCompat.java 68 * Returns the id taken by the inflated view. If the inflated id is
69 * {@link View#NO_ID}, the inflated view keeps its original id.
71 * @return A positive integer used to identify the inflated view or
72 * {@link #NO_ID} if the inflated view should keep its id.
82 * Defines the id taken by the inflated view. If the inflated id is
83 * {@link View#NO_ID}, the inflated view keeps its original id.
85 * @param inflatedId A positive integer used to identify the inflated view or
86 * {@link #NO_ID} if the inflated view should keep its id
    [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 226 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 

Completed in 1122 milliseconds