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

1 23 4 5 6 7 8 91011>>

  /external/skqp/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...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldMemoryHandlerTest.java 36 final static Properties props = new Properties(); field in class:OldMemoryHandlerTest
44 manager.readConfiguration(propertiesToInputStream(props));
51 props.clear();
61 props.put("java.util.logging.MemoryHandler.level", "FINE");
62 props.put("java.util.logging.MemoryHandler.filter", baseClassName + "$MockFilter");
63 props.put("java.util.logging.MemoryHandler.size", "2");
64 props.put("java.util.logging.MemoryHandler.push", "WARNING");
65 props.put("java.util.logging.MemoryHandler.target", baseClassName + "$MockHandler");
66 props.put("java.util.logging.MemoryHandler.formatter", baseClassName + "$MockFormatter");
  /libcore/ojluni/src/main/java/sun/misc/
VM.java 275 public static void saveAndRemoveProperties(Properties props) {
279 savedProps.putAll(props);
286 String s = (String)props.remove("sun.nio.MaxDirectMemorySize");
299 s = (String)props.remove("sun.nio.PageAlignDirectMemory");
306 s = props.getProperty("sun.lang.ClassLoader.allowArraySyntax");
313 props.remove("java.lang.Integer.IntegerCache.high");
316 props.remove("sun.zip.disableMemoryMapping");
319 props.remove("sun.java.launcher.diag");
322 props.remove("sun.cds.enableSharedLookupCache");
  /cts/apps/CameraITS/tests/scene0/
test_unified_timestamps.py 25 props = cam.get_camera_properties()
28 its.caps.skip_unless(its.caps.sensor_fusion(props))
31 if its.caps.manual_sensor(props):
32 req, fmt = its.objects.get_fastest_manual_capture_settings(props)
34 req, fmt = its.objects.get_fastest_auto_capture_settings(props)
test_burst_capture.py 29 props = cam.get_camera_properties()
34 img = its.image.convert_capture_to_rgb_image(cap, props=props)
test_sensor_events.py 27 props = cam.get_camera_properties()
29 its.caps.skip_unless(its.caps.sensor_fusion(props))
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 58 ArrayList<Property> props = mPropsMap.get(name); local
59 if (props == null) {
60 props = new ArrayList<Property>();
61 mPropsMap.put(name, props);
63 props.add(prop);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 96 static Hashtable<String, String> props = null; field in class:Support_Configuration
106 Hashtable<String, String> props = new Hashtable<String, String>(); local
131 load(in, props);
135 if (props.size() == 0) {
140 value = props.get("DomainAddress");
145 value = props.get("WebName");
150 value = props.get("TestResourcesDir");
154 value = props.get("HomeAddressResponse");
159 value = props.get("HomeAddressSoftware");
164 value = props.get("ProxyServerTestHost")
    [all...]
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/parser/
PropertiesProvisioningDataParserTest.java 148 Properties props = new Properties(); local
150 props.setProperty(EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME, TEST_PACKAGE_NAME);
151 props.setProperty(
154 setTestWifiInfo(props);
155 setTestTimeTimeZoneAndLocale(props);
156 setTestDeviceAdminDownload(props);
157 props.setProperty(EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE, getTestAdminExtrasString());
158 props.setProperty(
162 props.setProperty(EXTRA_PROVISIONING_MAIN_COLOR, Integer.toString(TEST_MAIN_COLOR));
164 props.store(stream, "NFC provisioning intent" /* data description */)
307 Properties props = new Properties(); local
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
RenderNodeDrawableTests.cpp 43 TestUtils::createNode(0, 0, 200, 400, [](RenderProperties& props, Canvas& canvas) {
70 [expectedDrawOrder, z](RenderProperties& props, SkiaRecordingCanvas& canvas) {
72 props.setTranslationZ(z);
79 std::function<void(RenderProperties& props, SkiaRecordingCanvas& canvas)> setup) {
82 [expectedDrawOrder, setup](RenderProperties& props, SkiaRecordingCanvas& canvas) {
85 setup(props, canvas);
107 auto parent = TestUtils::createSkiaNode(0, 0, 100, 100, [](RenderProperties& props,
147 0, 0, 1, 1, [](RenderProperties& props, SkiaRecordingCanvas& recorder) {
193 0, 0, 400, 800, [](RenderProperties& props, SkiaRecordingCanvas& recorder) {
659 auto nodeA = TestUtils::createSkiaNode(0, 0, 100, 100, [](RenderProperties& props,
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_exposure.py 37 def get_raw_active_array_size(props):
38 """Return the active array w, h from props."""
39 aaw = (props['android.sensor.info.activeArraySize']['right'] -
40 props['android.sensor.info.activeArraySize']['left'])
41 aah = (props['android.sensor.info.activeArraySize']['bottom'] -
42 props['android.sensor.info.activeArraySize']['top'])
64 props = cam.get_camera_properties()
65 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
66 its.caps.per_frame_control(props))
68 process_raw = (its.caps.compute_target_exposure(props) an
    [all...]
test_3a.py 28 props = cam.get_camera_properties()
29 its.caps.skip_unless(its.caps.read_3a(props))
30 mono_camera = its.caps.mono_camera(props)
test_jpeg.py 31 props = cam.get_camera_properties()
32 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
33 its.caps.per_frame_control(props))
36 req = its.objects.manual_capture_request(s, e, 0.0, True, props)
39 size = its.objects.get_available_output_sizes("yuv", props)[0]
48 size = its.objects.get_available_output_sizes("jpg", props)[0]
test_capture_result.py 36 props = cam.get_camera_properties()
37 its.caps.skip_unless(its.caps.manual_sensor(props) and
38 its.caps.manual_post_proc(props) and
39 its.caps.per_frame_control(props))
46 manual_exp_time = min(props['android.sensor.info.exposureTimeRange'])
47 manual_sensitivity = min(props['android.sensor.info.sensitivityRange'])
76 lsc_map_auto = test_auto(cam, props)
78 test_manual(cam, lsc_map_auto, props)
80 test_auto(cam, props)
104 def test_auto(cam, props)
    [all...]
test_param_flash_mode.py 31 props = cam.get_camera_properties()
32 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
33 its.caps.flash(props) and
34 its.caps.per_frame_control(props))
45 largest_yuv = its.objects.get_largest_yuv_format(props)
50 fmt = its.objects.get_smallest_yuv_format(props, match_ar=match_ar)
54 req = its.objects.manual_capture_request(s, e, 0.0, True, props)
61 y, _, _ = its.image.convert_capture_to_planes(cap, props)
test_raw_exposure.py 41 props = cam.get_camera_properties()
42 its.caps.skip_unless(its.caps.raw16(props) and
43 its.caps.manual_sensor(props) and
44 its.caps.read_3a(props) and
45 its.caps.per_frame_control(props) and
46 not its.caps.mono_camera(props))
50 exp_min, exp_max = props["android.sensor.info.exposureTimeRange"]
51 sens_min, _ = props["android.sensor.info.sensitivityRange"]
53 sens_max = props["android.sensor.maxAnalogSensitivity"]
55 white_level = float(props["android.sensor.info.whiteLevel"]
    [all...]
test_tonemap_sequence.py 33 props = cam.get_camera_properties()
34 its.caps.skip_unless(its.caps.manual_sensor(props) and
35 its.caps.manual_post_proc(props) and
36 its.caps.per_frame_control(props) and
37 not its.caps.mono_camera(props))
40 largest_yuv = its.objects.get_largest_yuv_format(props)
45 fmt = its.objects.get_smallest_yuv_format(props, match_ar=match_ar)
52 req = its.objects.manual_capture_request(sens, exp_time, f_dist, True, props)
  /external/icu/icu4c/source/common/
ubidi_props.cpp 148 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
149 return (UCharDirection)UBIDI_GET_CLASS(props);
154 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
155 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT);
159 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) {
160 int32_t delta=UBIDI_GET_MIRROR_DELTA(props);
192 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
193 return getMirror(bdp, c, props);
198 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
199 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT)
204 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
210 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
233 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
239 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
    [all...]
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
CustomPropsEntityManagerFactoryProvisionTest.java 40 Properties props = new Properties(); local
41 props.put("blah", "blah");
43 injector = Guice.createInjector(new JpaPersistModule("testUnit").properties(props));
  /frameworks/data-binding/compilerCommon/
build.gradle 67 def props = new HashMap();
71 props.put("compilerCommon", project.version)
72 props.put("compiler", rootProject.findProject("dataBinding:compiler").version)
73 props.put("baseLibrary", rootProject.findProject("dataBinding:baseLibrary").version)
74 props.put("extensions", dataBindingConfig.extensionsVersion)
78 props.each {
  /cts/apps/CameraITS/tools/
validate_scene.py 52 props = cam.get_camera_properties()
53 cam.do_3a(do_af=do_af, lock_ae=its.caps.ae_lock(props),
54 lock_awb=its.caps.awb_lock(props))
55 req = its.objects.fastest_auto_capture_request(props)
56 if its.caps.ae_lock(props):
58 if its.caps.awb_lock(props):
  /cts/apps/CameraITS/tests/scene2/
test_num_faces.py 34 props = cam.get_camera_properties()
35 its.caps.skip_unless(its.caps.face_detect(props))
36 mono_camera = its.caps.mono_camera(props)
37 fd_modes = props['android.statistics.info.availableFaceDetectModes']
38 a = props['android.sensor.info.activeArraySize']
41 if its.caps.read_3a(props):
64 props=props)
  /external/libdrm/tests/kms/
libkms-test-plane.c 36 drmModeObjectPropertiesPtr props; local
72 props = drmModeObjectGetProperties(device->fd, plane->id,
74 if (!props)
77 for (i = 0; i < props->count_props; i++) {
80 prop = drmModeGetProperty(device->fd, props->props[i]);
83 plane->type = props->prop_values[i];
89 drmModeFreeObjectProperties(props);
  /external/lzma/CPP/7zip/UI/Console/
BenchCon.cpp 35 const CObjectVector<CProperty> &props, UInt32 numIterations, FILE *f)
40 &callback, NULL, props, numIterations, true);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
context.hpp 41 context(const property_list &props, const ref_vector<device> &devs,
62 property_list props; member in class:clover::context

Completed in 344 milliseconds

1 23 4 5 6 7 8 91011>>