Home
last modified time | relevance | path

Searched refs:props (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/base/libs/hwui/
DDamageAccumulator.cpp132 static inline void mapRect(const RenderProperties& props, const SkRect& in, SkRect* out) { in mapRect() argument
134 const SkMatrix* transform = props.getTransformMatrix(); in mapRect()
139 temp.offset(props.getLeft(), props.getTop()); in mapRect()
183 const RenderProperties& props = frame->renderNode->properties(); in applyRenderNodeTransform() local
184 if (props.getAlpha() <= 0) { in applyRenderNodeTransform()
189 if (props.getClipDamageToBounds() && !frame->pendingDirty.isEmpty()) { in applyRenderNodeTransform()
190 if (!frame->pendingDirty.intersect(0, 0, props.getWidth(), props.getHeight())) { in applyRenderNodeTransform()
196 mapRect(props, frame->pendingDirty, &mHead->pendingDirty); in applyRenderNodeTransform()
199 if (props.getProjectBackwards() && !frame->pendingDirty.isEmpty()) { in applyRenderNodeTransform()
DRenderNode.cpp289 const LayerProperties& props = properties().layerProperties(); in applyLayerPropertiesToLayer() local
290 mLayer->setAlpha(props.alpha(), props.xferMode()); in applyLayerPropertiesToLayer()
291 mLayer->setColorFilter(props.colorFilter()); in applyLayerPropertiesToLayer()
292 mLayer->setBlend(props.needsBlending()); in applyLayerPropertiesToLayer()
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
DViewDumpParser.java40 Map<Short, Object> props = mViews.get(0); in getFirstView() local
41 Object name = getProperty(props, "__name__"); in getFirstView()
42 Object hash = getProperty(props, "__hash__"); in getFirstView()
51 private Object getProperty(Map<Short, Object> props, String key) { in getProperty() argument
52 return props.get(mIds.get(key)); in getProperty()
/frameworks/opt/calendar/src/com/android/calendarcommon2/
DICalendar.java139 ArrayList<Property> props = mPropsMap.get(name); in addProperty() local
140 if (props == null) { in addProperty()
141 props = new ArrayList<Property>(); in addProperty()
142 mPropsMap.put(name, props); in addProperty()
144 props.add(prop); in addProperty()
172 List<Property> props = mPropsMap.get(name); in getFirstProperty() local
173 if (props == null || props.size() == 0) { in getFirstProperty()
176 return props.get(0); in getFirstProperty()
/frameworks/native/services/batteryservice/
DIBatteryPropertiesListener.cpp32 void batteryPropertiesChanged(struct BatteryProperties props) in batteryPropertiesChanged() argument
37 props.writeToParcel(&data); in batteryPropertiesChanged()
/frameworks/data-binding/
Dbuild.gradle130 Properties props = new Properties()
131 props.setProperty('version', config.version)
132 props.setProperty('mavenRepoName', config.mavenRepoName)
133 props.store(propsFile.newWriter(), null)
/frameworks/rs/
DrsThreadIO.cpp124 if (con->props.mLogTimes) { in playCoreCommands()
150 if (con->props.mLogTimes) { in playCoreCommands()
166 if (con->props.mLogTimes) { in playCoreCommands()
DrsContext.cpp188 if (props.mLogTimes) { in timerPrint()
256 rsc->props.mLogTimes = getProp("debug.rs.profile") != 0; in threadProc()
257 rsc->props.mLogScripts = getProp("debug.rs.script") != 0; in threadProc()
258 rsc->props.mLogShaders = getProp("debug.rs.shader") != 0; in threadProc()
259 rsc->props.mLogShadersAttr = getProp("debug.rs.shader.attributes") != 0; in threadProc()
260 rsc->props.mLogShadersUniforms = getProp("debug.rs.shader.uniforms") != 0; in threadProc()
261 rsc->props.mLogVisual = getProp("debug.rs.visual") != 0; in threadProc()
262 rsc->props.mDebugMaxThreads = getProp("debug.rs.max-threads"); in threadProc()
356 if (rsc->props.mLogVisual) { in threadProc()
DrsScriptC.cpp173 if (rsc->props.mLogScripts) { in run()
179 if (rsc->props.mLogScripts) { in run()
252 if (rsc->props.mLogScripts) { in Invoke()
DrsContext.h231 } props; variable
/frameworks/native/cmds/dumpstate/
Dutils.c518 static char* props[2000]; variable
522 if (num_props < sizeof(props) / sizeof(props[0])) { in print_prop()
525 props[num_props++] = strdup(buf); in print_prop()
538 qsort(&props, num_props, sizeof(props[0]), compare_prop); in print_properties()
542 fputs(props[i], stdout); in print_properties()
543 free(props[i]); in print_properties()
/frameworks/rs/driver/
DrsdProgram.cpp73 if (rsc->props.mLogShaders) { in rsdProgramVertexDestroy()
107 if (rsc->props.mLogShaders) { in rsdProgramFragmentDestroy()
DrsdShaderCache.cpp60 if (rsc->props.mLogShaders) { in updateUniformArrayData()
182 if (rsc->props.mLogShaders) { in link()
DrsdShader.cpp238 if (rsc->props.mLogShaders) { in loadShader()
267 if (rsc->props.mLogShaders) { in loadShader()
552 if (rsc->props.mLogShadersUniforms) { in setupUserConstants()
561 if (rsc->props.mLogShadersUniforms) { in setupUserConstants()
DrsdVertexArray.cpp101 if (rsc->props.mLogShadersAttr) { in setup()
/frameworks/base/core/java/android/os/
DIBatteryPropertiesListener.aidl26 void batteryPropertiesChanged(in BatteryProperties props); in batteryPropertiesChanged() argument
/frameworks/native/include/batteryservice/
DIBatteryPropertiesListener.h38 virtual void batteryPropertiesChanged(struct BatteryProperties props) = 0;
/frameworks/base/cmds/am/src/com/android/commands/am/
DAm.java1108 String props = SystemProperties.get("dalvik.vm.extra-opts"); in removeWallOption() local
1109 if (props != null && props.contains("-Xprofile:wallclock")) { in removeWallOption()
1110 props = props.replace("-Xprofile:wallclock", ""); in removeWallOption()
1111 props = props.trim(); in removeWallOption()
1112 SystemProperties.set("dalvik.vm.extra-opts", props); in removeWallOption()
1193 String props = SystemProperties.get("dalvik.vm.extra-opts"); in runProfile() local
1194 if (props == null || !props.contains("-Xprofile:wallclock")) { in runProfile()
1195 props = props + " -Xprofile:wallclock"; in runProfile()
/frameworks/base/services/core/java/com/android/server/
DBatteryService.java294 private void update(BatteryProperties props) { in update() argument
297 mBatteryProps = props; in update()
301 mLastBatteryProps.set(props); in update()
771 public void batteryPropertiesChanged(BatteryProperties props) { in batteryPropertiesChanged() argument
774 BatteryService.this.update(props); in batteryPropertiesChanged()
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
DBluetoothMapBmessageParser.java91 private ParseException expected(Property... props) { in expected() argument
95 for (Property prop : props) { in expected()
/frameworks/av/media/mtp/
DMtpDevice.cpp263 MtpObjectPropertyList* props = getObjectPropsSupported(format); in print() local
264 if (props) { in print()
265 for (size_t j = 0; j < props->size(); j++) { in print()
266 MtpObjectProperty prop = (*props)[j]; in print()
/frameworks/base/opengl/java/android/opengl/
DGLES31.java289 int[] props, in glGetProgramResourceiv() argument
305 java.nio.IntBuffer props, in glGetProgramResourceiv() argument
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DAndroidCamera2AgentImpl.java783 CameraCharacteristics props =
788 mCameraIndex, mCamera, characteristics, props);
791 props.get(CameraCharacteristics.SENSOR_INFO_ACTIVE_ARRAY_SIZE);
793 props.get(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL) ==
/frameworks/base/core/jni/
Dandroid_opengl_GLES31.cpp692 GLenum *props = (GLenum *) 0; in android_glGetProgramResourceiv__IIII_3III_3II_3II() local
715 props = props_base + propsOffset; in android_glGetProgramResourceiv__IIII_3III_3II_3II()
756 (GLenum *)props, in android_glGetProgramResourceiv__IIII_3III_3II_3II()
791 GLenum *props = (GLenum *) 0; in android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2() local
797props = (GLenum *)getPointer(_env, props_buf, (jarray*)&_propsArray, &_propsRemaining, &_propsBuff… in android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2()
800 if (props == NULL) { in android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2()
802 props = (GLenum *) (_propsBase + _propsBufferOffset); in android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2()
817 (GLenum *)props, in android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2()
829 _env->ReleaseIntArrayElements(_propsArray, (jint*)props, JNI_ABORT); in android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2()
/frameworks/native/opengl/tools/glgen/specs/gles11/
DGLES31.spec10 …, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, …

12