/external/icu/icu4c/source/common/ |
D | uchar.c | 58 uint32_t props; in u_charType() local 59 GET_PROPS(c, props); in u_charType() 60 return (int8_t)GET_CATEGORY(props); in u_charType() 98 uint32_t props; in u_islower() local 99 GET_PROPS(c, props); in u_islower() 100 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower() 106 uint32_t props; in u_isupper() local 107 GET_PROPS(c, props); in u_isupper() 108 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper() 114 uint32_t props; in u_istitle() local [all …]
|
D | ubidi_props.c | 133 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getClass() local 134 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass() 139 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isMirrored() local 140 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored() 144 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) { in getMirror() argument 145 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror() 177 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getMirror() local 178 return getMirror(bdp, c, props); in ubidi_getMirror() 183 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isBidiControl() local 184 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT); in ubidi_isBidiControl() [all …]
|
D | ucase.cpp | 86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT)) argument 88 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION) argument 136 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_tolower() local 137 if(!PROPS_HAS_EXCEPTION(props)) { in ucase_tolower() 138 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) { in ucase_tolower() 139 c+=UCASE_GET_DELTA(props); in ucase_tolower() 142 const uint16_t *pe=GET_EXCEPTIONS(csp, props); in ucase_tolower() 153 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_toupper() local 154 if(!PROPS_HAS_EXCEPTION(props)) { in ucase_toupper() 155 if(UCASE_GET_TYPE(props)==UCASE_LOWER) { in ucase_toupper() [all …]
|
D | ubidi_props.h | 121 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK) argument 122 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1) argument 125 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT) argument 127 … define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_S… argument
|
/external/chromium_org/third_party/icu/source/common/ |
D | uchar.c | 58 uint32_t props; in u_charType() local 59 GET_PROPS(c, props); in u_charType() 60 return (int8_t)GET_CATEGORY(props); in u_charType() 98 uint32_t props; in u_islower() local 99 GET_PROPS(c, props); in u_islower() 100 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower() 106 uint32_t props; in u_isupper() local 107 GET_PROPS(c, props); in u_isupper() 108 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper() 114 uint32_t props; in u_istitle() local [all …]
|
D | ubidi_props.c | 133 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getClass() local 134 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass() 139 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isMirrored() local 140 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored() 144 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) { in getMirror() argument 145 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror() 177 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getMirror() local 178 return getMirror(bdp, c, props); in ubidi_getMirror() 183 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isBidiControl() local 184 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT); in ubidi_isBidiControl() [all …]
|
D | ucase.cpp | 86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT)) argument 88 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION) argument 136 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_tolower() local 137 if(!PROPS_HAS_EXCEPTION(props)) { in ucase_tolower() 138 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) { in ucase_tolower() 139 c+=UCASE_GET_DELTA(props); in ucase_tolower() 142 const uint16_t *pe=GET_EXCEPTIONS(csp, props); in ucase_tolower() 153 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_toupper() local 154 if(!PROPS_HAS_EXCEPTION(props)) { in ucase_toupper() 155 if(UCASE_GET_TYPE(props)==UCASE_LOWER) { in ucase_toupper() [all …]
|
D | ubidi_props.h | 121 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK) argument 122 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1) argument 125 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT) argument 127 … define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_S… argument
|
/external/clang/lib/ARCMigrate/ |
D | TransProperties.cpp | 86 PropsTy &props = AtProps[RawLoc]; in collectProperties() local 87 props.push_back(Prop); in collectProperties() 118 PropsTy &props = findAtLoc->second; in doTransform() local 119 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) { in doTransform() 131 PropsTy &props = I->second; in doTransform() local 132 if (!getPropertyType(props)->isObjCRetainableType()) in doTransform() 134 if (hasIvarWithExplicitARCOwnership(props)) in doTransform() 138 rewriteProperty(props, atLoc); in doTransform() 149 PropsTy &props = I->second; in doTransform() local 151 doActionForExtensionProp(props, atLoc); in doTransform() [all …]
|
/external/chromium_org/v8/test/mjsunit/ |
D | 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 …]
|
D | 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/chromium_org/v8/test/mjsunit/harmony/ |
D | block-for.js | 32 function props(x) { function 38 assertEquals(0, props({}).length); 39 assertEquals(1, props({x:1}).length); 40 assertEquals(2, props({x:1, y:2}).length); 42 assertArrayEquals(["x"], props({x:1})); 43 assertArrayEquals(["x", "y"], props({x:1, y:2})); 44 assertArrayEquals(["x", "y", "zoom"], props({x:1, y:2, zoom:3})); 46 assertEquals(0, props([]).length); 47 assertEquals(1, props([1]).length); 48 assertEquals(2, props([1,2]).length); [all …]
|
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
D | LzmaLib.c | 27 CLzmaEncProps props; in LzmaCompress() local 28 LzmaEncProps_Init(&props); in LzmaCompress() 29 props.level = level; in LzmaCompress() 30 props.dictSize = dictSize; in LzmaCompress() 31 props.lc = lc; in LzmaCompress() 32 props.lp = lp; in LzmaCompress() 33 props.pb = pb; in LzmaCompress() 34 props.fb = fb; in LzmaCompress() 35 props.numThreads = numThreads; in LzmaCompress() 37 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0, in LzmaCompress() [all …]
|
/external/lzma/C/ |
D | LzmaLib.c | 26 CLzmaEncProps props; in LzmaCompress() local 27 LzmaEncProps_Init(&props); in LzmaCompress() 28 props.level = level; in LzmaCompress() 29 props.dictSize = dictSize; in LzmaCompress() 30 props.lc = lc; in LzmaCompress() 31 props.lp = lp; in LzmaCompress() 32 props.pb = pb; in LzmaCompress() 33 props.fb = fb; in LzmaCompress() 34 props.numThreads = numThreads; in LzmaCompress() 36 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0, in LzmaCompress() [all …]
|
/external/chromium_org/third_party/lzma_sdk/ |
D | LzmaLib.c | 26 CLzmaEncProps props; in LzmaCompress() local 27 LzmaEncProps_Init(&props); in LzmaCompress() 28 props.level = level; in LzmaCompress() 29 props.dictSize = dictSize; in LzmaCompress() 30 props.lc = lc; in LzmaCompress() 31 props.lp = lp; in LzmaCompress() 32 props.pb = pb; in LzmaCompress() 33 props.fb = fb; in LzmaCompress() 34 props.numThreads = numThreads; in LzmaCompress() 36 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0, in LzmaCompress() [all …]
|
/external/chromium_org/v8/test/mjsunit/regress/ |
D | 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/chromium_org/third_party/icu/source/tools/toolutil/ |
D | ppucd.cpp | 205 UniProps *props; in getProps() local 222 props=&defaultProps; in getProps() 227 props=&blockProps; in getProps() 246 props=&cpProps; in getProps() 253 props->start=start; in getProps() 254 props->end=end; in getProps() 256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps() 258 return props; in getProps() 272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument 314 props.binProps[prop]=(UBool)binaryValue; in parseProperty() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ppucd.cpp | 205 UniProps *props; in getProps() local 222 props=&defaultProps; in getProps() 227 props=&blockProps; in getProps() 246 props=&cpProps; in getProps() 253 props->start=start; in getProps() 254 props->end=end; in getProps() 256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps() 258 return props; in getProps() 272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument 314 props.binProps[prop]=(UBool)binaryValue; in parseProperty() [all …]
|
/external/apache-harmony/support/src/test/java/tests/support/ |
D | Support_Configuration.java | 96 static Hashtable<String, String> props = null; field in Support_Configuration 106 Hashtable<String, String> props = new Hashtable<String, String>(); in loadProperties() local 131 load(in, props); in loadProperties() 135 if (props.size() == 0) { in loadProperties() 140 value = props.get("DomainAddress"); in loadProperties() 145 value = props.get("WebName"); in loadProperties() 150 value = props.get("TestResourcesDir"); in loadProperties() 154 value = props.get("HomeAddressResponse"); in loadProperties() 159 value = props.get("HomeAddressSoftware"); in loadProperties() 164 value = props.get("ProxyServerTestHost"); in loadProperties() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | 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 …]
|
D | 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
|
/external/chromium_org/ui/file_manager/video_player/js/cast/ |
D | media_manager.js | 110 }.bind(this)).then(function(props) { argument 111 if (!props || !props[0]) { 113 } else if (!props[0].contentMimeType) { 115 this.cachedDriveProp_ = props[0]; 118 this.cachedDriveProp_ = props[0]; 119 return props[0].contentMimeType; 136 }.bind(this)).then(function(props) { argument 137 if (!props || !props[0]) { 140 this.cachedDriveProp_ = props[0]; 141 return props[0].thumbnailUrl || '';
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | MemoryHandlerTest.java | 48 final static Properties props = new Properties(); field in MemoryHandlerTest 70 .PropertiesToInputStream(props)); in setUp() 80 props.put("java.util.logging.MemoryHandler.level", "FINE"); in initProps() 81 props.put("java.util.logging.MemoryHandler.filter", baseClassName in initProps() 83 props.put("java.util.logging.MemoryHandler.size", "2"); in initProps() 84 props.put("java.util.logging.MemoryHandler.push", "WARNING"); in initProps() 85 props.put("java.util.logging.MemoryHandler.target", baseClassName in initProps() 87 props.put("java.util.logging.MemoryHandler.formatter", baseClassName in initProps() 97 props.clear(); in tearDown() 170 props.remove("java.util.logging.MemoryHandler.target"); in testMemoryHandlerInvalidProps() [all …]
|
/external/icu/icu4c/source/samples/props/ |
D | 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 42 cd <icu directory>/source/samples/props [all …]
|
/external/chromium_org/third_party/icu/source/samples/props/ |
D | 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 42 cd <icu directory>/source/samples/props [all …]
|