Searched refs:dimension (Results 1 - 11 of 11) sorted by relevance

/frameworks/rs/api/
H A Drs_for_each.spec64 field: uint32_t xStart, "Starting index in the X dimension."
65 field: uint32_t xEnd, "Ending index (exclusive) in the X dimension."
66 field: uint32_t yStart, "Starting index in the Y dimension."
67 field: uint32_t yEnd, "Ending index (exclusive) in the Y dimension."
68 field: uint32_t zStart, "Starting index in the Z dimension."
69 field: uint32_t zEnd, "Ending index (exclusive) in the Z dimension."
70 field: uint32_t arrayStart, "Starting index in the Array0 dimension."
71 field: uint32_t arrayEnd, "Ending index (exclusive) in the Array0 dimension."
72 field: uint32_t array1Start, "Starting index in the Array1 dimension."
73 field: uint32_t array1End, "Ending index (exclusive) in the Array1 dimension
[all...]
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp216 if (v->dimension == 0) {
219 if (v->dimension == 1) {
228 if (v->dimension == 0) {
231 if (v->dimension == 1) {
240 if (v->dimension == 0) {
243 if (v->dimension == 1) {
276 decl->returnTypeDimension = method->type.dimension;
283 arg->type.dimension));
308 v->dimension = arg->type.dimension;
[all...]
H A Dgenerate_java_rpc.cpp180 v->dimension = arg->type.dimension;
188 if (arg->type.dimension == 0) {
191 else if (arg->type.dimension == 1) {
222 method->type.dimension);
607 if (v->dimension == 0) {
610 if (v->dimension == 1) {
620 if (v->dimension == 0) {
623 if (v->dimension == 1) {
654 "_result", method->type.dimension));
[all...]
H A Daidl_language.h31 int dimension; member in struct:type_type
H A Daidl_language_y.y322 $$.type.dimension = 0;
327 $$.type.dimension = count_brackets($2.buffer.data);
332 $$.type.dimension = 0;
H A DAST.cpp132 dimension(0)
139 dimension(0)
146 dimension(d)
164 for (int i=0; i<this->dimension; i++) {
H A DAST.h71 int dimension; member in struct:Variable
75 Variable(Type* type, const string& name, int dimension);
H A Daidl.cpp441 if (m->type.dimension > 0 && !returnType->CanBeArray()) {
448 if (m->type.dimension > 1) {
496 && (arg->type.dimension != 0 || t->CanBeOutParameter())) {
507 && arg->type.dimension == 0) {
516 if (arg->type.dimension > 0 && !t->CanBeArray()) {
525 if (arg->type.dimension > 1) {
/frameworks/base/core/tests/coretests/src/android/view/
H A DZeroSizedTest.java28 * Builds the drawing cache of Views of various dimension. The assumption is that
29 * a View with a 0-sized dimension (width or height) will always have a null
47 mWithDimension = activity.findViewById(R.id.dimension);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DSceneManager.java86 final int dimension = 4;
88 int arraySize = dimension * dimension * bytesPerPixel;
92 b.setX(dimension).setY(dimension);
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DColorCutQuantizer.java35 * The color space is represented as a 3-dimensional cube with each dimension being an RGB
292 * Split this color box at the mid-point along it's longest dimension
301 // find median along the longest dimension
314 * @return the dimension which this box is largest in
333 * This is calculated by finding the longest color dimension, and then sorting the
334 * sub-array based on that dimension value in each color. The colors are then iterated over
335 * until a color is found with at least the midpoint of the whole box's dimension midpoint.
344 // We need to sort the colors in this box based on the longest color dimension.
346 // it's most significant is the desired dimension
401 private static void modifySignificantOctet(final int[] a, final int dimension, argument
[all...]

Completed in 1082 milliseconds