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

1 2

  /external/eigen/unsupported/test/
cxx11_tensor_inflation.cpp 50 Tensor<float, 4, DataLayout> inflated; local
51 inflated = tensor.inflate(strides);
53 VERIFY_IS_EQUAL(inflated.dimension(0), 3);
54 VERIFY_IS_EQUAL(inflated.dimension(1), 9);
55 VERIFY_IS_EQUAL(inflated.dimension(2), 9);
56 VERIFY_IS_EQUAL(inflated.dimension(3), 19);
66 VERIFY_IS_EQUAL(inflated(i,j,k,l),
69 VERIFY_IS_EQUAL(0, inflated(i,j,k,l));
  /prebuilts/go/darwin-x86/src/compress/flate/
inflate_test.go 28 inflated := make([]bytes.Buffer, 2)
31 io.Copy(&inflated[0], f)
33 io.Copy(&inflated[1], f)
37 if s != inflated[i].String() {
38 t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i], s)
84 inflated := make([]bytes.Buffer, len(ss))
87 for i := range inflated {
89 io.Copy(&inflated[i], f)
94 if s != inflated[i].String()
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
inflate_test.go 28 inflated := make([]bytes.Buffer, 2)
31 io.Copy(&inflated[0], f)
33 io.Copy(&inflated[1], f)
37 if s != inflated[i].String() {
38 t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i], s)
84 inflated := make([]bytes.Buffer, len(ss))
87 for i := range inflated {
89 io.Copy(&inflated[i], f)
94 if s != inflated[i].String()
    [all...]
  /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/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));
  /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/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
ListMixin.java 69 final ItemGroup inflated = local
71 setAdapter(new ItemAdapter(inflated));
  /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/template/
RecyclerMixin.java 110 final ItemHierarchy inflated = new ItemInflater(context).inflate(entries); local
111 final RecyclerItemAdapter adapter = new RecyclerItemAdapter(inflated);
137 // view, and call this after the template is inflated,
  /cts/tests/tests/view/src/android/view/cts/
ViewStubTest.java 113 // id attribute defined on the inflated view
164 final View inflated = viewStub.inflate(); local
165 verify(listener, times(1)).onInflate(viewStub, inflated);
180 assertEquals("Default ViewStub inflated ID is View.NO_ID",
184 assertEquals("Set ViewStub inflated ID to package resource ID",
188 assertEquals("Set ViewStub inflated ID to View.NO_ID",
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationsQuickSettingsContainer.java 146 public void onInflate(ViewStub stub, View inflated) {
148 mUserSwitcher = inflated;
StatusBar.java     [all...]
  /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/base/core/tests/coretests/src/android/widget/
RemoteViewsTest.java 81 View inflated = clone.apply(mContext, mContainer); local
83 Drawable drawable = ((ImageView) inflated.findViewById(R.id.image)).getDrawable();
102 View inflated = clone.apply(mContext, mContainer); local
104 TextView textView = (TextView) inflated.findViewById(R.id.text);
207 // This will cause the view to be inflated
242 // This will cause the view to be inflated
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ViewStubCompat.java 73 * Returns the id taken by the inflated view. If the inflated id is
74 * {@link View#NO_ID}, the inflated view keeps its original id.
76 * @return A positive integer used to identify the inflated view or
77 * {@link #NO_ID} if the inflated view should keep its id.
87 * Defines the id taken by the inflated view. If the inflated id is
88 * {@link View#NO_ID}, the inflated view keeps its original id.
90 * @param inflatedId A positive integer used to identify the inflated view or
91 * {@link #NO_ID} if the inflated view should keep its id
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
ListenerBindingObject.java 227 public void onInflate(ViewStub stub, View inflated) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java     [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-websocket/8.1.14.v20131031/
jetty-websocket-8.1.14.v20131031.jar 
  /prebuilts/tools/common/m2/repository/com/koushikdutta/async/androidasync/2.1.3/
androidasync-2.1.3.jar 
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 

Completed in 818 milliseconds

1 2