Searched refs:props (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/core/java/android/os/
H A DIBatteryPropertiesListener.aidl26 void batteryPropertiesChanged(in BatteryProperties props);
/frameworks/native/services/batteryservice/
H A DIBatteryPropertiesListener.cpp32 void batteryPropertiesChanged(struct BatteryProperties props) argument
37 props.writeToParcel(&data);
/frameworks/native/include/batteryservice/
H A DIBatteryPropertiesListener.h38 virtual void batteryPropertiesChanged(struct BatteryProperties props) = 0;
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java64 ArrayList<PropertyValuesHolder> props = new ArrayList<PropertyValuesHolder>(vars.length/2);
84 props.add(PropertyValuesHolder.ofFloat(key,
87 props.add(PropertyValuesHolder.ofInt(key,
91 props.add(PropertyValuesHolder.ofFloat(key, floatValue));
103 props.toArray(new PropertyValuesHolder[props.size()]));
109 replace(props, object); // Cancel all animators for given object
163 private static void replace(ArrayList<PropertyValuesHolder> props, Object... args) { argument
168 if (props != null) {
170 props
[all...]
/frameworks/base/libs/hwui/
H A DDamageAccumulator.cpp132 static inline void mapRect(const RenderProperties& props, const SkRect& in, SkRect* out) { argument
134 const SkMatrix* transform = props.getTransformMatrix();
139 temp.offset(props.getLeft(), props.getTop());
183 const RenderProperties& props = frame->renderNode->properties(); local
184 if (props.getAlpha() <= 0) {
189 if (props.getClipDamageToBounds() && !frame->pendingDirty.isEmpty()) {
190 if (!frame->pendingDirty.intersect(0, 0, props.getWidth(), props.getHeight())) {
196 mapRect(props, fram
[all...]
H A DRenderNode.cpp280 const LayerProperties& props = properties().layerProperties(); local
281 mLayer->setAlpha(props.alpha(), props.xferMode());
282 mLayer->setColorFilter(props.colorFilter());
283 mLayer->setBlend(props.needsBlending());
/frameworks/rs/
H A DrsObjectBase.cpp211 if (rsc->props.mLogObjects) {
229 if (rsc->props.mLogObjects) {
236 if (rsc->props.mLogObjects) {
251 if (rsc->props.mLogObjects) {
H A DrsThreadIO.cpp124 if (con->props.mLogTimes) {
150 if (con->props.mLogTimes) {
166 if (con->props.mLogTimes) {
H A DrsContext.cpp186 if (props.mLogTimes) {
306 rsc->props.mLogTimes = getProp("debug.rs.profile") != 0;
307 rsc->props.mLogScripts = getProp("debug.rs.script") != 0;
308 rsc->props.mLogObjects = getProp("debug.rs.object") != 0;
309 rsc->props.mLogShaders = getProp("debug.rs.shader") != 0;
310 rsc->props.mLogShadersAttr = getProp("debug.rs.shader.attributes") != 0;
311 rsc->props.mLogShadersUniforms = getProp("debug.rs.shader.uniforms") != 0;
312 rsc->props.mLogVisual = getProp("debug.rs.visual") != 0;
313 rsc->props.mDebugMaxThreads = getProp("debug.rs.max-threads");
439 if (rsc->props
[all...]
H A DrsScriptC.cpp143 if (rsc->props.mLogScripts) {
149 if (rsc->props.mLogScripts) {
228 if (rsc->props.mLogScripts) {
H A DrsContext.h226 } props; member in class:android::renderscript::Context
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java139 ArrayList<Property> props = mPropsMap.get(name);
140 if (props == null) {
141 props = new ArrayList<Property>();
142 mPropsMap.put(name, props);
144 props.add(prop);
172 List<Property> props = mPropsMap.get(name);
173 if (props == null || props.size() == 0) {
176 return props.get(0);
/frameworks/rs/driver/
H A DrsdProgram.cpp73 if (rsc->props.mLogShaders) {
107 if (rsc->props.mLogShaders) {
H A DrsdVertexArray.cpp101 if (rsc->props.mLogShadersAttr) {
H A DrsdShaderCache.cpp56 if (rsc->props.mLogShaders) {
174 if (rsc->props.mLogShaders) {
H A DrsdShader.cpp238 if (rsc->props.mLogShaders) {
267 if (rsc->props.mLogShaders) {
550 if (rsc->props.mLogShadersUniforms) {
559 if (rsc->props.mLogShadersUniforms) {
/frameworks/native/cmds/dumpstate/
H A Dutils.c373 static char* props[2000]; variable
377 if (num_props < sizeof(props) / sizeof(props[0])) {
380 props[num_props++] = strdup(buf);
393 qsort(&props, num_props, sizeof(props[0]), compare_prop);
397 fputs(props[i], stdout);
398 free(props[i]);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java966 String props = SystemProperties.get("dalvik.vm.extra-opts");
967 if (props != null && props.contains("-Xprofile:wallclock")) {
968 props = props.replace("-Xprofile:wallclock", "");
969 props = props.trim();
970 SystemProperties.set("dalvik.vm.extra-opts", props);
1047 String props = SystemProperties.get("dalvik.vm.extra-opts");
1048 if (props
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessageParser.java91 private ParseException expected(Property... props) { argument
95 for (Property prop : props) {
/frameworks/base/services/core/java/com/android/server/
H A DBatteryService.java294 private void update(BatteryProperties props) { argument
297 mBatteryProps = props;
301 mLastBatteryProps.set(props);
753 public void batteryPropertiesChanged(BatteryProperties props) { argument
756 BatteryService.this.update(props);
/frameworks/av/media/mtp/
H A DMtpDevice.cpp254 MtpObjectPropertyList* props = getObjectPropsSupported(format); local
255 if (props) {
256 for (size_t j = 0; j < props->size(); j++) {
257 MtpObjectProperty prop = (*props)[j];
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2AgentImpl.java772 CameraCharacteristics props =
775 getCameraDeviceInfo().getCharacteristics(mCameraIndex), props);
778 props.get(CameraCharacteristics.SENSOR_INFO_ACTIVE_ARRAY_SIZE);
780 props.get(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL) ==
/frameworks/base/opengl/java/android/opengl/
H A DGLES31.java282 // C function void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params )
289 int[] props,
298 // C function void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params )
305 java.nio.IntBuffer props,
284 glGetProgramResourceiv( int program, int programInterface, int index, int propCount, int[] props, int propsOffset, int bufSize, int[] length, int lengthOffset, int[] params, int paramsOffset ) argument
300 glGetProgramResourceiv( int program, int programInterface, int index, int propCount, java.nio.IntBuffer props, int bufSize, java.nio.IntBuffer length, java.nio.IntBuffer params ) argument
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31.spec10 void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params )
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java1026 PointerProperties[] props = PointerProperties.createArray(pointerCount);
1029 event.getPointerProperties(i, props[i]);
1038 props, coords, event.getMetaState(), event.getButtonState(),

Completed in 538 milliseconds

12