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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/
XMLUtils.java 70 static void load(Properties props, InputStream in)
87 importProperties(props, propertiesElement);
112 static void importProperties(Properties props, Element propertiesElement) {
126 props.setProperty(entry.getAttribute("key"), val);
131 static void save(Properties props, OutputStream os, String comment,
152 synchronized (props) {
153 for (String key : props.stringPropertyNames()) {
157 entry.appendChild(doc.createTextNode(props.getProperty(key)));
  /system/core/healthd/
charger.cpp 38 struct android::BatteryProperties *props);
46 struct android::BatteryProperties *props);
79 struct android::BatteryProperties* /*props*/) {
  /cts/apps/CameraITS/tests/scene1/
test_param_tonemap_mode.py 40 props = cam.get_camera_properties()
41 its.caps.skip_unless(its.caps.compute_target_exposure(props) and
42 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)
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
Util.java 70 Properties props = new Properties(); local
74 props.load(in);
78 return Maps.fromProperties(props);
86 Map<String, T> props, String prefix) {
88 for (Map.Entry<String, T> entry : props.entrySet()) {
  /external/rmi4utils/rmi4update/
main.cpp 46 fprintf(stdout, "\t-p, --fw-props\tPrint the firmware properties.\n");
74 int GetFirmwareProps(const char * deviceFile, std::string &props)
94 props = ss.str();
112 {"fw-props", 0, NULL, 'p'},
149 std::string props; local
155 rc = GetFirmwareProps(deviceName, props);
160 fprintf(stdout, "%s\n", props.c_str());
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/analytics/
AnalyticsUtilsTest.java 133 Properties props = new Properties(); local
135 props.setProperty(EXTRA_PROVISIONING_MAIN_COLOR, "");
136 props.setProperty(INVALID_PROVISIONING_EXTRA, "");
137 props.setProperty(EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME, "");
138 props.store(stream, "NFC provisioning intent" /* data description */);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLListProperty.java 50 private GLListProperty(GLStateType type, List<IGLProperty> props) {
51 mList = props;
90 List<IGLProperty> props = new ArrayList<IGLProperty>( local
94 props.add(p.clone());
97 return new GLListProperty(getType(), props);
  /external/v8/src/
d8.js 59 var props = [];
68 props.push(name + ": " + Stringify(desc.value, depth - 1));
72 props.push("get " + name + getter.slice(getter.indexOf('(')));
76 props.push("set " + name + setter.slice(setter.indexOf('(')));
79 return "{" + props.join(", ") + "}";
  /frameworks/base/libs/hwui/tests/common/scenes/
TvApp.cpp 97 [this, width, height, color](RenderProperties& props, Canvas& canvas) {
108 [bitmap](RenderProperties& props, Canvas& canvas) {
116 [text, text2](RenderProperties& props, Canvas& canvas) {
134 [color](RenderProperties& props, Canvas& canvas) {
148 RenderProperties& props,
151 props.setElevation(dp(16));
152 props.setScaleX(1.2);
153 props.setScaleY(1.2);
155 props.mutableOutline().setRoundRect(0, 0, width, height, roundedCornerRadius(), 1);
156 props.mutableOutline().setShouldClip(true)
    [all...]
  /external/skia/src/core/
SkSpecialImage.cpp 37 SkSpecialImage_Base(const SkIRect& subset, uint32_t uniqueID, const SkSurfaceProps* props)
38 : INHERITED(subset, uniqueID, props) {
75 const SkSurfaceProps* props)
76 : fProps(SkSurfacePropsCopyOrDefault(props))
101 return SkSpecialImage::MakeFromRaster(SkIRect::MakeEmpty(), bmp, &this->props());
120 &this->props(),
189 const SkSurfaceProps* props) {
197 as_IB(image)->onImageInfo().refColorSpace(), props);
203 return MakeFromRaster(subset, bm, props);
213 SkSpecialImage_Raster(const SkIRect& subset, const SkBitmap& bm, const SkSurfaceProps* props)
    [all...]
  /external/skqp/src/core/
SkSpecialImage.cpp 37 SkSpecialImage_Base(const SkIRect& subset, uint32_t uniqueID, const SkSurfaceProps* props)
38 : INHERITED(subset, uniqueID, props) {
75 const SkSurfaceProps* props)
76 : fProps(SkSurfacePropsCopyOrDefault(props))
100 return SkSpecialImage::MakeFromRaster(SkIRect::MakeEmpty(), bmp, &this->props());
120 &this->props(),
189 const SkSurfaceProps* props) {
197 as_IB(image)->onImageInfo().refColorSpace(), props);
203 return MakeFromRaster(subset, bm, props);
213 SkSpecialImage_Raster(const SkIRect& subset, const SkBitmap& bm, const SkSurfaceProps* props)
    [all...]
  /external/adhd/scripts/audio_thread_log_viewer/
viewer_c3.py 415 into time, name, and props where
418 props = {
432 props = {}
435 props[key] = value
436 logging.debug('props: %s', props)
437 return self._CreateEventData(time, name, props)
439 def _CreateEventData(self, time, name, props):
444 @param props: A dict for event properties.
450 return FetchStreamEvent(time, name, stream=props['id']
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 422 Properties props = getConfigurationFile(contextClassLoader, FACTORY_PROPERTIES); local
427 if (props != null) {
428 String useTCCLStr = props.getProperty(TCCL_KEY);
563 if (props != null) {
570 String factoryClass = props.getProperty(FACTORY_PROPERTY);
624 if( props!=null ) {
625 Enumeration names = props.propertyNames();
628 String value = props.getProperty(name);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 355 Properties props = new Properties(defaults); local
381 props.load(bis);
442 Enumeration keys = ((Properties) props.clone()).keys();
459 value = (String) props.get(key);
478 props.remove(key);
479 props.put(newKey, newValue);
484 return props;
  /external/iproute2/tipc/
media.c 69 struct nlattr *props[TIPC_NLA_PROP_MAX + 1] = {}; local
79 mnl_attr_parse_nested(attrs[TIPC_NLA_MEDIA_PROP], parse_attrs, props);
80 if (!props[*prop])
83 printf("%u\n", mnl_attr_get_u32(props[*prop]));
172 struct nlattr *props; local
215 props = mnl_attr_nest_start(nlh, TIPC_NLA_MEDIA_PROP);
217 mnl_attr_nest_end(nlh, props);
  /external/skia/infra/bots/recipes/
bookmaker.py 108 props = out[fiddle_name]
109 if props['compile_errors'] or props['runtime_error']:
111 error = props['runtime_error']
112 if props['compile_errors']:
113 for e in props['compile_errors']:
115 failing_fiddles_to_errors[props['fiddleHash']] = error
  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceUtil.cpp 103 const VkPhysicalDeviceProperties props = getPhysicalDeviceProperties(vkInstance, devices[deviceNdx]); local
105 if (props.apiVersion > maxReportedApiVersion)
107 maxReportedApiVersion = props.apiVersion;
  /external/lzma/C/
Lzma2Dec.c 27 S - Props
63 static SRes Lzma2Dec_GetOldProps(Byte prop, Byte *props)
69 props[0] = (Byte)LZMA2_LCLP_MAX;
70 props[1] = (Byte)(dicSize);
71 props[2] = (Byte)(dicSize >> 8);
72 props[3] = (Byte)(dicSize >> 16);
73 props[4] = (Byte)(dicSize >> 24);
79 Byte props[LZMA_PROPS_SIZE]; local
80 RINOK(Lzma2Dec_GetOldProps(prop, props));
81 return LzmaDec_AllocateProbs(&p->decoder, props, LZMA_PROPS_SIZE, alloc);
86 Byte props[LZMA_PROPS_SIZE]; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/api/
context.cpp 35 auto props = obj<property_list_tag>(d_props); local
41 for (auto &prop : props) {
54 return desc(new context(props, devs, notify));
  /external/skqp/src/gpu/text/
GrTextUtils.h 110 RunPaint(const Paint* paint, SkDrawFilter* filter, const SkSurfaceProps& props)
111 : fOriginalPaint(paint), fFilter(filter), fProps(props) {
138 const SkSurfaceProps& props, const GrClip& clip,
  /external/v8/src/parsing/
parameter-initializer-rewriter.cc 51 ZoneList<ClassLiteralProperty*>* props = class_literal->properties(); local
52 for (int i = 0; i < props->length(); ++i) {
53 ClassLiteralProperty* prop = props->at(i);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/analytics/
AnalyticsUtils.java 125 Properties props = new Properties(); local
126 props.load(new StringReader(new String(firstRecord.getPayload(), UTF_8)));
127 final Set<String> keys = props.stringPropertyNames();
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 649 PROPVARIANT props[kNumPropsMax]; local
651 props[p].vt = VT_UI4;
653 props[0].ulVal = (UInt32)dict;
654 props[1].ulVal = (UInt32)pb;
655 props[2].ulVal = (UInt32)lc;
656 props[3].ulVal = (UInt32)lp;
657 props[4].ulVal = (UInt32)algo;
658 props[5].ulVal = (UInt32)fb;
660 props[6].vt = VT_BSTR;
661 props[6].bstrVal = const_cast<BSTR>((const wchar_t *)mf);
    [all...]
  /art/compiler/debug/
elf_gnu_debugdata_writer.h 42 CXzProps props; local
43 XzProps_Init(&props);
44 props.lzma2Props = &lzma2Props;
75 SRes res = Xz_Encode(&callbacks, &callbacks, &props, &callbacks);
  /build/soong/python/
defaults.go 40 func DefaultsFactory(props ...interface{}) android.Module {
43 module.AddProperties(props...)

Completed in 406 milliseconds

1 2 3 4 5 6 7 8 91011>>