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

  /external/okhttp/okio/src/test/java/okio/
DeflaterSinkTest.java 39 OkBuffer inflated = inflate(sink); local
40 assertEquals(original, inflated.readUtf8(inflated.size()));
51 OkBuffer inflated = inflate(sink); local
52 assertEquals(original, inflated.readUtf8(inflated.size()));
63 OkBuffer inflated = inflate(sink); local
64 assertEquals(original, inflated.readUtf8(inflated.size()));
75 OkBuffer inflated = inflate(sink) local
    [all...]
InflaterSourceTest.java 33 OkBuffer inflated = inflate(deflated); local
34 assertEquals("God help us, we're in the hands of engineers.", readUtf8(inflated));
66 OkBuffer inflated = inflate(deflated); local
67 assertEquals(original, readUtf8(inflated));
73 OkBuffer inflated = inflate(deflated); local
74 assertEquals(original, inflated.readByteString(inflated.size()));
94 /** Returns a new buffer containing the inflated contents of {@code deflated}. */
  /external/chromium_org/cc/layers/
layer_utils.cc 56 // To compute the inflated bounds for a layer, we start by taking its bounds
114 gfx::BoxF inflated; local
116 box, &inflated))
118 box = inflated;
122 gfx::BoxF inflated; local
124 box, &inflated))
126 box = inflated;
  /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);
  /external/chromium_org/net/websockets/
websocket_deflate_stream.cc 335 scoped_ptr<WebSocketFrame> inflated(
344 inflated->header.CopyFrom(frame->header);
345 inflated->header.opcode = current_reading_opcode_;
346 inflated->header.final = is_final;
347 inflated->header.reserved1 = false;
348 inflated->data = data;
349 inflated->header.payload_length = data->size();
350 DVLOG(3) << "Inflated frame: opcode=" << inflated->header.opcode
351 << " final=" << inflated->header.fina
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationsQuickSettingsContainer.java 95 public void onInflate(ViewStub stub, View inflated) {
97 mUserSwitcher = inflated;
  /external/chromium_org/chrome/test/ispy/common/
image_tools.py 202 inflated = Image.new('RGBA', image.size)
235 inflated.putdata(new_dataset)
236 return 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/base/core/java/android/view/
ViewStub.java 34 * is inflated. The ViewStub then replaces itself in its parent with the inflated View or Views.
38 * The inflated View is added to the ViewStub's parent with the ViewStub's layout
53 * id "subTree," specified by the inflatedId property. The inflated View is finally
60 * View inflated = stub.inflate();
63 * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View
64 * and the inflated View is returned. This lets applications get a reference to the
65 * inflated View without executing an extra findViewById().
88 * @param layoutResource The reference to a layout resource that will be inflated.
128 * 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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java 186 public void onInflate(ViewStub stub, View inflated) {
187 mGuts = (NotificationGuts) inflated;
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketPerMessageDeflateTest.cpp 96 std::string inflated; local
132 inflated += std::string(frame.payload, frame.payloadLength);
134 EXPECT_EQ(payload, inflated);
  /cts/tests/tests/view/src/android/view/cts/
ViewStubTest.java 214 public void onInflate(ViewStub stub, View inflated) {
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_util.js 197 * @return {Rect} A rectangle inflated by (dx, dy), same center.

Completed in 1153 milliseconds