/frameworks/base/tools/aidl/ |
D | generate_java_binder.cpp | 216 if (v->dimension == 0) { in generate_write_to_parcel() 219 if (v->dimension == 1) { in generate_write_to_parcel() 228 if (v->dimension == 0) { in generate_create_from_parcel() 231 if (v->dimension == 1) { in generate_create_from_parcel() 240 if (v->dimension == 0) { in generate_read_from_parcel() 243 if (v->dimension == 1) { in generate_read_from_parcel() 276 decl->returnTypeDimension = method->type.dimension; in generate_method() 283 arg->type.dimension)); in generate_method() 308 v->dimension = arg->type.dimension; in generate_method() 316 if (arg->type.dimension == 0) { in generate_method() [all …]
|
D | generate_java_rpc.cpp | 180 v->dimension = arg->type.dimension; in AddMethod() 188 if (arg->type.dimension == 0) { in AddMethod() 191 else if (arg->type.dimension == 1) { in AddMethod() 222 method->type.dimension); in AddMethod() 607 if (v->dimension == 0) { in generate_create_from_data() 610 if (v->dimension == 1) { in generate_create_from_data() 620 if (v->dimension == 0) { in generate_write_to_data() 623 if (v->dimension == 1) { in generate_write_to_data() 654 "_result", method->type.dimension)); in generate_results_method() 661 arg->type.dimension)); in generate_results_method() [all …]
|
D | aidl_language_y.y | 322 $$.type.dimension = 0; 327 $$.type.dimension = count_brackets($2.buffer.data); 332 $$.type.dimension = 0;
|
D | aidl_language.h | 31 int dimension; member
|
D | AST.cpp | 132 dimension(0) in Variable() 139 dimension(0) in Variable() 146 dimension(d) in Variable() 164 for (int i=0; i<this->dimension; i++) { in WriteDeclaration()
|
D | aidl.cpp | 440 if (m->type.dimension > 0 && !returnType->CanBeArray()) { 447 if (m->type.dimension > 1) { 495 && (arg->type.dimension != 0 || t->CanBeOutParameter())) { 506 && arg->type.dimension == 0) { 515 if (arg->type.dimension > 0 && !t->CanBeArray()) { 524 if (arg->type.dimension > 1) {
|
D | AST.h | 71 int dimension; member 75 Variable(Type* type, const string& name, int dimension);
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | layout-resource.jd | 39 android:layout_height=["<em>dimension</em>" | "fill_parent" | "wrap_content"] 40 android:layout_width=["<em>dimension</em>" | "fill_parent" | "wrap_content"] 44 android:layout_height=["<em>dimension</em>" | "fill_parent" | "wrap_content"] 45 android:layout_width=["<em>dimension</em>" | "fill_parent" | "wrap_content"] 85 dimension value (or <a 86 href="more-resources.html#Dimension">dimension resource</a>) or a keyword ({@code "fill_parent"} 91 dimension value (or <a 92 href="more-resources.html#Dimension">dimension resource</a>) or a keyword ({@code "fill_parent"} 117 a dimension value (or <a 118 href="more-resources.html#Dimension">dimension resource</a>) or a keyword ({@code "fill_parent"} [all …]
|
D | drawable-resource.jd | 310 typically assign this type of image as the background of a View that has at least one dimension set 480 android:top="<em>dimension</em>" 481 android:right="<em>dimension</em>" 482 android:bottom="<em>dimension</em>" 483 android:left="<em>dimension</em>" /> 930 android:top="<em>dimension</em>" 931 android:right="<em>dimension</em>" 932 android:bottom="<em>dimension</em>" 933 android:left="<em>dimension</em>" /> 1055 android:insetTop="<i>dimension</i>" [all …]
|
D | more-resources.jd | 14 <dd>XML resource that carries a dimension value (with a unit of measure).</dd> 214 <p>A dimension value defined in XML. A dimension 244 <p class="note"><strong>Note:</strong> A dimension is a simple resource that is referenced 246 such, you can combine dimension resources with other simple resources in the one XML file, 269 ><em>dimension</em></dimen> 283 …<dd>A dimension, represented by a float, followed by a unit of measurement (dp, sp, pt, px, mm, in… 288 <dd><em>String</em>. A name for the dimension. This will be used as the resource ID. 308 <p>This application code retrieves a dimension:</p>
|
D | providing-resources.jd | 163 href="more-resources.html#Dimension">dimension values</a>.</li> 369 <p>The fundamental size of a screen, as indicated by the shortest dimension of the available 374 <p>For example, if your layout requires that its smallest dimension of screen area be at 376 res/layout-sw600dp/}. The system will use these resources only when the smallest dimension of 384 should be the actual smallest dimension <em>required by your layout</em> (usually, this value is the 772 <p>The larger dimension must be specified first. <strong>This configuration is deprecated
|
/frameworks/support/v7/palette/src/android/support/v7/graphics/ |
D | ColorCutQuantizer.java | 361 int midPoint(int dimension) { in midPoint() argument 362 switch (dimension) { in midPoint() 380 private void modifySignificantOctet(final int dimension, int lowerIndex, int upperIndex) { in modifySignificantOctet() argument 381 switch (dimension) { in modifySignificantOctet()
|
/frameworks/compile/slang/tests/F_float3_v13/ |
D | stderr.txt.expect | 1 float3_v13.rs:9:10: error: structs containing vectors of dimension 3 cannot be exported at this API…
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
D | SceneManager.java | 86 final int dimension = 4; in getDefault() local 88 int arraySize = dimension * dimension * bytesPerPixel; in getDefault() 92 b.setX(dimension).setY(dimension); in getDefault()
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
D | qpisf_2s.tab | 51 * codebook vector dimension number of vectors * 1022 * codebook vector dimension number of vectors *
|
D | qisf_ns.tab | 47 * codebook vector dimension number of vectors *
|
/frameworks/rs/scriptc/ |
D | rs_allocation.rsh | 38 * Query the dimension of an allocation. 40 * @return uint32_t The X dimension of the allocation. 46 * Query the dimension of an allocation. 48 * @return uint32_t The Y dimension of the allocation. 54 * Query the dimension of an allocation. 56 * @return uint32_t The Z dimension of the allocation.
|
/frameworks/base/core/tests/coretests/src/android/view/ |
D | ZeroSizedTest.java | 47 mWithDimension = activity.findViewById(R.id.dimension); in setUp()
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | how-android-draws.jd | 40 pushes dimension specifications down the tree 89 dimension, it can specify one of:</p> 114 used by a parent to determine the desired dimension
|
/frameworks/base/docs/html/distribute/analyze/ |
D | measure.jd | 144 use case might be using a user-scoped custom dimension to capture the 147 An example of a hit-level custom dimension could be capturing landscape or 157 A specific custom dimension that may be of interest to your business is the
|
/frameworks/base/docs/html/training/improving-layouts/ |
D | loading-ondemand.jd | 42 <p>{@link android.view.ViewStub} is a lightweight view with no dimension and doesn’t draw anything
|
/frameworks/base/docs/html/tools/building/ |
D | plugin-for-gradle.jd | 363 <p>Some projects have complex combinations of features along more than one dimension, but they 425 dimension. For example, to generate the <em>arm-demo-release</em> build variant, the build system 430 <li><code>src/demo/</code> (flavor - app type dimension)</li> 431 <li><code>src/arm/</code> (flavor - ABI dimension)</li>
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | supports-screens-element.jd | 132 <dd>Specifies the minimum smallestWidth required. The smallestWidth is the shortest dimension of 141 the smallestWidth because they are the shortest dimension of the screen's available space.</p>
|
/frameworks/base/docs/html/tools/help/ |
D | android.jd | 130 tool scans for a matching skin by name or dimension in the <code>skins/</code> directory of
|
/frameworks/base/docs/html/distribute/googleplay/ |
D | developer-console.jd | 580 installation data for each dimension on timeline charts. 587 on data inside a dimension by adding specific points to the timeline.
|