Searched defs:props (Results 1 - 25 of 250) sorted by path

12345678910

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DFileHandlerTest.java48 final static Properties props = new Properties(); field in class:FileHandlerTest
72 .PropertiesToInputStream(props));
80 props.clear();
81 props.put("java.util.logging.FileHandler.level", "FINE");
82 props.put("java.util.logging.FileHandler.filter", className
84 props.put("java.util.logging.FileHandler.formatter", className
86 props.put("java.util.logging.FileHandler.encoding", "iso-8859-1");
88 props.put("java.util.logging.FileHandler.limit", "1000");
90 props.put("java.util.logging.FileHandler.count", "2");
92 props
[all...]
H A DLogManagerTest.java55 Properties props; field in class:LogManagerTest
78 props = initProps();
82 Properties props = new Properties();
83 props.put("handlers", className + "$MockHandler " + className
85 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log");
86 props.put("java.util.logging.FileHandler.limit", "50000");
87 props.put("java.util.logging.FileHandler.count", "5");
88 props.put("java.util.logging.FileHandler.formatter",
90 props.put(".level", "FINE");
91 props
[all...]
H A DMemoryHandlerTest.java48 final static Properties props = new Properties(); field in class:MemoryHandlerTest
70 .PropertiesToInputStream(props));
80 props.put("java.util.logging.MemoryHandler.level", "FINE");
81 props.put("java.util.logging.MemoryHandler.filter", baseClassName
83 props.put("java.util.logging.MemoryHandler.size", "2");
84 props.put("java.util.logging.MemoryHandler.push", "WARNING");
85 props.put("java.util.logging.MemoryHandler.target", baseClassName
87 props.put("java.util.logging.MemoryHandler.formatter", baseClassName
97 props.clear();
170 props
[all...]
H A DSocketHandlerTest.java63 private Properties props; field in class:SocketHandlerTest
81 .PropertiesToInputStream(props));
93 props = new Properties();
94 props.put("handlers", className + "$MockHandler " + className
96 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log");
97 props.put("java.util.logging.FileHandler.limit", "50000");
98 props.put("java.util.logging.FileHandler.count", "5");
99 props.put("java.util.logging.FileHandler.formatter",
101 props.put(".level", "FINE");
102 props
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java96 static Hashtable<String, String> props = null; field in class:Support_Configuration
106 Hashtable<String, String> props = new Hashtable<String, String>();
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
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java381 * @param props the list of properties to search in.
385 public static QName getQNameProperty(String key, Properties props) argument
388 String s = props.getProperty(key);
478 * @param props the list of properties to search in.
482 public static Vector getQNameProperties(String key, Properties props) argument
485 String s = props.getProperty(key);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DSerializerSwitcher.java131 private static String getOutputPropertyNoDefault(String qnameString, Properties props) argument
134 String value = (String)props.get(qnameString);
150 String ns, String localName, Properties props, Serializer oldSerializer)
161 if (null != getOutputPropertyNoDefault(OutputKeys.METHOD, props))
166 Properties prevProperties = props;
149 switchSerializerIfHTML( String ns, String localName, Properties props, Serializer oldSerializer) argument
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertyUtils.java45 * @param props the list of properties that will be searched.
49 public static boolean getBooleanProperty(String key, Properties props) argument
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) argument
75 String s = props.getProperty(key);
H A DToStream.java629 Properties props = new Properties(def);
637 props.put(key, val);
640 return props;
2713 * @param props the list of properties to search in.
2722 private void setCdataSectionElements(String key, Properties props) argument
2725 String s = props.getProperty(key);
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine_browsertests.cc882 const ash::ime::InputMethodMenuItemList& props = local
885 ASSERT_EQ(5U, props.size());
887 EXPECT_EQ("ID0", props[0].key);
888 EXPECT_EQ("ID1", props[1].key);
889 EXPECT_EQ("ID2", props[2].key);
890 EXPECT_EQ("ID3", props[3].key);
891 EXPECT_EQ("ID4", props[4].key);
893 EXPECT_EQ("LABEL1", props[1].label);
894 EXPECT_EQ("LABEL2", props[2].label);
895 EXPECT_EQ("LABEL3", props[
[all...]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_remote_gatt_characteristic_chromeos.cc115 Properties props = kPropertyNone; local
121 props |= kPropertyBroadcast;
123 props |= kPropertyRead;
125 props |= kPropertyWriteWithoutResponse;
127 props |= kPropertyWrite;
129 props |= kPropertyNotify;
131 props |= kPropertyIndicate;
133 props |= kPropertyAuthenticatedSignedWrites;
135 props |= kPropertyExtendedProperties;
137 props |
[all...]
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc68 std::vector<Var> props; local
69 static_cast<ScriptableObject*>(object)->GetAllPropertyNames(&props, e.Get());
70 if (props.empty())
72 *property_count = static_cast<uint32_t>(props.size());
77 memory_if->MemAlloc(sizeof(PP_Var) * props.size()));
79 for (size_t i = 0; i < props.size(); ++i)
80 (*properties)[i] = props[i].Detach();
/external/chromium_org/ppapi/cpp/private/
H A Dvar_private.cc77 PP_Var* props = NULL;
80 var_, &prop_count, &props, OutException(exception).get());
85 Var temp(PassRef(), props[i]); local
90 memory_if->MemFree(props);
/external/chromium_org/ppapi/proxy/
H A Dppb_var_deprecated_proxy.cc426 SerializedVarVectorOutParam props,
430 props.CountOutParam(), props.ArrayOutParam(dispatcher()),
424 OnMsgEnumerateProperties( SerializedVarReceiveInput var, SerializedVarVectorOutParam props, SerializedVarOutParam exception) argument
H A Dppp_class_proxy.cc313 std::vector<SerializedVar>* props,
311 OnMsgEnumerateProperties( int64 ppp_class, int64 object, std::vector<SerializedVar>* props, SerializedVarOutParam exception) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js1308 initialize: function(tag, props){
1310 if (konstructor) return konstructor(props);
1311 if (typeof tag == 'string') return document.newElement(tag, props);
1312 return $(tag).set(props);
1343 var props = params.properties || {};
1345 var onload = props.onload || $empty;
1346 delete props.onload;
1347 props.id = props.name = $pick(props
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-buffer-private.hh57 hb_segment_properties_t props; /* Script, language, direction */ member in struct:hb_buffer_t
H A Dhb-ot-layout-private.hh345 _hb_glyph_info_set_glyph_props (hb_glyph_info_t *info, unsigned int props) argument
347 info->glyph_props() = props;
453 /* Make sure no one directly touches our props... */
H A Dhb-ot-map-private.hh232 hb_segment_properties_t props; variable
H A Dhb-ot-shape-private.hh39 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) ?
H A Dhb-ot-shape.cc70 const hb_segment_properties_t *props,
76 switch (props->direction) {
102 if (HB_DIRECTION_IS_HORIZONTAL (props->direction))
177 hb_ot_shape_collect_features (&planner, &shape_plan->props, user_features, num_user_features);
277 hb_direction_t direction = buffer->props.direction;
283 if ((HB_DIRECTION_IS_HORIZONTAL (direction) && direction != hb_script_get_horizontal_direction (buffer->props.script)) ||
287 buffer->props.direction = HB_DIRECTION_REVERSE (buffer->props.direction);
518 hb_direction_t direction = c->buffer->props.direction;
552 HB_DIRECTION_IS_BACKWARD (c->buffer->props
69 hb_ot_shape_collect_features(hb_ot_shape_planner_t *planner, const hb_segment_properties_t *props, const hb_feature_t *user_features, unsigned int num_user_features) argument
[all...]

Completed in 2991 milliseconds

12345678910