/external/icu/icu4c/source/common/ |
D | uchar.cpp | 50 uint32_t props; in u_charType() local 51 GET_PROPS(c, props); in u_charType() 52 return (int8_t)GET_CATEGORY(props); in u_charType() 91 uint32_t props; in u_islower() local 92 GET_PROPS(c, props); in u_islower() 93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower() 99 uint32_t props; in u_isupper() local 100 GET_PROPS(c, props); in u_isupper() 101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper() 107 uint32_t props; in u_istitle() local [all …]
|
D | ucase.cpp | 85 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT)) argument 133 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); in ucase_tolower() local 134 if(!UCASE_HAS_EXCEPTION(props)) { in ucase_tolower() 135 if(UCASE_IS_UPPER_OR_TITLE(props)) { in ucase_tolower() 136 c+=UCASE_GET_DELTA(props); in ucase_tolower() 139 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_tolower() 141 if(HAS_SLOT(excWord, UCASE_EXC_DELTA) && UCASE_IS_UPPER_OR_TITLE(props)) { in ucase_tolower() 155 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); in ucase_toupper() local 156 if(!UCASE_HAS_EXCEPTION(props)) { in ucase_toupper() 157 if(UCASE_GET_TYPE(props)==UCASE_LOWER) { in ucase_toupper() [all …]
|
D | ubidi_props.cpp | 135 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getClass() local 136 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass() 141 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isMirrored() local 142 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored() 146 getMirror(UChar32 c, uint16_t props) { in getMirror() argument 147 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror() 179 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getMirror() local 180 return getMirror(c, props); in ubidi_getMirror() 185 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isBidiControl() local 186 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT); in ubidi_isBidiControl() [all …]
|
D | ubidi_props.h | 119 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK) argument 120 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1) argument 123 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT) argument 125 … 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() 122 PropsTy &props = findAtLoc->second; in doTransform() local 123 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) { in doTransform() 135 PropsTy &props = I->second; in doTransform() local 136 if (!getPropertyType(props)->isObjCRetainableType()) in doTransform() 138 if (hasIvarWithExplicitARCOwnership(props)) in doTransform() 142 rewriteProperty(props, atLoc); in doTransform() 148 PropsTy &props, SourceLocation atLoc, in doPropAction() argument 151 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) in doPropAction() [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 834 …R void VKAPI_CALL getPhysicalDeviceProperties (VkPhysicalDevice, VkPhysicalDeviceProperties* props) in getPhysicalDeviceProperties() argument 836 deMemset(props, 0, sizeof(VkPhysicalDeviceProperties)); in getPhysicalDeviceProperties() 838 props->apiVersion = VK_API_VERSION_1_1; in getPhysicalDeviceProperties() 839 props->driverVersion = 1u; in getPhysicalDeviceProperties() 840 props->deviceType = VK_PHYSICAL_DEVICE_TYPE_OTHER; in getPhysicalDeviceProperties() 842 deMemcpy(props->deviceName, "null", 5); in getPhysicalDeviceProperties() 845 props->limits.maxImageDimension1D = 4096; in getPhysicalDeviceProperties() 846 props->limits.maxImageDimension2D = 4096; in getPhysicalDeviceProperties() 847 props->limits.maxImageDimension3D = 256; in getPhysicalDeviceProperties() 848 props->limits.maxImageDimensionCube = 4096; in getPhysicalDeviceProperties() [all …]
|
/external/libdrm/tests/planetest/ |
D | dev.c | 73 drmModeObjectPropertiesPtr props, const char *name) in get_prop_id() argument 78 for (i = 0; !prop_id && i < props->count_props; i++) { in get_prop_id() 79 p = drmModeGetProperty(dev->fd, props->props[i]); in get_prop_id() 156 drmModeObjectPropertiesPtr props; in create_sp_dev() local 164 props = drmModeObjectGetProperties(dev->fd, r->connectors[i], in create_sp_dev() 166 if (!props) { in create_sp_dev() 171 dev->connectors[i].crtc_id_pid = get_prop_id(dev, props, in create_sp_dev() 173 drmModeFreeObjectProperties(props); in create_sp_dev() 199 drmModeObjectPropertiesPtr props; in create_sp_dev() local 209 props = drmModeObjectGetProperties(dev->fd, r->crtcs[i], in create_sp_dev() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | UCaseProps.java | 118 private static final int getExceptionsOffset(int props) { in getExceptionsOffset() argument 119 return props>>EXC_SHIFT; in getExceptionsOffset() 122 static final boolean propsHasException(int props) { in propsHasException() argument 123 return (props&EXCEPTION)!=0; in propsHasException() 192 int props=trie.get(c); in tolower() local 193 if(!propsHasException(props)) { in tolower() 194 if(isUpperOrTitleFromProps(props)) { in tolower() 195 c+=getDelta(props); in tolower() 198 int excOffset=getExceptionsOffset(props); in tolower() 200 if(hasSlot(excWord, EXC_DELTA) && isUpperOrTitleFromProps(props)) { in tolower() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UCaseProps.java | 114 private static final int getExceptionsOffset(int props) { in getExceptionsOffset() argument 115 return props>>EXC_SHIFT; in getExceptionsOffset() 118 static final boolean propsHasException(int props) { in propsHasException() argument 119 return (props&EXCEPTION)!=0; in propsHasException() 188 int props=trie.get(c); in tolower() local 189 if(!propsHasException(props)) { in tolower() 190 if(isUpperOrTitleFromProps(props)) { in tolower() 191 c+=getDelta(props); in tolower() 194 int excOffset=getExceptionsOffset(props); in tolower() 196 if(hasSlot(excWord, EXC_DELTA) && isUpperOrTitleFromProps(props)) { in tolower() [all …]
|
/external/lzma/C/ |
D | LzmaLib.c | 20 CLzmaEncProps props; in LzmaCompress() local 21 LzmaEncProps_Init(&props); in LzmaCompress() 22 props.level = level; in LzmaCompress() 23 props.dictSize = dictSize; in LzmaCompress() 24 props.lc = lc; in LzmaCompress() 25 props.lp = lp; in LzmaCompress() 26 props.pb = pb; in LzmaCompress() 27 props.fb = fb; in LzmaCompress() 28 props.numThreads = numThreads; in LzmaCompress() 30 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0, in LzmaCompress() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ppucd.cpp | 206 UniProps *props; in getProps() local 232 props=&defaultProps; in getProps() 237 props=&blockProps; in getProps() 269 props=&cpProps; in getProps() 276 props->start=start; in getProps() 277 props->end=end; in getProps() 279 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps() 297 return props; in getProps() 311 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument 353 props.binProps[prop]=(UBool)binaryValue; in parseProperty() [all …]
|
/external/autotest/client/cros/cellular/pseudomodem/ |
D | sms.py | 83 props = {} 84 props['State'] = dbus.types.UInt32(mm1_constants.MM_SMS_STATE_UNKNOWN) 85 props['PduType'] = dbus.types.UInt32( 87 props['Number'] = self._sender_number 89 props['Text'] = self._content 90 props['SMSC'] = self._props_template.get('SMSC', '1231212') 91 props['Validity'] = self._props_template.get('Validity', 97 props['Class'] = self._props_template.get('Class', dbus.types.Int32(-1)) 98 props['DeliveryReportRequest'] = self._props_template.get( 101 props['Storage'] = self._props_template.get( [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/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 …]
|
D | LogManagerTest.java | 55 Properties props; field in LogManagerTest 78 props = initProps(); in setUp() 82 Properties props = new Properties(); in initProps() local 83 props.put("handlers", className + "$MockHandler " + className in initProps() 85 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log"); in initProps() 86 props.put("java.util.logging.FileHandler.limit", "50000"); in initProps() 87 props.put("java.util.logging.FileHandler.count", "5"); in initProps() 88 props.put("java.util.logging.FileHandler.formatter", in initProps() 90 props.put(".level", "FINE"); in initProps() 91 props.put("java.util.logging.ConsoleHandler.level", "OFF"); in initProps() [all …]
|
/external/lzma/CPP/7zip/Compress/ |
D | Lzma2Decoder.cpp | 99 CLzma2DecMtProps props; in Code() local 100 Lzma2DecMtProps_Init(&props); in Code() 102 props.inBufSize_ST = _inBufSize; in Code() 103 props.outStep_ST = _outStep; in Code() 107 props.numThreads = 1; in Code() 119 props.outBlockMax = expectedBlockSize; in Code() 120 props.inBlockMax = inBlockMax; in Code() 121 const size_t kOverheadSize = props.inBufSize_MT + (1 << 16); in Code() 122 UInt64 okThreads = useLimit / (props.outBlockMax + props.inBlockMax + kOverheadSize); in Code() 127 props.numThreads = numThreads; in Code() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
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/libdrm/tests/modeprint/ |
D | modeprint.c | 95 static int printProperty(int fd, drmModeResPtr res, drmModePropertyPtr props, uint64_t value) in printProperty() argument 100 printf("Property: %s\n", props->name); in printProperty() 101 printf("\tid : %i\n", props->prop_id); in printProperty() 102 printf("\tflags : %i\n", props->flags); in printProperty() 103 printf("\tcount_values : %d\n", props->count_values); in printProperty() 106 if (props->count_values) { in printProperty() 108 for (j = 0; j < props->count_values; j++) in printProperty() 109 printf(" %" PRIu64, props->values[j]); in printProperty() 114 printf("\tcount_enums : %d\n", props->count_enums); in printProperty() 116 if (props->flags & DRM_MODE_PROP_BLOB) { in printProperty() [all …]
|
/external/snakeyaml/src/test/java/examples/collections/ |
D | TypeSafeMapImplementationsTest.java | 40 Properties props = new Properties(); in testDumpMap() local 41 props.setProperty("key1", "value1"); in testDumpMap() 42 props.setProperty("key2", "value2"); in testDumpMap() 43 bean.setProperties(props); in testDumpMap() 64 Properties props = parsed.getProperties(); in testLoadMap() local 65 assertEquals(2, props.size()); in testLoadMap() 66 assertEquals("value1", props.getProperty("key1")); in testLoadMap() 67 assertEquals("value2", props.getProperty("key2")); in testLoadMap() 111 Properties props = new Properties(); in testNoJavaBeanMap() local 112 props.setProperty("key1", "value1"); in testNoJavaBeanMap() [all …]
|
/external/testng/src/main/java/org/testng/log4testng/ |
D | Logger.java | 490 Properties props= new Properties(); in testDebugDefault() local 495 props.put("log4testng.rootLogger", "WARN"); in testDebugDefault() 496 testInitialize(props, out2, err2); in testDebugDefault() 505 Properties props= new Properties(); in testDebugOn() local 510 props.put("log4testng.debug", "true"); in testDebugOn() 511 props.put("log4testng.rootLogger", "WARN"); in testDebugOn() 512 testInitialize(props, out2, err2); in testDebugOn() 521 Properties props= new Properties(); in testDebugOff() local 526 props.put("log4testng.debug", "false"); in testDebugOff() 527 props.put("log4testng.rootLogger", "WARN"); in testDebugOff() [all …]
|
/external/skqp/src/core/ |
D | SkSpecialSurface.cpp | 16 SkSpecialSurface_Base(const SkIRect& subset, const SkSurfaceProps* props) in SkSpecialSurface_Base() argument 17 : INHERITED(subset, props) in SkSpecialSurface_Base() 44 const SkSurfaceProps* props) in SkSpecialSurface() argument 45 : fProps(SkSurfacePropsCopyOrDefault(props).flags(), kUnknown_SkPixelGeometry) in SkSpecialSurface() 69 const SkSurfaceProps* props) in SkSpecialSurface_Raster() argument 70 : INHERITED(subset, props) { in SkSpecialSurface_Raster() 75 fCanvas.reset(new SkCanvas(fBitmap, this->props())); in SkSpecialSurface_Raster() 85 return SkSpecialImage::MakeFromRaster(this->subset(), fBitmap, &this->props()); in onMakeImageSnapshot() 95 const SkSurfaceProps* props) { in MakeFromBitmap() argument 99 return sk_make_sp<SkSpecialSurface_Raster>(bm.info(), sk_ref_sp(bm.pixelRef()), subset, props); in MakeFromBitmap() [all …]
|
/external/skia/src/core/ |
D | SkSpecialSurface.cpp | 16 SkSpecialSurface_Base(const SkIRect& subset, const SkSurfaceProps* props) in SkSpecialSurface_Base() argument 17 : INHERITED(subset, props) in SkSpecialSurface_Base() 44 const SkSurfaceProps* props) in SkSpecialSurface() argument 45 : fProps(SkSurfacePropsCopyOrDefault(props).flags(), kUnknown_SkPixelGeometry) in SkSpecialSurface() 69 const SkSurfaceProps* props) in SkSpecialSurface_Raster() argument 70 : INHERITED(subset, props) { in SkSpecialSurface_Raster() 75 fCanvas.reset(new SkCanvas(fBitmap, this->props())); in SkSpecialSurface_Raster() 85 return SkSpecialImage::MakeFromRaster(this->subset(), fBitmap, &this->props()); in onMakeImageSnapshot() 95 const SkSurfaceProps* props) { in MakeFromBitmap() argument 99 return sk_make_sp<SkSpecialSurface_Raster>(bm.info(), sk_ref_sp(bm.pixelRef()), subset, props); in MakeFromBitmap() [all …]
|
/external/icu/icu4c/source/samples/props/ |
D | readme.txt | 5 props: Unicode Character Properties 12 props.cpp Main source file in C++ 13 props.sln Windows MSVC workspace. Double-click this to get started. 14 props.vcproj Windows MSVC project file 16 To Build props on Windows 18 2. In MSVC, open the workspace file icu\samples\props\props.sln 27 3. cd into the props directory, e.g. 28 cd c:\icu\source\samples\props\debug 30 props 45 cd <icu directory>/source/samples/props [all …]
|
/external/autotest/client/cros/cellular/ |
D | modem1.py | 99 props = dict() 106 self._CopyPropertiesCheckUnique(iface_props, props) 109 sim_obj = self.bus.get_object(self.service, props['Sim']) 121 self._CopyPropertiesCheckUnique(sim_props, props) 125 return props 129 props = self.GetModemProperties() 130 tech = props['AccessTechnologies'] 135 props = self.GetAll(mm1.MODEM_INTERFACE) 136 capabilities = props.get('SupportedCapabilities') 180 props = self.GetAll(mm1.MODEM_INTERFACE) [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-shape-plan.cc | 54 const hb_segment_properties_t *props, in init() argument 65 this->props = *props; in init() 149 return hb_segment_properties_equal (&this->props, &other->props) && in equal() 177 const hb_segment_properties_t *props, in hb_shape_plan_create() argument 182 return hb_shape_plan_create2 (face, props, in hb_shape_plan_create() 190 const hb_segment_properties_t *props, in hb_shape_plan_create2() argument 204 assert (props->direction != HB_DIRECTION_INVALID); in hb_shape_plan_create2() 208 if (unlikely (!props)) in hb_shape_plan_create2() 220 props, in hb_shape_plan_create2() 385 assert (hb_segment_properties_equal (&shape_plan->key.props, &buffer->props)); in hb_shape_plan_execute() [all …]
|