/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t025lexerRulePropertyRef.py | 20 assert len(lexer.properties) == 3, lexer.properties 22 text, type, line, pos, index, channel, start, stop = lexer.properties[0] 23 assert text == 'foobar', lexer.properties[0] 24 assert type == self.lexerModule.IDENTIFIER, lexer.properties[0] 25 assert line == 1, lexer.properties[0] 26 assert pos == 0, lexer.properties[0] 27 assert index == -1, lexer.properties[0] 28 assert channel == antlr3.DEFAULT_CHANNEL, lexer.properties[0] 29 assert start == 0, lexer.properties[0] 30 assert stop == 5, lexer.properties[0] [all …]
|
/external/clang/test/Index/ |
D | properties-class-extensions.m | 1 // Test that @properties within class extensions are visited by 46 // CHECK: properties-class-extensions.m:4:12: ObjCInterfaceDecl=Foo:4:12 Extent=[4:1 - 4:23] 47 // CHECK-NOT: properties-class-extensions.m:9:15: ObjCInstanceMethodDecl=setB::9:15 Extent=[9:15 - … 48 // CHECK-NOT: properties-class-extensions.m:9:15: ParmDecl=b:9:15 (Definition) Extent=[9:15 - 9:16] 49 // CHECK: properties-class-extensions.m:5:12: ObjCCategoryDecl=Cat:5:12 Extent=[5:1 - 7:5] 50 // CHECK: properties-class-extensions.m:5:12: ObjCClassRef=Foo:4:12 Extent=[5:12 - 5:15] 51 // CHECK: properties-class-extensions.m:6:15: ObjCPropertyDecl=a:6:15 Extent=[6:1 - 6:16] 52 // CHECK: properties-class-extensions.m:6:15: ObjCInstanceMethodDecl=a:6:15 Extent=[6:15 - 6:16] 53 // CHECK: properties-class-extensions.m:6:15: ObjCInstanceMethodDecl=setA::6:15 Extent=[6:15 - 6:16] 54 // CHECK: properties-class-extensions.m:6:15: ParmDecl=a:6:15 (Definition) Extent=[6:15 - 6:16] [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkQueryUtil.cpp | 54 vector<VkQueueFamilyProperties> properties; in getPhysicalDeviceQueueFamilyProperties() local 60 properties.resize(numQueues); in getPhysicalDeviceQueueFamilyProperties() 61 vk.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numQueues, &properties[0]); in getPhysicalDeviceQueueFamilyProperties() 63 if ((size_t)numQueues != properties.size()) in getPhysicalDeviceQueueFamilyProperties() 67 return properties; in getPhysicalDeviceQueueFamilyProperties() 82 VkPhysicalDeviceProperties properties; in getPhysicalDeviceProperties() local 84 deMemset(&properties, 0, sizeof(properties)); in getPhysicalDeviceProperties() 86 vk.getPhysicalDeviceProperties(physicalDevice, &properties); in getPhysicalDeviceProperties() 87 return properties; in getPhysicalDeviceProperties() 92 VkPhysicalDeviceMemoryProperties properties; in getPhysicalDeviceMemoryProperties() local [all …]
|
/external/skia/src/gpu/vk/ |
D | GrVkCaps.cpp | 78 VkPhysicalDeviceProperties properties; in init() local 79 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties(physDev, &properties)); in init() 84 this->initGrCaps(properties, memoryProperties, featureFlags); in init() 85 this->initShaderCaps(properties, featureFlags); in init() 95 if (kQualcomm_VkVendor == properties.vendorID) { in init() 99 if (kNvidia_VkVendor == properties.vendorID) { in init() 103 if (kQualcomm_VkVendor != properties.vendorID) { in init() 112 if (kNvidia_VkVendor == properties.vendorID) { in init() 116 if (kImagination_VkVendor == properties.vendorID) { in init() 148 void GrVkCaps::initSampleCount(const VkPhysicalDeviceProperties& properties) { in initSampleCount() argument [all …]
|
/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
D | Host.java | 44 private SortedMap<String, String> properties; field in Host 48 this.properties = Maps.newTreeMap(); in Host() 52 this.properties = Maps.newTreeMap(builder.properties); in Host() 57 public ImmutableSortedMap<String, String> properties() { in properties() method in Host 58 return ImmutableSortedMap.copyOf(properties); in properties() 66 return this.properties.equals(that.properties); in equals() 89 .add("properties", properties) in toString() 97 StringMapFunnel.INSTANCE.funnel(from.properties, into); in funnel() 102 private final SortedMap<String, String> properties = Maps.newTreeMap(); field in Host.Builder 106 properties.put(key, value); in addProperty() [all …]
|
D | VmSpec.java | 39 private SortedMap<String, String> properties; field in VmSpec 44 this.properties = Maps.newTreeMap(); in VmSpec() 49 this.properties = Maps.newTreeMap(builder.properties); in VmSpec() 57 public ImmutableSortedMap<String, String> properties() { in properties() method in VmSpec 58 return ImmutableSortedMap.copyOf(properties); in properties() 66 return this.properties.equals(that.properties) in equals() 86 .add("properties", properties) in toString() 95 StringMapFunnel.INSTANCE.funnel(from.properties, into); in funnel() 101 private final SortedMap<String, String> properties = Maps.newTreeMap(); field in VmSpec.Builder 115 this.properties.put(property, value); in addProperty() [all …]
|
/external/skia/infra/bots/recipe_modules/core/examples/ |
D | full.py | 21 api.properties(buildername=buildername, 26 api.properties(patch_storage='gerrit') + 27 api.properties.tryserver( 37 api.properties(buildername=buildername, 42 api.properties(patch_storage='gerrit') + 43 api.properties.tryserver( 53 api.properties( 62 api.properties.tryserver( 75 api.properties( 84 api.properties.tryserver( [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
D | PropertyUtils.java | 47 Map<String, Property> properties = new LinkedHashMap<String, Property>(); in getPropertiesMap() local 55 && !properties.containsKey(field.getName())) { in getPropertiesMap() 56 properties.put(field.getName(), new FieldProperty(field)); in getPropertiesMap() 67 properties.put(property.getName(), new MethodProperty(property)); in getPropertiesMap() 77 properties.put(field.getName(), new FieldProperty(field)); in getPropertiesMap() 86 if (properties.isEmpty() && inaccessableFieldsExist) { in getPropertiesMap() 89 propertiesCache.put(type, properties); in getPropertiesMap() 90 return properties; in getPropertiesMap() 102 Set<Property> properties = createPropertySet(type, bAccess); in getProperties() local 103 readableProperties.put(type, properties); in getProperties() [all …]
|
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
D | VmPropertiesLogMessage.java | 34 private final ImmutableMap<String, String> properties; field in VmPropertiesLogMessage 40 public VmPropertiesLogMessage(ImmutableMap<String, String> properties) { in VmPropertiesLogMessage() argument 41 this.properties = checkNotNull(properties); in VmPropertiesLogMessage() 44 public ImmutableMap<String, String> properties() { in properties() method in VmPropertiesLogMessage 45 return properties; in properties() 54 return Objects.hashCode(properties); in hashCode() 63 return this.properties.equals(that.properties); in equals()
|
/external/emma/core/res/ |
D | emma_default.properties | 11 # (3) 'emma.properties' resource placed somewhere in the classpath 18 # (5) 'emma.properties' JVM option pointing to a properties file 19 # -Demma.properties=./myproperties.txt 23 # logging properties: 27 # classloading properties: 34 # instrumentation properties: 42 # apprunner session data output properties: 49 # runtime coverage data output properties: 56 # instr metadata output properties: 72 # txt report properties: [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | wpas-dbus-new-signals.py | 37 def interfaceAdded(interface, properties): argument 38 print "InterfaceAdded(%s): Ifname=%s" % (interface, properties['Ifname']) 43 def propertiesChanged(properties): argument 44 for i in properties: 45 print "PropertiesChanged: %s=%s" % (i, properties[i]) 92 def bssAdded(bss, properties): argument 105 def networkAdded(network, properties): argument 114 def propertiesChangedInterface(properties): argument 115 for i in properties: 116 print "PropertiesChanged(interface): %s=%s" % (i, properties[i]) [all …]
|
/external/vulkan-validation-layers/tests/ |
D | loader_validation_tests.cpp | 431 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST_F() local 433 result = vkEnumerateInstanceLayerProperties(&count, properties.get()); in TEST_F() 462 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST() local 464 result = vkEnumerateDeviceLayerProperties(physical[p], &count, properties.get()); in TEST() 489 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST_F() local 490 VkResult result = vkEnumerateInstanceLayerProperties(&count, properties.get()); in TEST_F() 495 …std::cout << "properties[" << p << "] =" << ' ' << properties[p].layerName << ' ' << properties[p]… in TEST_F() 496 … << properties[p].implementationVersion << ' ' << properties[p].description << '\n'; in TEST_F() 506 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST_F() local 507 result = vkEnumerateInstanceLayerProperties(&count, properties.get()); in TEST_F() [all …]
|
/external/vulkan-validation-layers/libs/vkjson/ |
D | vkjson.cc | 66 inline bool Iterate(Visitor* visitor, VkImageFormatProperties* properties) { in Iterate() argument 68 visitor->Visit("maxExtent", &properties->maxExtent) && in Iterate() 69 visitor->Visit("maxMipLevels", &properties->maxMipLevels) && in Iterate() 70 visitor->Visit("maxArrayLayers", &properties->maxArrayLayers) && in Iterate() 71 visitor->Visit("sampleCounts", &properties->sampleCounts) && in Iterate() 72 visitor->Visit("maxResourceSize", &properties->maxResourceSize); in Iterate() 188 VkPhysicalDeviceSparseProperties* properties) { in Iterate() argument 190 visitor->Visit("residencyStandard2DBlockShape", &properties->residencyStandard2DBlockShape) && in Iterate() 191 …visitor->Visit("residencyStandard2DMultisampleBlockShape", &properties->residencyStandard2DMultisa… in Iterate() 192 visitor->Visit("residencyStandard3DBlockShape", &properties->residencyStandard3DBlockShape) && in Iterate() [all …]
|
D | vkjson.h | 37 VkLayerProperties properties; member 43 memset(&properties, 0, sizeof(VkPhysicalDeviceProperties)); in VkJsonDevice() 49 VkPhysicalDeviceProperties properties; member 81 const VkImageFormatProperties& properties); 83 VkImageFormatProperties* properties, 93 const VkJsonAllProperties& properties) { in VkJsonAllPropertiesToJson() argument 94 return VkJsonDeviceToJson(properties); in VkJsonAllPropertiesToJson() 97 VkJsonAllProperties* properties, in VkJsonAllPropertiesFromJson() argument 99 return VkJsonDeviceFromJson(json, properties, errors); in VkJsonAllPropertiesFromJson()
|
D | vkjson_unittest.cc | 53 memcpy(device.properties.deviceName, name, sizeof(name)); in main() 54 device.properties.limits.maxImageDimension1D = 3; in main() 55 device.properties.limits.maxSamplerLodBias = 3.5f; in main() 56 device.properties.limits.bufferImageGranularity = 0x1ffffffffull; in main() 57 device.properties.limits.maxViewportDimensions[0] = 1; in main() 58 device.properties.limits.maxViewportDimensions[1] = 2; in main() 76 EXPECT(!memcmp(&device.properties, &device2.properties, in main() 77 sizeof(device.properties))); in main()
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
D | SoapObject.java | 55 protected Vector properties = new Vector(); field in SoapObject 95 int numProperties = properties.size(); in equals() 96 if (numProperties != otherSoapObject.properties.size()) { in equals() 102 Object thisProp = this.properties.elementAt(propIndex); in equals() 122 Object thisProp = this.properties.elementAt(index); in isPropertyEqual() 150 Object prop = properties.elementAt(index); in getProperty() 165 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index); in getPropertyAsString() 305 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue()); in getPrimitiveProperty() 330 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue()); in getPrimitivePropertyAsString() 352 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue()); in getPrimitivePropertySafely() [all …]
|
/external/skia/infra/bots/recipes/ |
D | ct_skps.py | 46 buildername = api.properties['buildername'] 90 skps_chromium_build = api.properties.get( 97 api.step.active_result.presentation.properties['Webpage rankings'] = ( 102 api.step.active_result.presentation.properties['Download SKPs by rank'] = ( 108 num_per_slave = api.properties.get( 111 ct_num_slaves = api.properties.get( 246 api.properties( 259 api.properties( 273 api.properties( 286 api.properties( [all …]
|
D | upload_dm_results.py | 47 builder_name = api.properties['buildername'] 48 revision = api.properties['revision'] 63 image_dest_path = 'gs://%s/dm-images-v1' % api.properties['gs_bucket'] 88 issue = api.properties.get('patch_issue') 89 patchset = api.properties.get('patch_set') 94 summary_dest_path = 'gs://%s/%s' % (api.properties['gs_bucket'], 105 api.properties(buildername=builder, 113 api.properties(buildername=builder, 122 api.properties(buildername=builder, 136 api.properties( [all …]
|
/external/snakeyaml/src/patches/android/ |
D | PropertyUtils.patch | 29 Map<String, Property> properties = new LinkedHashMap<String, Property>(); 37 - && !properties.containsKey(field.getName())) { 38 - properties.put(field.getName(), new FieldProperty(field)); 44 + && !properties.containsKey(field.getName())) { 45 + properties.put(field.getName(), new FieldProperty(field)); 50 - // add JavaBean properties 55 - properties.put(property.getName(), new MethodProperty(property)); 66 - properties.put(field.getName(), new FieldProperty(field)); 75 - if (properties.isEmpty() && inaccessableFieldsExist) { 76 - throw new YAMLException("No JavaBean properties found in " + type.getName()); [all …]
|
/external/emma/core/java12/com/vladium/emma/data/ |
D | CoverageOptionsFactory.java | 26 public static CoverageOptions create (final Properties properties) in create() argument 29 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create() 33 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create() 37 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create() 43 public static CoverageOptions create (final IProperties properties) in create() argument 46 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create() 50 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create() 54 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create()
|
/external/chromium-trace/catapult/common/eslint/rules/ |
D | catapult-camelcase.js | 28 properties: { property 29 properties: { property 73 let properties = options.properties || ""; 75 if (properties !== "always" && properties !== "never") { 76 properties = "always"; 101 if (properties === "never") { 124 if (properties === "never") {
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/ |
D | PropertiesHelper.java | 10 public static String doSingleSubstitution(String originalValue, Properties properties) { in doSingleSubstitution() argument 22 if (properties != null) { in doSingleSubstitution() 23 propertyValue = properties.getProperty(propertyName); in doSingleSubstitution() 41 public static void doSubstitutions(Properties properties) { in doSubstitutions() argument 42 Enumeration<?> propertyNames = properties.propertyNames(); in doSubstitutions() 45 String propertyValue = properties.getProperty(propertyName); in doSubstitutions() 46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties); in doSubstitutions() 47 properties.setProperty(propertyName, expandedPropertyValue); in doSubstitutions()
|
/external/autotest/client/cros/networking/ |
D | shill_proxy.py | 282 properties = interface.GetProperties(utf8_strings=True) 283 if property_key in properties: 284 return ShillProxy.dbus2primitive(properties[property_key]) 298 properties = interface.GetProperties(utf8_strings=True) 299 if property_key not in properties: 303 dbus_class = properties[property_key].__class__ 388 def configure_service_by_guid(self, guid, properties={}): argument 395 config = properties.copy() 472 properties = self.dbus2primitive( 474 last_value = properties.get(property_name, '(no value found)') [all …]
|
/external/chromium-trace/catapult/common/eslint/tests/ |
D | catapult-camelcase.js | 52 options: [{properties: "always"}] property 56 options: [{properties: "never"}] property 60 options: [{properties: "never"}] property 64 options: [{properties: "never"}] property 68 options: [{properties: "never"}] property 77 options: [{properties: "never"}] property 185 options: [{properties: "always"}], property 195 options: [{properties: "always"}], property 205 options: [{properties: "always"}], property
|
/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationLimitsTests.cpp | 82 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice); in deviceLimitsTestCase() local 88 …return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationGenerationLevel… in deviceLimitsTestCase() 90 return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationPatchSize); in deviceLimitsTestCase() 92 …return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationControlPerVerte… in deviceLimitsTestCase() 94 …return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationControlPerVerte… in deviceLimitsTestCase() 96 …return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationControlPerPatch… in deviceLimitsTestCase() 98 …return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationControlTotalOut… in deviceLimitsTestCase() 100 …return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationEvaluationInput… in deviceLimitsTestCase() 102 …return expectGreaterOrEqual(log, caseDef.minimum, properties.limits.maxTessellationEvaluationOutpu… in deviceLimitsTestCase()
|