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

1234567

/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/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-default.cc57 switch ((hb_tag_t) plan->props.script)
75 normalization_preference_default (const hb_segment_properties_t *props) argument
77 switch ((hb_tag_t) props->script)
H A Dhb-shape-plan-private.hh43 hb_segment_properties_t props; member in struct:hb_shape_plan_t
H A Dhb-ot-shape-private.hh40 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;
/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) {
/external/smack/asmack-master/static-src/custom/de/measite/smack/
H A DSaslClientFactory.java34 Map<String, ?> props, CallbackHandler cbh) throws SaslException {
44 props,
53 public String[] getMechanismNames(Map<String, ?> props) { argument
32 createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) argument
/external/smack/src/de/measite/smack/
H A DSaslClientFactory.java34 Map<String, ?> props, CallbackHandler cbh) throws SaslException {
44 props,
53 public String[] getMechanismNames(Map<String, ?> props) { argument
32 createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) argument
/external/smack/src/org/apache/harmony/javax/security/sasl/
H A DSaslClientFactory.java26 String serverName, Map<String, ?> props, CallbackHandler cbh) throws SaslException;
28 String[] getMechanismNames(Map<String, ?> props); argument
25 createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) argument
H A DSaslServerFactory.java26 Map<String, ?> props, CallbackHandler cbh) throws SaslException;
28 String[] getMechanismNames(Map<String, ?> props); argument
25 createSaslServer(String mechanisms, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) argument
/external/smack/src/org/apache/qpid/management/common/sasl/
H A DCRAMMD5HashedSaslClientFactory.java36 String serverName, Map<String, ?> props, CallbackHandler cbh)
49 return Sasl.createSaslClient(mechs, authorizationId, protocol, serverName, props, cbh);
55 public String[] getMechanismNames(Map props) argument
35 createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) argument
H A DClientSaslFactory.java32 String serverName, Map props, CallbackHandler cbh)
46 * Simple-minded implementation that ignores props
48 public String[] getMechanismNames(Map props) argument
31 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map props, CallbackHandler cbh) argument
/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)
/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

Completed in 265 milliseconds

1234567