/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
D | DrawRectFilter.java | 92 Quad box = (Quad)boxFrame.getObjectValue(); in process() local 93 box = box.scaled(2.0f).translated(-1.0f, -1.0f); in process() 100 renderBox(box); in process() 109 private void renderBox(Quad box) { in renderBox() argument 114 float[] vertexValues = { box.p0.x, box.p0.y, in renderBox() 115 box.p1.x, box.p1.y, in renderBox() 116 box.p3.x, box.p3.y, in renderBox() 117 box.p2.x, box.p2.y }; in renderBox()
|
D | DrawOverlayFilter.java | 68 Quad box = (Quad)boxFrame.getObjectValue(); in process() local 69 box = box.translated(1.0f, 1.0f).scaled(2.0f); in process() 71 mProgram.setTargetRegion(box); in process()
|
D | CropFilter.java | 115 Quad box = (Quad)boxFrame.getObjectValue(); in process() local 128 shaderProgram.setSourceRegion(box); in process()
|
/frameworks/support/wear/src/androidTest/java/androidx/wear/widget/ |
D | BoxInsetLayoutTest.java | 83 View box = mActivityRule.getActivity().findViewById(R.id.box); in testCase1() 84 mIdViewMap.put(R.id.box, box); in testCase1() 89 View box = customRunnable.mIdViewMap.get(R.id.box); in testCase1() local 91 View boxParent = (View) box.getParent(); in testCase1() 133 View box = mActivityRule.getActivity().findViewById(R.id.box); in testCase2() 138 mIdViewMap.put(R.id.box, box); in testCase2() 148 View box = customRunnable.mIdViewMap.get(R.id.box); in testCase2() local 155 View boxParent = (View) box.getParent(); in testCase2() 243 View box = mActivityRule.getActivity().findViewById(R.id.box); in testCase3() 248 mIdViewMap.put(R.id.box, box); in testCase3() [all …]
|
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/processor/ |
D | CustomConverterProcessorTest.kt | 63 singleClass(createConverter(TypeName.SHORT.box(), TypeName.CHAR.box())) { converter, _ -> in <lambda>() 64 assertThat(converter?.fromTypeName, `is`(TypeName.SHORT.box())) in <lambda>() 65 assertThat(converter?.toTypeName, `is`(TypeName.CHAR.box())) in <lambda>() 71 singleClass(createConverter(TypeName.SHORT, TypeName.CHAR.box())) { converter, _ -> in <lambda>() 73 assertThat(converter?.toTypeName, `is`(TypeName.CHAR.box())) in <lambda>() 79 singleClass(createConverter(TypeName.INT.box(), TypeName.DOUBLE)) { converter, _ -> in <lambda>() 80 assertThat(converter?.fromTypeName, `is`(TypeName.INT.box())) in <lambda>() 225 createConverter(TypeName.SHORT.box(), TypeName.CHAR.box(), duplicate = true) in <lambda>() 227 assertThat(converter?.fromTypeName, `is`(TypeName.SHORT.box())) in <lambda>() 228 assertThat(converter?.toTypeName, `is`(TypeName.CHAR.box())) in <lambda>()
|
D | FieldProcessorTest.kt | 85 private fun TypeKind.box(): String { in <lambda>() method 105 private fun TypeKind.box(invocation: TestInvocation): TypeMirror { in <lambda>() method 106 return invocation.processingEnv.elementUtils.getTypeElement(box()).asType() in <lambda>() 130 type = primitive.box(invocation), in <lambda>() 219 primitive.box(invocation)), in <lambda>() 237 type = TypeKind.INT.box(invocation), in <lambda>()
|
/frameworks/base/libs/hwui/tests/common/scenes/ |
D | ListViewAnimation.cpp | 99 auto box = rand() % 2 ? filledBox : strokedBox; in createListItem() local 100 canvas.drawBitmap(*box, itemWidth - dp(10) - box->width(), dp(10), nullptr); in createListItem()
|
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/ |
D | InsertionMethod.kt | 50 ArrayTypeName.of(TypeName.LONG.box())), // return Long[] 52 ParameterizedTypeName.get(List::class.typeName(), TypeName.LONG.box()))
|
D | Field.kt | 89 if (typeName == TypeName.BOOLEAN || typeName == TypeName.BOOLEAN.box()) { in <lambda>() 103 if (typeName == TypeName.BOOLEAN || typeName == TypeName.BOOLEAN.box()) { in <lambda>()
|
D | RelationCollector.kt | 257 SQLTypeAffinity.INTEGER -> TypeName.LONG.box() in <lambda>() 258 SQLTypeAffinity.REAL -> TypeName.DOUBLE.box() in <lambda>()
|
/frameworks/base/core/jni/android/graphics/pdf/ |
D | PdfEditor.cpp | 241 PageBox pageBox, jobject box) { in nativeSetPageBox() argument 251 const int left = env->GetIntField(box, gRectClassInfo.left); in nativeSetPageBox() 252 const int top = env->GetIntField(box, gRectClassInfo.top); in nativeSetPageBox() 253 const int right = env->GetIntField(box, gRectClassInfo.right); in nativeSetPageBox() 254 const int bottom = env->GetIntField(box, gRectClassInfo.bottom); in nativeSetPageBox()
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/ |
D | ModelMethod.java | 156 return (class1.box().equals(class2.box())); in isBoxingConversion()
|
D | InjectedClass.java | 153 public ModelClass box() { in box() method in InjectedClass
|
D | ModelClass.java | 224 public abstract ModelClass box(); in box() method in ModelClass
|
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/ |
D | ScoAudioTest.java | 211 CheckBox box = findViewById(R.id.useSecondAudioManager); 212 if (box.isChecked()) { 216 box = findViewById(R.id.useVirtualCallCheckBox); 217 useVirtualCall = box.isChecked();
|
/frameworks/base/core/java/android/gesture/ |
D | GestureOverlayView.java | 649 final OrientedBoundingBox box = in touchMove() local 652 float angle = Math.abs(box.orientation); in touchMove() 657 if (box.squareness > mGestureStrokeSquarenessTreshold || in touchMove()
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/ |
D | BracketExpr.java | 168 ModelClass boxed = value.getResolvedType().box(); in generateInverse()
|
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/ |
D | JavaClass.java | 171 public JavaClass box() { in box() method in JavaClass
|
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/solver/ |
D | TypeAdapterStoreTest.kt | 92 `is`(TypeName.BOOLEAN.box())) in <lambda>() 94 `is`(TypeName.INT.box())) in <lambda>()
|
/frameworks/rs/script_api/ |
D | rs_graphics.spec | 654 summary: Get the bounding box for a text string 656 Returns the bounding box of the text relative to (0, 0) 685 summary: Compute a bounding box 687 Computes an axis aligned bounding box of a mesh object
|
D | rs_matrix.spec | 264 Constructs a frustum projection matrix, transforming the box identified by 314 Constructs an orthographic projection matrix, transforming the box identified by the
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiVendorHal.java | 1178 AnswerBox box = new AnswerBox(); in getRttCapabilities() local 1193 box.value = ans; in getRttCapabilities() 1195 return box.value; in getRttCapabilities() 1735 AnswerBox box = new AnswerBox(); in getApfCapabilities() 1738 box.value = new ApfCapabilities( in getApfCapabilities() 1743 return box.value; in getApfCapabilities()
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/ |
D | AnnotationClass.java | 280 public AnnotationClass box() { in box() method in AnnotationClass
|
/frameworks/rs/script_api/include/ |
D | rs_graphics.rsh | 990 * rsgMeasureText: Get the bounding box for a text string 994 * Returns the bounding box of the text relative to (0, 0) 1020 * rsgMeshComputeBoundingBox: Compute a bounding box 1024 * Computes an axis aligned bounding box of a mesh object
|
D | rs_matrix.rsh | 270 * Constructs a frustum projection matrix, transforming the box identified by 331 * Constructs an orthographic projection matrix, transforming the box identified by the
|