/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 611 …R void VKAPI_CALL getPhysicalDeviceProperties (VkPhysicalDevice, VkPhysicalDeviceProperties* props) in getPhysicalDeviceProperties() argument 613 deMemset(props, 0, sizeof(VkPhysicalDeviceProperties)); in getPhysicalDeviceProperties() 615 props->apiVersion = VK_API_VERSION; in getPhysicalDeviceProperties() 616 props->driverVersion = 1u; in getPhysicalDeviceProperties() 617 props->deviceType = VK_PHYSICAL_DEVICE_TYPE_OTHER; in getPhysicalDeviceProperties() 619 deMemcpy(props->deviceName, "null", 5); in getPhysicalDeviceProperties() 622 props->limits.maxImageDimension1D = 4096; in getPhysicalDeviceProperties() 623 props->limits.maxImageDimension2D = 4096; in getPhysicalDeviceProperties() 624 props->limits.maxImageDimension3D = 256; in getPhysicalDeviceProperties() 625 props->limits.maxImageDimensionCube = 4096; in getPhysicalDeviceProperties() [all …]
|
/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 | ucase.cpp | 87 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT)) argument 89 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION) argument 137 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_tolower() local 138 if(!PROPS_HAS_EXCEPTION(props)) { in ucase_tolower() 139 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) { in ucase_tolower() 140 c+=UCASE_GET_DELTA(props); in ucase_tolower() 143 const uint16_t *pe=GET_EXCEPTIONS(csp, props); in ucase_tolower() 154 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_toupper() local 155 if(!PROPS_HAS_EXCEPTION(props)) { in ucase_toupper() 156 if(UCASE_GET_TYPE(props)==UCASE_LOWER) { in ucase_toupper() [all …]
|
D | ubidi_props.c | 146 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getClass() local 147 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass() 152 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isMirrored() local 153 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored() 157 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) { in getMirror() argument 158 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror() 190 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getMirror() local 191 return getMirror(bdp, c, props); in ubidi_getMirror() 196 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isBidiControl() local 197 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT); in ubidi_isBidiControl() [all …]
|
D | ubidi_props.h | 125 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK) argument 126 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1) argument 129 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT) argument 131 … 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/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 private 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(getTypeFromProps(props)>=UPPER) { in tolower() 195 c+=getDelta(props); in tolower() 198 int excOffset=getExceptionsOffset(props); in tolower() 208 int props=trie.get(c); in toupper() local [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 private 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(getTypeFromProps(props)>=UPPER) { in tolower() 191 c+=getDelta(props); in tolower() 194 int excOffset=getExceptionsOffset(props); in tolower() 204 int props=trie.get(c); in toupper() local [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/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/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/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/skia/src/gpu/text/ |
D | GrAtlasTextContext.cpp | 26 const SkSurfaceProps& props, in canDraw() argument 28 return GrTextUtils::CanDrawAsDistanceFields(skPaint, viewMatrix, props, shaderCaps) || in canDraw() 79 const SkSurfaceProps& props, const SkTextBlob* blob, in drawTextBlob() argument 103 SkPixelGeometry pixelGeometry = hasLCD ? props.pixelGeometry() : in drawTextBlob() 131 viewMatrix, props, blob, x, y, drawFilter); in drawTextBlob() 143 viewMatrix, props, blob, x, y, drawFilter); in drawTextBlob() 155 props, blob, x, y, drawFilter); in drawTextBlob() 158 cacheBlob->flushCached(context, rtc, blob, props, fDistanceAdjustTable.get(), paint, drawFilter, in drawTextBlob() 167 const SkSurfaceProps& props, const SkTextBlob* blob, in RegenerateTextBlob() argument 173 GrTextUtils::RunPaint runPaint(&paint, drawFilter, props); in RegenerateTextBlob() [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/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/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/autotest/client/cros/input_playback/ |
D | input_playback.py | 186 props = temp_file.read() 187 return props 190 def _determine_input_type(self, props): argument 196 if props.find('REL_X') >= 0 and props.find('REL_Y') >= 0: 197 if (props.find('ABS_MT_POSITION_X') >= 0 and 198 props.find('ABS_MT_POSITION_Y') >= 0): 202 if props.find('ABS_X') >= 0 and props.find('ABS_Y') >= 0: 203 if (props.find('BTN_STYLUS') >= 0 or 204 props.find('BTN_STYLUS2') >= 0 or 205 props.find('BTN_TOOL_PEN') >= 0): [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/skia/include/core/ |
D | SkSurface.h | 67 const SkSurfaceProps* props = nullptr) { 68 return MakeRaster(info, 0, props); 77 const SkSurfaceProps* props = nullptr) { 78 return MakeRaster(SkImageInfo::MakeN32Premul(width, height), props); 116 const SkSurfaceProps* props) { in MakeFromBackendTexture() argument 117 return MakeFromBackendTexture(ctx, desc, nullptr, props); in MakeFromBackendTexture() 122 const SkSurfaceProps* props) { in MakeFromBackendRenderTarget() argument 123 return MakeFromBackendRenderTarget(ctx, desc, nullptr, props); in MakeFromBackendRenderTarget() 127 GrContext* ctx, const GrBackendTextureDesc& desc, const SkSurfaceProps* props) { in MakeFromBackendTextureAsRenderTarget() argument 128 return MakeFromBackendTextureAsRenderTarget(ctx, desc, nullptr, props); in MakeFromBackendTextureAsRenderTarget() [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() 68 const SkSurfaceProps* props) in SkSpecialSurface_Raster() argument 69 : 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 96 return sk_make_sp<SkSpecialSurface_Raster>(sk_ref_sp(bm.pixelRef()), subset, props); in MakeFromBitmap() [all …]
|