Searched defs:props (Results 1 - 25 of 137) sorted by relevance

123456

/external/v8/test/mjsunit/harmony/
H A Dblock-for.js33 function props(x) { function
39 assertEquals(0, props({}).length);
40 assertEquals(1, props({x:1}).length);
41 assertEquals(2, props({x:1, y:2}).length);
43 assertArrayEquals(["x"], props({x:1}));
44 assertArrayEquals(["x", "y"], props({x:1, y:2}));
45 assertArrayEquals(["x", "y", "zoom"], props({x:1, y:2, zoom:3}));
47 assertEquals(0, props([]).length);
48 assertEquals(1, props([1]).length);
49 assertEquals(2, props([
[all...]
H A Dcollections.js174 function props(x) {
179 assertArrayEquals([], props(func));
180 assertArrayEquals([], props(func.prototype));
181 assertArrayEquals([], props(new func()));
/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);
/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/bluetooth/bluez/test/
H A Dtest-telephony80 props = headset.GetProperties() variable
81 print props['SpeakerGain']
95 props = headset.GetProperties() variable
96 print props['MicrophoneGain']
/external/openfst/src/include/fst/
H A Drmfinalepsilon.h44 uint64 props = 0; local
45 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props);
H A Dclosure.h51 uint64 props = fst->Properties(kFstProperties, false); local
69 fst->SetProperties(ClosureProperties(props, closure_type == CLOSURE_STAR),
H A Dinvert.h44 uint64 Properties(uint64 props) { return InvertProperties(props); } argument
H A Dlexicographic-weight.h62 uint64 props = kPath; local
63 if ((W1::Properties() & props) != props) {
68 if ((W2::Properties() & props) != props) {
H A Dproject.h58 uint64 Properties(uint64 props) { argument
59 return ProjectProperties(props, project_type_ == PROJECT_INPUT);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Drmfinalepsilon.h38 uint64 props = 0; local
39 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props);
H A Dinvert.h35 uint64 Properties(uint64 props) { return InvertProperties(props); } argument
H A Dweight.h126 uint64 props = kIdempotent | kLeftSemiring | kRightSemiring; local
127 if (W::Properties() & props != props)
H A Dclosure.h44 uint64 props = fst->Properties(kFstProperties, false); local
61 fst->SetProperties(ClosureProperties(props, closure_type == CLOSURE_STAR),
H A Dproject.h43 uint64 Properties(uint64 props) { argument
44 return ProjectProperties(props, project_type_ == PROJECT_INPUT);
/external/v8/test/mjsunit/
H A Dfor-in.js28 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([
[all...]
H A Dsimple-constructor.js28 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_
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-3867.js28 function props(x) { function
52 assertArrayEquals(["a1", "a2", "a3"], props(new A()));
53 assertArrayEquals(["b3", "b2", "b1"], props(new B()));
54 assertArrayEquals(["c3", "c1", "c2"], props(new C()));
55 assertArrayEquals(["s1", "s2", "s3"], props({s1: 0, s2: 0, s3: 0}));
56 assertArrayEquals(["s3", "s2", "s1"], props({s3: 0, s2: 0, s1: 0}));
57 assertArrayEquals(["s3", "s1", "s2"], props({s3: 0, s1: 0, s2: 0}));
62 assertArrayEquals(["a1", "a2", "a3", "a0", "a4"], props(a));
67 assertArrayEquals(["b3", "b2", "b1", "b4", "b0"], props(b));
72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o
[all...]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/support/
H A DTestUtils.java90 * @param props -
96 public static String createJavaPropertiesFile(Properties props) argument
113 props.store(out, null);
/external/chromium/chrome/browser/chromeos/cros/
H A Dspeech_synthesis_library.cc33 bool SetSpeakProperties(const char* props) { argument
34 return chromeos::SetSpeakProperties(props);
58 bool SetSpeakProperties(const char* props) { return true; } argument
/external/qemu/distrib/sdl-1.2.12/src/video/photon/
H A DSDL_phyuv_c.h37 PgScalerProps_t props; member in struct:private_yuvhwdata
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DSimpleFontDataWx.cpp55 wxFontProperties props = wxFontProperties(font); local
56 m_fontMetrics.setAscent(props.GetAscent());
57 m_fontMetrics.setDescent(props.GetDescent());
58 m_fontMetrics.setXHeight(props.GetXHeight());
60 m_fontMetrics.setLineGap(props.GetLineGap());
61 m_fontMetrics.setLineSpacing(props.GetLineSpacing());
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
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...]
/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
105 Hashtable<String, String> props = new Hashtable<String, String>();
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
[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);

Completed in 497 milliseconds

123456