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

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/samples/props/
Makefile 12 TARGET=props
15 OBJECTS=props.o
  /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/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-getall.py 12 props = wpas_obj.GetAll("fi.w1.wpa_supplicant1",
15 print props
25 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface",
29 print props
31 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface.WPS",
35 print props
41 props = bss_obj.GetAll("fi.w1.wpa_supplicant1.BSS",
45 print props
51 props = net_obj.GetAll("fi.w1.wpa_supplicant1.Network",
55 print props
    [all...]
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/clang/lib/ARCMigrate/
TransProperties.cpp 87 PropsTy &props = AtProps[RawLoc]; local
88 props.push_back(*propI);
119 PropsTy &props = findAtLoc->second; local
120 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) {
132 PropsTy &props = I->second; local
133 if (!getPropertyType(props)->isObjCRetainableType())
135 if (hasIvarWithExplicitARCOwnership(props))
139 rewriteProperty(props, atLoc);
154 PropsTy &props = I->second local
    [all...]
  /external/icu4c/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 113 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
114 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
  /external/harfbuzz_ng/src/
hb-ot-shape-private.hh 40 hb_segment_properties_t props; member in struct:hb_ot_shape_plan_t
65 hb_segment_properties_t props; member in struct:hb_ot_shape_planner_t
71 props (master_plan->props),
73 map (face, &props) {}
78 plan.props = props;
hb-shape-plan-private.hh 43 hb_segment_properties_t props; member in struct:hb_shape_plan_t
hb-shape-plan.cc 88 const hb_segment_properties_t *props,
93 assert (props->direction != HB_DIRECTION_INVALID);
99 if (unlikely (!props || hb_object_is_inert (face)))
107 shape_plan->props = *props;
122 HB_SEGMENT_PROPERTIES_DEFAULT, /* props */
188 assert (hb_segment_properties_equal (&shape_plan->props, &buffer->props));
219 return hb_segment_properties_hash (&shape_plan->props) +
227 const hb_segment_properties_t props; member in struct:hb_shape_plan_proposal_t
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslClientFactory.java 26 String serverName, Map<String, ?> props, CallbackHandler cbh) throws SaslException;
28 String[] getMechanismNames(Map<String, ?> props);
SaslServerFactory.java 26 Map<String, ?> props, CallbackHandler cbh) throws SaslException;
28 String[] getMechanismNames(Map<String, ?> props);
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLGSSAPIMechanism.java 63 Map<String,String> props = new HashMap<String,String>(); local
64 props.put(Sasl.SERVER_AUTH,"TRUE");
65 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh);
82 Map<String,String> props = new HashMap<String, String>(); local
83 props.put(Sasl.SERVER_AUTH,"TRUE");
84 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
  /external/icu4c/tools/toolutil/
ppucd.cpp 205 UniProps *props; local
222 props=&defaultProps;
227 props=&blockProps;
246 props=&cpProps;
253 props->start=start;
254 props->end=end;
256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; }
258 return props;
272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
314 props.binProps[prop]=(UBool)binaryValue
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 114 static Hashtable<String, String> props = null; field in class:Support_Configuration
123 Hashtable<String, String> props = new Hashtable<String, String>(); local
145 load(in, props);
149 if (props.size() == 0) {
154 value = props.get("DomainAddress");
159 value = props.get("WebName");
164 value = props.get("TestResourcesDir");
168 value = props.get("HomeAddressResponse");
173 value = props.get("HomeAddressSoftware");
178 value = props.get("SocksServerTestHost")
    [all...]
  /external/v8/test/mjsunit/
for-in.js 28 function props(x) { function
34 assertEquals(0, props({}).length, "olen0");
35 assertEquals(1, props({x:1}).length, "olen1");
36 assertEquals(2, props({x:1, y:2}).length, "olen2");
38 assertArrayEquals(["x"], props({x:1}), "x");
39 assertArrayEquals(["x", "y"], props({x:1, y:2}), "xy");
40 assertArrayEquals(["x", "y", "zoom"], props({x:1, y:2, zoom:3}), "xyzoom");
42 assertEquals(0, props([]).length, "alen0");
43 assertEquals(1, props([1]).length, "alen1");
44 assertEquals(2, props([1,2]).length, "alen2")
    [all...]
simple-constructor.js 28 function props(x) { function
59 assertArrayEquals(["x"], props(o1_1), "3");
60 assertArrayEquals(["x"], props(o1_2), "4");
64 assertArrayEquals(["x"], props(o2_1));
65 assertArrayEquals(["x"], props(o2_2));
69 assertArrayEquals(["x", "y", "z"], props(o3_1));
70 assertArrayEquals(["x", "y", "z"], props(o3_2));
74 assertArrayEquals(["x", "y", "z"], props(o4_0_1));
75 assertArrayEquals(["x", "y", "z"], props(o4_0_2));
79 assertArrayEquals(["x", "y"], props(o4_1_1))
    [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");
  /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
105 Hashtable<String, String> props = new Hashtable<String, String>(); local
130 load(in, props);
134 if (props.size() == 0) {
139 value = props.get("DomainAddress");
144 value = props.get("WebName");
149 value = props.get("TestResourcesDir");
153 value = props.get("HomeAddressResponse");
158 value = props.get("HomeAddressSoftware");
163 value = props.get("ProxyServerTestHost")
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
speech_synthesis_library.cc 33 bool SetSpeakProperties(const char* props) {
34 return chromeos::SetSpeakProperties(props);
58 bool SetSpeakProperties(const char* props) { return true; }
speech_synthesis_library.h 25 virtual bool SetSpeakProperties(const char* props) = 0;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
weight.h 126 uint64 props = kIdempotent | kLeftSemiring | kRightSemiring; local
127 if (W::Properties() & props != props)
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
MemoryHandlerTest.java 48 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.remove("java.util.logging.MemoryHandler.target")
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/settings/
WorkgroupProperties.java 101 WorkgroupProperties props = new WorkgroupProperties(); local
109 props.setAuthRequired(new Boolean(parser.nextText()).booleanValue());
112 props.setEmail(parser.nextText());
115 props.setFullName(parser.nextText());
122 return props;

Completed in 741 milliseconds

1 2 3 4 5 6 7 8 91011>>