Searched defs:props (Results 1 - 12 of 12) sorted by relevance

/frameworks/native/services/batteryservice/
H A DIBatteryPropertiesListener.cpp32 void batteryPropertiesChanged(struct BatteryProperties props) argument
37 props.writeToParcel(&data);
/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/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessageParser.java91 private ParseException expected(Property... props) { argument
95 for (Property prop : props) {
/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.cpp288 const LayerProperties& props = properties().layerProperties(); local
289 mLayer->setAlpha(props.alpha(), props.xferMode());
290 mLayer->setColorFilter(props.colorFilter());
291 mLayer->setBlend(props.needsBlending());
/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/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/rs/
H A DrsContext.h226 } props; member in class:android::renderscript::Context
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp565 /* void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params ) */
574 GLenum *props = (GLenum *) 0; local
585 _exceptionMessage = "props == null";
597 props = props_base + propsOffset;
638 (GLenum *)props,
662 /* void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params ) */
673 GLenum *props = (GLenum *) 0; local
679 props = (GLenum *)getPointer(_env, props_buf, &_propsArray, &_propsRemaining, &_propsBufferOffset);
682 if (props == NULL) {
684 props
[all...]
/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/libs/GLES_trace/src/
H A Dgltrace_api.cpp10726 void GLTrace_glGetProgramResourceiv(GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum * props, GLsizei bufSize, GLsizei * length, GLint * params) { argument
10756 // copy argument props
10760 arg_props->add_int64value((uintptr_t)props);
10783 glContext->hooks->gl.glGetProgramResourceiv(program, programInterface, index, propCount, props, bufSize, length, params);
10788 (void *) props,
[all...]

Completed in 347 milliseconds