/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 134 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); in ucase_tolower() local 135 if(!UCASE_HAS_EXCEPTION(props)) { in ucase_tolower() 136 if(UCASE_IS_UPPER_OR_TITLE(props)) { in ucase_tolower() 137 c+=UCASE_GET_DELTA(props); in ucase_tolower() 140 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_tolower() 142 if(HAS_SLOT(excWord, UCASE_EXC_DELTA) && UCASE_IS_UPPER_OR_TITLE(props)) { in ucase_tolower() 156 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); in ucase_toupper() local 157 if(!UCASE_HAS_EXCEPTION(props)) { in ucase_toupper() 158 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/llvm-project/clang/lib/ARCMigrate/ |
D | TransProperties.cpp | 85 PropsTy &props = AtProps[Loc]; in collectProperties() local 86 props.push_back(Prop); in collectProperties() 120 PropsTy &props = findAtLoc->second; in doTransform() local 121 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) { in doTransform() 133 PropsTy &props = I->second; in doTransform() local 134 if (!getPropertyType(props)->isObjCRetainableType()) in doTransform() 136 if (hasIvarWithExplicitARCOwnership(props)) in doTransform() 140 rewriteProperty(props, atLoc); in doTransform() 146 PropsTy &props, SourceLocation atLoc, in doPropAction() argument 149 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) in doPropAction() [all …]
|
/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 | 964 …R void VKAPI_CALL getPhysicalDeviceProperties (VkPhysicalDevice, VkPhysicalDeviceProperties* props) in getPhysicalDeviceProperties() argument 966 deMemset(props, 0, sizeof(VkPhysicalDeviceProperties)); in getPhysicalDeviceProperties() 968 props->apiVersion = VK_API_VERSION_1_1; in getPhysicalDeviceProperties() 969 props->driverVersion = 1u; in getPhysicalDeviceProperties() 970 props->deviceType = VK_PHYSICAL_DEVICE_TYPE_OTHER; in getPhysicalDeviceProperties() 972 deMemcpy(props->deviceName, "null", 5); in getPhysicalDeviceProperties() 975 props->limits.maxImageDimension1D = 4096; in getPhysicalDeviceProperties() 976 props->limits.maxImageDimension2D = 4096; in getPhysicalDeviceProperties() 977 props->limits.maxImageDimension3D = 256; in getPhysicalDeviceProperties() 978 props->limits.maxImageDimensionCube = 4096; in getPhysicalDeviceProperties() [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/ |
D | POJOPropertiesCollectorTest.java | 246 Map<String, POJOPropertyBuilder> props = coll.getPropertyMap(); in testSimple() local 247 assertEquals(1, props.size()); in testSimple() 248 POJOPropertyBuilder prop = props.get("value"); in testSimple() 260 Map<String, POJOPropertyBuilder> props = coll.getPropertyMap(); in testSimpleFieldVisibility() local 261 assertEquals(1, props.size()); in testSimpleFieldVisibility() 262 POJOPropertyBuilder prop = props.get("values"); in testSimpleFieldVisibility() 273 Map<String, POJOPropertyBuilder> props = coll.getPropertyMap(); in testSimpleGetterVisibility() local 274 assertEquals(1, props.size()); in testSimpleGetterVisibility() 275 POJOPropertyBuilder prop = props.get("a"); in testSimpleGetterVisibility() 288 Map<String, POJOPropertyBuilder> props = coll.getPropertyMap(); in testEmpty() local [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/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/mesa3d/src/gallium/drivers/zink/ |
D | zink_screen.c | 68 snprintf(buf, sizeof(buf), "Unknown (vendor-id: 0x%04x)", screen->info.props.vendorID); in zink_get_device_vendor() 77 snprintf(buf, sizeof(buf), "zink (%s)", screen->info.props.deviceName); in zink_get_name() 111 return screen->info.props.limits.maxFragmentDualSrcAttachments; in zink_get_param() 117 return screen->info.props.limits.maxColorAttachments; in zink_get_param() 135 return screen->info.props.limits.maxImageDimension2D; in zink_get_param() 137 return 1 + util_logbase2(screen->info.props.limits.maxImageDimension3D); in zink_get_param() 139 return 1 + util_logbase2(screen->info.props.limits.maxImageDimensionCube); in zink_get_param() 158 return screen->info.props.limits.maxImageArrayLayers; in zink_get_param() 169 return screen->info.props.limits.minTexelOffset; in zink_get_param() 171 return screen->info.props.limits.maxTexelOffset; in zink_get_param() [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/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | POJOPropertiesCollector.java | 185 Map<String, POJOPropertyBuilder> props = getPropertyMap(); in getProperties() local 186 return new ArrayList<BeanPropertyDefinition>(props.values()); in getProperties() 318 …LinkedHashMap<String, POJOPropertyBuilder> props = new LinkedHashMap<String, POJOPropertyBuilder>(… in collectAll() local 321 _addFields(props); // note: populates _fieldRenameMappings in collectAll() 322 _addMethods(props); in collectAll() 326 _addCreators(props); in collectAll() 331 _removeUnwantedProperties(props); in collectAll() 333 _removeUnwantedAccessor(props); in collectAll() 336 _renameProperties(props); in collectAll() 340 _addInjectables(props); in collectAll() [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 …]
|
/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/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/merge/ |
D | MapMergeTest.java | 94 Map<String,Object> props = new LinkedHashMap<>(); in testDeeperMapMerging() local 95 props.put("default", "yes"); in testDeeperMapMerging() 96 props.put("x", "abc"); in testDeeperMapMerging() 99 props.put("extra", innerProps); in testDeeperMapMerging() 100 base.values.put("props", props); in testDeeperMapMerging() 108 props = (Map<String,Object>) v.values.get("props"); in testDeeperMapMerging() 109 assertEquals(4, props.size()); in testDeeperMapMerging() 110 assertEquals("yes", props.get("default")); in testDeeperMapMerging() 111 assertEquals("xyz", props.get("x")); in testDeeperMapMerging() 112 assertEquals("...", props.get("y")); in testDeeperMapMerging() [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/icu/libicu/cts_headers/ |
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/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/libdrm/tests/modeprint/ |
D | modeprint.c | 82 static int printProperty(int fd, drmModeResPtr res, drmModePropertyPtr props, uint64_t value) in printProperty() argument 87 printf("Property: %s\n", props->name); in printProperty() 88 printf("\tid : %i\n", props->prop_id); in printProperty() 89 printf("\tflags : %i\n", props->flags); in printProperty() 90 printf("\tcount_values : %d\n", props->count_values); in printProperty() 93 if (props->count_values) { in printProperty() 95 for (j = 0; j < props->count_values; j++) in printProperty() 96 printf(" %" PRIu64, props->values[j]); in printProperty() 101 printf("\tcount_enums : %d\n", props->count_enums); in printProperty() 103 if (props->flags & DRM_MODE_PROP_BLOB) { in printProperty() [all …]
|
/external/skia/src/core/ |
D | SkSpecialSurface.cpp | 19 SkSpecialSurface_Base(const SkIRect& subset, const SkSurfaceProps& props) in SkSpecialSurface_Base() argument 20 : INHERITED(subset, props) in SkSpecialSurface_Base() 45 const SkSurfaceProps& props) in SkSpecialSurface() argument 46 : fProps(props.flags(), kUnknown_SkPixelGeometry) in SkSpecialSurface() 70 const SkSurfaceProps& props) in SkSpecialSurface_Raster() argument 71 : INHERITED(subset, props) { in SkSpecialSurface_Raster() 76 fCanvas = std::make_unique<SkCanvas>(fBitmap, this->props()); in SkSpecialSurface_Raster() 86 return SkSpecialImage::MakeFromRaster(this->subset(), fBitmap, this->props()); in onMakeImageSnapshot() 96 const SkSurfaceProps& props) { in MakeFromBitmap() argument 100 return sk_make_sp<SkSpecialSurface_Raster>(bm.info(), sk_ref_sp(bm.pixelRef()), subset, props); in MakeFromBitmap() [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/tensorflow/tensorflow/core/framework/ |
D | node_properties_test.cc | 61 void ValidateNodeProperties(const NodeProperties& props, const OpDef* op_def, in ValidateNodeProperties() argument 65 EXPECT_EQ(props.op_def, op_def); in ValidateNodeProperties() 66 EXPECT_EQ(props.node_def.name(), node_def.name()); in ValidateNodeProperties() 67 ASSERT_EQ(props.input_types.size(), input_types.size()); in ValidateNodeProperties() 69 EXPECT_EQ(props.input_types[i], input_types[i]); in ValidateNodeProperties() 70 EXPECT_EQ(props.input_types_slice[i], input_types[i]); in ValidateNodeProperties() 72 ASSERT_EQ(props.output_types.size(), output_types.size()); in ValidateNodeProperties() 74 EXPECT_EQ(props.output_types[i], output_types[i]); in ValidateNodeProperties() 75 EXPECT_EQ(props.output_types_slice[i], output_types[i]); in ValidateNodeProperties() 111 std::shared_ptr<const NodeProperties> props; in TEST() local [all …]
|