HomeSort by relevance Sort by last modified time
    Searched refs:props (Results 1 - 25 of 444) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CameraITS/pymodules/its/
caps.py 40 def full(props):
44 props: Camera properties object.
49 return props.has_key("android.info.supportedHardwareLevel") and \
50 props["android.info.supportedHardwareLevel"] == 1
52 def limited(props):
56 props: Camera properties object.
61 return props.has_key("android.info.supportedHardwareLevel") and \
62 props["android.info.supportedHardwareLevel"] == 0
64 def legacy(props):
68 props: Camera properties object
    [all...]
objects.py 126 def fastest_auto_capture_request(props):
130 props: the object returned from its.device.get_camera_properties().
137 turn_slow_filters_off(props, req)
141 def get_available_output_sizes(fmt, props):
146 props: the object returned from its.device.get_camera_properties().
152 configs = props['android.scaler.streamConfigurationMap']\
160 def set_filter_off_or_fast_if_possible(props, req, available_modes, filter):
164 props: the object returned from its.device.get_camera_properties().
172 if props.has_key(available_modes):
173 if 0 in props[available_modes]
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkSurfacePriv.h 13 static inline SkSurfaceProps SkSurfacePropsCopyOrDefault(const SkSurfaceProps* props) {
14 if (props) {
15 return *props;
  /external/chromium_org/third_party/icu/source/samples/props/
Makefile 12 TARGET=props
15 OBJECTS=props.o
  /external/icu/icu4c/source/samples/props/
Makefile 12 TARGET=props
15 OBJECTS=props.o
  /cts/apps/CameraITS/tests/scene0/
test_camera_properties.py 25 props = cam.get_camera_properties()
27 pprint.pprint(props)
29 its.caps.skip_unless(its.caps.manual_sensor(props))
32 assert(props.has_key('android.sensor.info.sensitivityRange'))
33 assert(props.has_key('android.sensor.orientation'))
34 assert(props.has_key('android.scaler.streamConfigurationMap'))
35 assert(props.has_key('android.lens.facing'))
37 print "JPG sizes:", its.objects.get_available_output_sizes("jpg", props)
38 print "RAW sizes:", its.objects.get_available_output_sizes("raw", props)
39 print "YUV sizes:", its.objects.get_available_output_sizes("yuv", props)
    [all...]
test_metadata.py 26 global md, props, failed
31 props = cam.get_camera_properties()
37 print " Legacy:", its.caps.legacy(props)
38 print " Limited:", its.caps.limited(props)
39 print " Full:", its.caps.full(props)
41 print " Manual sensor:", its.caps.manual_sensor(props)
42 print " Manual post-proc:", its.caps.manual_post_proc(props)
43 print " Raw:", its.caps.raw(props)
44 print " Sensor fusion:", its.caps.sensor_fusion(props)
47 check('props.has_key("android.info.supportedHardwareLevel")'
    [all...]
test_capture_result_dump.py 29 props = cam.get_camera_properties()
30 its.caps.skip_unless(its.caps.manual_sensor(props))
32 req,fmt = its.objects.get_fastest_manual_capture_settings(props)
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertyUtils.java 45 * @param props the list of properties that will be searched.
49 public static boolean getBooleanProperty(String key, Properties props)
52 String s = props.getProperty(key);
68 * @param props the list of properties that will be searched.
72 public static int getIntProperty(String key, Properties props)
75 String s = props.getProperty(key);
  /external/chromium_org/third_party/lzma_sdk/
LzmaLib.c 26 CLzmaEncProps props; local
27 LzmaEncProps_Init(&props);
28 props.level = level;
29 props.dictSize = dictSize;
30 props.lc = lc;
31 props.lp = lp;
32 props.pb = pb;
33 props.fb = fb;
34 props.numThreads = numThreads;
36 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaLib.c 27 CLzmaEncProps props; local
28 LzmaEncProps_Init(&props);
29 props.level = level;
30 props.dictSize = dictSize;
31 props.lc = lc;
32 props.lp = lp;
33 props.pb = pb;
34 props.fb = fb;
35 props.numThreads = numThreads;
37 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0
    [all...]
  /external/lzma/C/
LzmaLib.c 26 CLzmaEncProps props; local
27 LzmaEncProps_Init(&props);
28 props.level = level;
29 props.dictSize = dictSize;
30 props.lc = lc;
31 props.lp = lp;
32 props.pb = pb;
33 props.fb = fb;
34 props.numThreads = numThreads;
36 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0,
    [all...]
  /device/htc/flounder/health/
healthd-flounder.cpp 106 static void flounder_status_check(struct BatteryProperties *props)
108 if (props->batteryStatus == BATTERY_STATUS_UNKNOWN)
109 props->batteryStatus = BATTERY_STATUS_DISCHARGING;
110 else if (props->batteryStatus == BATTERY_STATUS_FULL &&
111 props->batteryLevel < BATTERY_FULL)
112 props->batteryStatus = BATTERY_STATUS_CHARGING;
115 static void flounder_health_check(struct BatteryProperties *props)
117 if (props->batteryLevel >= BATTERY_FULL)
118 props->batteryHealth = BATTERY_HEALTH_GOOD;
119 else if (props->batteryLevel < BATTERY_LOW
    [all...]
  /device/samsung/manta/health/
healthd-manta.cpp 58 static void manta_bat_check_temp(struct BatteryProperties *props)
60 if (props->chargerAcOnline == false &&
61 props->chargerUsbOnline == false)
64 if (props->batteryTemperature >= TEMP_HIGH_THRESHOLD) {
69 props->batteryTemperature);
72 } else if (props->batteryTemperature <= TEMP_HIGH_RECOVERY &&
73 props->batteryTemperature >= TEMP_LOW_RECOVERY) {
78 props->batteryTemperature);
81 } else if (props->batteryTemperature <= TEMP_LOW_THRESHOLD) {
86 props->batteryTemperature)
    [all...]
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 86 PropsTy &props = AtProps[RawLoc]; local
87 props.push_back(Prop);
118 PropsTy &props = findAtLoc->second; local
119 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) {
131 PropsTy &props = I->second; local
132 if (!getPropertyType(props)->isObjCRetainableType())
134 if (hasIvarWithExplicitARCOwnership(props))
138 rewriteProperty(props, atLoc);
149 PropsTy &props = I->second local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uchar.c 58 uint32_t props; local
59 GET_PROPS(c, props);
60 return (int8_t)GET_CATEGORY(props);
98 uint32_t props; local
99 GET_PROPS(c, props);
100 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER);
106 uint32_t props; local
107 GET_PROPS(c, props);
108 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER);
114 uint32_t props; local
122 uint32_t props; local
129 uint32_t props; local
146 uint32_t props; local
159 uint32_t props; local
176 uint32_t props; local
184 uint32_t props; local
192 uint32_t props; local
213 uint32_t props; local
220 uint32_t props; local
228 uint32_t props; local
243 uint32_t props; local
257 uint32_t props; local
270 uint32_t props; local
281 uint32_t props; local
298 uint32_t props; local
309 uint32_t props; local
318 uint32_t props; local
327 uint32_t props; local
344 uint32_t props; local
353 uint32_t props; local
363 uint32_t props; local
377 uint32_t props; local
390 uint32_t props; local
514 uint32_t props; local
    [all...]
ubidi_props.h 121 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
122 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
125 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
127 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIFT)
    [all...]
  /external/icu/icu4c/source/common/
uchar.c 58 uint32_t props; local
59 GET_PROPS(c, props);
60 return (int8_t)GET_CATEGORY(props);
98 uint32_t props; local
99 GET_PROPS(c, props);
100 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER);
106 uint32_t props; local
107 GET_PROPS(c, props);
108 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER);
114 uint32_t props; local
122 uint32_t props; local
129 uint32_t props; local
146 uint32_t props; local
159 uint32_t props; local
176 uint32_t props; local
184 uint32_t props; local
192 uint32_t props; local
213 uint32_t props; local
220 uint32_t props; local
228 uint32_t props; local
243 uint32_t props; local
257 uint32_t props; local
270 uint32_t props; local
281 uint32_t props; local
298 uint32_t props; local
309 uint32_t props; local
318 uint32_t props; local
327 uint32_t props; local
344 uint32_t props; local
353 uint32_t props; local
363 uint32_t props; local
377 uint32_t props; local
390 uint32_t props; local
514 uint32_t props; local
    [all...]
ubidi_props.h 121 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
122 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
125 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
127 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIFT)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
context.cpp 29 _cl_context::_cl_context(const std::vector<cl_context_properties> &props,
31 devs(devs), __props(props) {
context.hpp 35 _cl_context(const std::vector<cl_context_properties> &props,
41 const std::vector<cl_context_properties> &props() const { function in struct:_cl_context
  /external/mesa3d/src/gallium/state_trackers/clover/core/
context.cpp 29 _cl_context::_cl_context(const std::vector<cl_context_properties> &props,
31 devs(devs), __props(props) {
  /cts/apps/CameraITS/tests/scene1/
test_raw_sensitivity.py 37 props = cam.get_camera_properties()
38 its.caps.skip_unless(its.caps.raw16(props) and
39 its.caps.manual_sensor(props) and
40 its.caps.read_3a(props) and
41 its.caps.per_frame_control(props))
44 sens_min, sens_max = props['android.sensor.info.sensitivityRange']
60 plane = its.image.convert_capture_to_planes(cap, props)[1]
65 img = its.image.convert_capture_to_rgb_image(cap, props=props)
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AddPropertyTransformer.java 28 public AddPropertyTransformer(Map props) {
29 int size = props.size();
30 names = (String[])props.keySet().toArray(new String[size]);
33 types[i] = (Type)props.get(names[i]);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-private.hh 39 hb_segment_properties_t props; member in struct:hb_ot_shape_plan_t
69 hb_segment_properties_t props; member in struct:hb_ot_shape_planner_t
75 props (master_plan->props),
77 map (face, &props) {}
82 plan.props = props;
91 plan.kern_mask = plan.map.get_mask (HB_DIRECTION_IS_HORIZONTAL (plan.props.direction) ?

Completed in 799 milliseconds

1 2 3 4 5 6 7 8 91011>>