HomeSort by relevance Sort by last modified time
    Searched refs:props (Results 26 - 50 of 1573) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/apps/CameraITS/tests/scene1/
test_yuv_plus_raw.py 31 props = cam.get_camera_properties()
32 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
33 its.caps.raw16(props) and
34 its.caps.per_frame_control(props) and
35 not its.caps.mono_camera(props))
40 req = its.objects.manual_capture_request(s, e, 0.0, True, props)
45 max_raw_size = its.objects.get_available_output_sizes("raw", props)[0]
47 "yuv", props, (1920, 1080), max_raw_size)[0]
59 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
    [all...]
test_yuv_plus_raw10.py 31 props = cam.get_camera_properties()
32 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
33 its.caps.raw10(props) and
34 its.caps.per_frame_control(props) and
35 not its.caps.mono_camera(props))
40 req = its.objects.manual_capture_request(s, e, 0.0, True, props)
46 props)[0]
48 "yuv", props, (1920, 1080), max_raw10_size)[0]
60 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
    [all...]
test_yuv_plus_raw12.py 31 props = cam.get_camera_properties()
32 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
33 its.caps.raw12(props) and
34 its.caps.per_frame_control(props) and
35 not its.caps.mono_camera(props))
40 req = its.objects.manual_capture_request(s, e, 0.0, True, props)
43 its.objects.get_available_output_sizes("raw12", props)[0]
45 "yuv", props, (1920, 1080), max_raw12_size)[0]
57 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
    [all...]
test_multi_camera_match.py 37 props = cam.get_camera_properties()
38 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
39 its.caps.per_frame_control(props) and
40 its.caps.logical_multi_camera(props) and
41 its.caps.raw16(props) and
42 its.caps.manual_sensor(props))
43 ids = its.caps.logical_multi_camera_physical_ids(props)
46 max_raw_size = its.objects.get_available_output_sizes('raw', props)[0]
69 img_raw = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
    [all...]
test_latching.py 35 props = cam.get_camera_properties()
36 its.caps.skip_unless(its.caps.full_or_better(props))
38 _,fmt = its.objects.get_fastest_manual_capture_settings(props)
47 its.objects.manual_capture_request(s, e, 0.0, True, props),
48 its.objects.manual_capture_request(s, e, 0.0, True, props),
49 its.objects.manual_capture_request(s*2,e, 0.0, True, props),
50 its.objects.manual_capture_request(s*2,e, 0.0, True, props),
51 its.objects.manual_capture_request(s, e, 0.0, True, props),
52 its.objects.manual_capture_request(s, e, 0.0, True, props),
53 its.objects.manual_capture_request(s, e*2, 0.0, True, props),
    [all...]
test_raw_burst_sensitivity.py 38 props = cam.get_camera_properties()
39 its.caps.skip_unless(its.caps.raw16(props) and
40 its.caps.manual_sensor(props) and
41 its.caps.read_3a(props) and
42 its.caps.per_frame_control(props) and
43 not its.caps.mono_camera(props))
47 sens_min, _ = props["android.sensor.info.sensitivityRange"]
49 sens_max = props["android.sensor.maxAnalogSensitivity"]
66 aax = props["android.sensor.info.activeArraySize"]["left"]
67 aay = props["android.sensor.info.activeArraySize"]["top"
    [all...]
test_dng_noise_model.py 43 props = cam.get_camera_properties()
44 its.caps.skip_unless(its.caps.raw(props) and
45 its.caps.raw16(props) and
46 its.caps.manual_sensor(props) and
47 its.caps.read_3a(props) and
48 its.caps.per_frame_control(props) and
49 not its.caps.mono_camera(props))
52 white_level = float(props['android.sensor.info.whiteLevel'])
53 cfa_idxs = its.image.get_canonical_cfa_order(props)
54 aax = props['android.sensor.info.activeArraySize']['left'
    [all...]
test_yuv_plus_dng.py 27 props = cam.get_camera_properties()
28 its.caps.skip_unless(its.caps.raw(props) and
29 its.caps.read_3a(props))
30 mono_camera = its.caps.mono_camera(props)
36 its.objects.get_available_output_sizes("raw", props)[0]
38 "yuv", props, (1920, 1080), max_dng_size)[0]
test_locked_burst.py 40 props = cam.get_camera_properties()
41 its.caps.skip_unless(its.caps.ae_lock(props) and
42 its.caps.awb_lock(props))
43 mono_camera = its.caps.mono_camera(props)
49 fmt = its.objects.get_largest_yuv_format(props)
52 req = its.objects.fastest_auto_capture_request(props)
77 if its.caps.manual_sensor(props) else SPREAD_THRESH
  /external/icu/icu4c/source/common/
ubidi_props.h 125 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
126 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
129 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
131 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIFT)
    [all...]
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 86 PropsTy &props = AtProps[RawLoc]; local
87 props.push_back(Prop);
122 PropsTy &props = findAtLoc->second; local
123 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) {
135 PropsTy &props = I->second; local
136 if (!getPropertyType(props)->isObjCRetainableType())
138 if (hasIvarWithExplicitARCOwnership(props))
142 rewriteProperty(props, atLoc);
148 PropsTy &props, SourceLocation atLoc
    [all...]
  /frameworks/base/libs/hwui/tests/common/scenes/
MagnifierAnimation.cpp 39 0, 0, width, height, [&](RenderProperties& props, Canvas& canvas) {
49 100, 100, 500, 300, [&](RenderProperties& props, Canvas& canvas) {
50 props.setElevation(dp(16));
51 props.mutableOutline().setRoundRect(0, 0, props.getWidth(), props.getHeight(),
53 props.mutableOutline().setShouldClip(true);
55 (float)magnifier->height(), 0, 0, (float)props.getWidth(),
56 (float)props.getHeight(), nullptr);
  /system/core/healthd/
BatteryMonitor.cpp 64 static void initBatteryProperties(BatteryProperties* props) {
65 props->chargerAcOnline = false;
66 props->chargerUsbOnline = false;
67 props->chargerWirelessOnline = false;
68 props->maxChargingCurrent = 0;
69 props->maxChargingVoltage = 0;
70 props->batteryStatus = BATTERY_STATUS_UNKNOWN;
71 props->batteryHealth = BATTERY_HEALTH_UNKNOWN;
72 props->batteryPresent = false;
73 props->batteryLevel = 0
    [all...]
  /cts/apps/CameraITS/tests/scene0/
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)
test_param_sensitivity_burst.py 32 props = cam.get_camera_properties()
33 its.caps.skip_unless(its.caps.manual_sensor(props) and
34 its.caps.per_frame_control(props))
36 sens_range = props['android.sensor.info.sensitivityRange']
39 e = min(props['android.sensor.info.exposureTimeRange'])
41 _, fmt = its.objects.get_fastest_manual_capture_settings(props)
  /external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/
Activator.java 60 Properties props = new Properties(); local
61 props.put("description", "An SLF4J LogService implementation.");
63 bundleContext.registerService(LogService.class.getName(), factory, props); local
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-test.py 60 props = net.properties()
64 for item in props["bssid"]:
67 ssid = byte_array_to_string(props["ssid"])
69 if props.has_key("wpaie"):
72 if props.has_key("rsnie"):
75 if props.has_key("frequency"):
76 freq = props["frequency"]
77 caps = props["capabilities"]
78 qual = props["quality"]
79 level = props["level"
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 828 VKAPI_ATTR void VKAPI_CALL getPhysicalDeviceProperties (VkPhysicalDevice, VkPhysicalDeviceProperties* props)
830 deMemset(props, 0, sizeof(VkPhysicalDeviceProperties));
832 props->apiVersion = VK_API_VERSION_1_1;
833 props->driverVersion = 1u;
834 props->deviceType = VK_PHYSICAL_DEVICE_TYPE_OTHER;
836 deMemcpy(props->deviceName, "null", 5);
839 props->limits.maxImageDimension1D = 4096;
840 props->limits.maxImageDimension2D = 4096;
841 props->limits.maxImageDimension3D = 256;
842 props->limits.maxImageDimensionCube = 4096
    [all...]
  /test/vts/harnesses/tradefed/src/com/android/compatibility/common/tradefed/result/
VtsResultReporter.java 36 Map<String, String> props = mapBuildInfo(); local
37 String vendorFingerprint = props.get(BUILD_VENDOR_FINGERPRINT);
38 String vendorManufacturer = props.get(BUILD_VENDOR_MANUFACTURER);
39 String vendorModel = props.get(BUILD_VENDOR_MODEL);
  /system/libufdt/
ufdt_prop_dict.c 50 const struct fdt_property **prop_ptr = &dict->props[idx];
72 const struct fdt_property **props = local
74 if (props == NULL) return -1;
75 dto_memset(props, 0, size * entry_size);
80 dict->props = props;
92 dto_free(dict->props);
108 const struct fdt_property *prop = dict->props[i];
120 dto_free(dict->props);
123 dict->props = temp_dict.props
    [all...]
  /external/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) {}
84 plan.props = props;
93 plan.kern_mask = plan.map.get_mask (HB_DIRECTION_IS_HORIZONTAL (plan.props.direction) ?
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/parser/
PropertiesProvisioningDataParser.java 110 Properties props = new Properties(); local
111 props.load(new StringReader(new String(firstRecord.getPayload(), UTF_8)));
121 .setDeviceAdminPackageName(props.getProperty(
123 if ((s = props.getProperty(EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME))
129 builder.setTimeZone(props.getProperty(EXTRA_PROVISIONING_TIME_ZONE))
131 props.getProperty(EXTRA_PROVISIONING_LOCALE)));
132 if ((s = props.getProperty(EXTRA_PROVISIONING_LOCAL_TIME)) != null) {
137 builder.setWifiInfo(parseWifiInfoFromProperties(props))
139 .setDeviceAdminDownloadInfo(parsePackageDownloadInfoFromProperties(props))
144 .setAdminExtrasBundle(deserializeExtrasBundle(props,
    [all...]
  /external/libdrm/tests/planetest/
dev.c 73 drmModeObjectPropertiesPtr props, const char *name)
78 for (i = 0; !prop_id && i < props->count_props; i++) {
79 p = drmModeGetProperty(dev->fd, props->props[i]);
156 drmModeObjectPropertiesPtr props; local
164 props = drmModeObjectGetProperties(dev->fd, r->connectors[i],
166 if (!props) {
171 dev->connectors[i].crtc_id_pid = get_prop_id(dev, props,
173 drmModeFreeObjectProperties(props);
199 drmModeObjectPropertiesPtr props; local
231 drmModeObjectPropertiesPtr props; local
    [all...]
  /cts/apps/CameraITS/tests/scene3/
test_reprocess_edge_enhancement.py 96 props = cam.get_camera_properties()
98 its.caps.skip_unless(its.caps.read_3a(props) and
99 its.caps.per_frame_control(props) and
100 its.caps.edge_mode(props, 0) and
101 (its.caps.yuv_reprocess(props) or
102 its.caps.private_reprocess(props)))
104 mono_camera = its.caps.mono_camera(props)
106 assert(its.caps.edge_mode(props, 3))
109 if (its.caps.yuv_reprocess(props)):
111 if (its.caps.private_reprocess(props))
    [all...]
  /external/skia/src/core/
SkSpecialSurface.cpp 16 SkSpecialSurface_Base(const SkIRect& subset, const SkSurfaceProps* props)
17 : INHERITED(subset, props)
44 const SkSurfaceProps* props)
45 : fProps(SkSurfacePropsCopyOrDefault(props).flags(), kUnknown_SkPixelGeometry)
69 const SkSurfaceProps* props)
70 : INHERITED(subset, props) {
75 fCanvas.reset(new SkCanvas(fBitmap, this->props()));
85 return SkSpecialImage::MakeFromRaster(this->subset(), fBitmap, &this->props());
95 const SkSurfaceProps* props) {
99 return sk_make_sp<SkSpecialSurface_Raster>(bm.info(), sk_ref_sp(bm.pixelRef()), subset, props);
    [all...]

Completed in 487 milliseconds

12 3 4 5 6 7 8 91011>>