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

1 2 3 4 5 6 7 8 9

  /external/icu4c/samples/props/
readme.txt 2 props: Unicode Character Properties
9 props.cpp Main source file in C++
10 props.sln Windows MSVC workspace. Double-click this to get started.
11 props.vcproj Windows MSVC project file
13 To Build props on Windows
15 2. In MSVC, open the workspace file icu\samples\props\props.sln
24 3. cd into the props directory, e.g.
25 cd c:\icu\source\samples\props\debug
27 props
    [all...]
Makefile 12 TARGET=props
15 OBJECTS=props.o
props.vcproj 5 Name="props"
44 TypeLibraryName=".\x86\Release/props.tlb"
56 PrecompiledHeaderFile=".\x86\Release/props.pch"
78 OutputFile=".\x86\Release/props.exe"
82 ProgramDatabaseFile=".\x86\Release/props.pdb"
134 TypeLibraryName=".\x64\Release/props.tlb"
146 PrecompiledHeaderFile=".\x64\Release/props.pch"
168 OutputFile=".\x64\Release/props.exe"
172 ProgramDatabaseFile=".\x64\Release/props.pdb"
224 TypeLibraryName=".\x86\Debug/props.tlb
    [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...]
undeletable-functions.js 105 function CheckEcmaSemantics(type, props, name) {
107 for (var i = 0; i < props.length; i++) {
108 CheckDeletable(type, props[i]);
113 function CheckJSCSemantics(type, props, name) {
115 for (var i = 0; i < props.length; i++) {
116 CheckNotDeletable(type, props[i]);
121 function CheckDontDelete(type, props, name) {
123 for (var i = 0; i < props.length; i++) {
124 CheckDontDeleteAttr(type, props[i]);
  /external/wpa_supplicant_6/wpa_supplicant/examples/
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/icu4c/common/
uchar.c 266 uint32_t props; local
267 GET_PROPS(c, props);
268 return (int8_t)GET_CATEGORY(props);
310 uint32_t props; local
311 GET_PROPS(c, props);
312 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER);
318 uint32_t props; local
319 GET_PROPS(c, props);
320 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER);
326 uint32_t props; local
334 uint32_t props; local
341 uint32_t props; local
358 uint32_t props; local
371 uint32_t props; local
388 uint32_t props; local
396 uint32_t props; local
404 uint32_t props; local
421 uint32_t props; local
428 uint32_t props; local
436 uint32_t props; local
451 uint32_t props; local
465 uint32_t props; local
478 uint32_t props; local
489 uint32_t props; local
506 uint32_t props; local
517 uint32_t props; local
526 uint32_t props; local
535 uint32_t props; local
552 uint32_t props; local
561 uint32_t props; local
571 uint32_t props; local
585 uint32_t props; local
597 uint32_t props, numericType, numericValue; local
716 uint32_t props; local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
MinToolsPackage.java 59 * Properties from props are used first when possible, e.g. if props is non null.
65 Properties props,
73 super(source, props, revision, license, description, descUrl,
77 getProperty(props, PROP_MIN_TOOLS_REV, Integer.toString(MIN_TOOLS_REV_NOT_SPECIFIED)));
89 void saveProperties(Properties props) {
90 super.saveProperties(props);
93 props.setProperty(PROP_MIN_TOOLS_REV, Integer.toString(getMinToolsRevision()));
Package.java 105 * Properties from props are used first when possible, e.g. if props is non null.
111 Properties props,
127 mRevision = Integer.parseInt(getProperty(props, PROP_REVISION, Integer.toString(revision)));
128 mLicense = getProperty(props, PROP_LICENSE, license);
129 mDescription = getProperty(props, PROP_DESC, description);
130 mDescUrl = getProperty(props, PROP_DESC_URL, descUrl);
131 mReleaseNote = getProperty(props, PROP_RELEASE_NOTE, "");
132 mReleaseUrl = getProperty(props, PROP_RELEASE_URL, "");
133 mObsolete = getProperty(props, PROP_OBSOLETE, null);
    [all...]
LocalSdkParser.java 99 Properties props = parseProperties(new File(target.getLocation(), local
104 pkg = new PlatformPackage(target, props);
122 pkg = new AddonPackage(target, props);
160 Properties props = parseProperties(new File(dir, SdkConstants.FN_SOURCE_PROP)); local
161 if (props != null) {
165 props, //properties
209 Properties props = parseProperties(new File(dir, SdkConstants.FN_SOURCE_PROP)); local
210 if (props != null) {
212 SamplePackage pkg = new SamplePackage(dir.getAbsolutePath(), props);
229 Properties props = parseProperties(new File(toolFolder, SdkConstants.FN_SOURCE_PROP)); local
270 Properties props = parseProperties(new File(docFolder, SdkConstants.FN_SOURCE_PROP)); local
309 Properties props = new Properties(); local
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-3867.js 28 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(o1))
    [all...]
  /external/icu4c/tools/genprops/
genprops.h 34 } Props;
65 makeProps(Props *p);
68 addProps(uint32_t c, uint32_t props);
74 repeatProps(uint32_t first, uint32_t last, uint32_t props);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
Header.java 37 private ArrayList<String> props; field in class:Header
50 this.props = new ArrayList<String>(20);
65 props.add(key);
70 props.add(element);
81 clone.props = (ArrayList<String>) props.clone();
114 props.add(key);
115 props.add(value);
138 for (int i = 0; i < props.size(); i += 2) {
139 String propKey = props.get(i)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.3.1-2.js 47 array[item++] = new TestCase( SECTION, "var props = ''; for ( p in Array ) { props += p } props", "", eval("var props = ''; for ( p in Array ) { props += p } props") );
15.4.5.2-1.js 64 "var A = new Array(); A.length = 123; var PROPS = ''; for ( var p in A ) { PROPS += ( p == 'length' ? p : ''); } PROPS",
66 eval("var A = new Array(); A.length = 123; var PROPS = ''; for ( var p in A ) { PROPS += ( p == 'length' ? p : ''); } PROPS") );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.5.1.js 62 "var s = new String(); var props = ''; for ( var p in s ) { props += p; }; props",
64 eval("var s = new String(); var props = ''; for ( var p in s ) { props += p; }; props") );
  /dalvik/libcore/support/src/test/java/tests/support/
Support_Configuration.java 140 static Hashtable<String, String> props = null; field in class:Support_Configuration
149 Hashtable<String, String> props = new Hashtable<String, String>(); local
174 load(in, props);
178 if (props.size() == 0) {
183 value = props.get("DomainAddress");
188 value = props.get("WebName");
193 value = props.get("TestResourcesDir");
197 value = props.get("HomeAddressResponse");
202 value = props.get("HomeAddressSoftware");
207 value = props.get("ProxyServerTestHost")
    [all...]
  /dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
MemoryHandlerTest.java 55 final static Properties props = new Properties(); field in class:MemoryHandlerTest
79 .PropertiesToInputStream(props));
89 props.put("java.util.logging.MemoryHandler.level", "FINE");
90 props.put("java.util.logging.MemoryHandler.filter", baseClassName
92 props.put("java.util.logging.MemoryHandler.size", "2");
93 props.put("java.util.logging.MemoryHandler.push", "WARNING");
94 props.put("java.util.logging.MemoryHandler.target", baseClassName
96 props.put("java.util.logging.MemoryHandler.formatter", baseClassName
106 props.clear();
274 props.clear()
    [all...]
LogManagerTest.java 67 Properties props; field in class:LogManagerTest
92 props = new Properties();
93 props.put("handlers", className + "$MockHandler " + className + "$MockHandler");
94 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log");
95 props.put("java.util.logging.FileHandler.limit", "50000");
96 props.put("java.util.logging.FileHandler.count", "5");
97 props.put("java.util.logging.FileHandler.formatter", "java.util.logging.XMLFormatter");
98 props.put(".level", "FINE");
99 props.put("java.util.logging.ConsoleHandler.level", "OFF");
100 props.put("java.util.logging.ConsoleHandler.formatter","java.util.logging.SimpleFormatter")
1267 Properties props = new Properties(); local
    [all...]
  /sdk/emulator/tools/
Android.mk 23 # The 'qemu-props' program is run from /system/etc/init.goldfish.rc
27 LOCAL_MODULE := qemu-props
28 LOCAL_SRC_FILES := qemu-props.c
  /dalvik/libcore/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/webkit/WebCore/platform/graphics/wx/
SimpleFontDataWx.cpp 50 wxFontProperties props = wxFontProperties(font); local
51 m_ascent = props.GetAscent();
52 m_descent = props.GetDescent();
53 m_lineSpacing = props.GetLineSpacing();
54 m_xHeight = props.GetXHeight();
56 m_lineGap = props.GetLineGap();
  /sdk/sdkmanager/libs/sdklib/tests/com/android/sdklib/internal/repository/
MockPlatformPackage.java 41 this(new MockPlatformTarget(apiLevel, revision), null /*props*/);
57 private MockPlatformPackage(IAndroidTarget target, Properties props) {
58 super(target, props);
63 Properties props = new Properties(); local
64 props.setProperty(PlatformPackage.PROP_MIN_TOOLS_REV, Integer.toString((min_tools_rev)));
65 return props;
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
ScriptRunner.java 53 Properties props = new Properties(); local
56 props.setProperty("python.verbose", "error");
57 props.setProperty("python.path", System.getProperty("java.class.path"));
58 PythonInterpreter.initialize(System.getProperties(), props, new String[] {""}); local

Completed in 211 milliseconds

1 2 3 4 5 6 7 8 9