/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/chromium_org/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...] |
/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/chromium_org/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/ |
devtools.js | 10 var props = Object.getOwnPropertyNames(data); 12 for (var i = 0; i < props.length; ++i) 13 copy[props[i]] = data[props[i]];
|
/frameworks/native/services/batteryservice/ |
IBatteryPropertiesListener.cpp | 32 void batteryPropertiesChanged(struct BatteryProperties props) 37 props.writeToParcel(&data);
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-shape-plan-private.hh | 43 hb_segment_properties_t props; member in struct:hb_shape_plan_t
|
hb-shape-plan.cc | 89 * @props: 102 const hb_segment_properties_t *props, 107 assert (props->direction != HB_DIRECTION_INVALID); 113 if (unlikely (!props || hb_object_is_inert (face))) 121 shape_plan->props = *props; 145 HB_SEGMENT_PROPERTIES_DEFAULT, /* props */ 268 assert (hb_segment_properties_equal (&shape_plan->props, &buffer->props)); 299 return hb_segment_properties_hash (&shape_plan->props) 307 const hb_segment_properties_t props; member in struct:hb_shape_plan_proposal_t [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/ |
queue.cpp | 30 cl_command_queue_properties props, 38 if (props & ~(CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE | 43 return new command_queue(*ctx, *dev, props); 88 q->props());
|
context.cpp | 29 clCreateContext(const cl_context_properties *props, cl_uint num_devs, 34 auto mprops = property_map(props); 60 clCreateContextFromType(const cl_context_properties *props, 74 return clCreateContext(props, 1, &dev, pfn_notify, user_data, errcode_ret); 115 ctx->props());
|
/external/harfbuzz_ng/src/ |
hb-shape-plan-private.hh | 43 hb_segment_properties_t props; member in struct:hb_shape_plan_t
|
/external/icu4c/common/ |
ubidi_props.h | 113 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK) 114 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
queue.cpp | 30 cl_command_queue_properties props, 38 if (props & ~(CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE | 43 return new command_queue(*ctx, *dev, props); 88 q->props());
|
context.cpp | 29 clCreateContext(const cl_context_properties *props, cl_uint num_devs, 34 auto mprops = property_map(props); 60 clCreateContextFromType(const cl_context_properties *props, 74 return clCreateContext(props, 1, &dev, pfn_notify, user_data, errcode_ret); 115 ctx->props());
|
/frameworks/native/include/batteryservice/ |
IBatteryPropertiesListener.h | 38 virtual void batteryPropertiesChanged(struct BatteryProperties props) = 0;
|
/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;
|