/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/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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.ui.views_3.5.0.I20100527-0800.jar | ... org/eclipse/ui/internal/views/properties/messages.properties
org/eclipse/ui/ ... |
/external/autotest/client/site_tests/security_DbusMap/ |
D | baseline.nobody | 8 "properties": [], 18 "properties": [], 26 "properties": [], 52 "properties": [], 62 "properties": [], 100 "properties": [], 110 "properties": [], 121 "properties": [], 137 "properties": [], 145 "properties": [], [all …]
|
D | baseline | 12 "properties": [ 28 "properties": [ 58 "properties": [ 93 "properties": [], 103 "properties": [], 119 "properties": [], 129 "properties": [], 167 "properties": [], 177 "properties": [], 226 "properties": [], [all …]
|
D | baseline.chronos | 8 "properties": [ 24 "properties": [ 43 "properties": [ 80 "properties": [], 96 "properties": [], 106 "properties": [], 144 "properties": [], 154 "properties": [], 203 "properties": [], 219 "properties": [], [all …]
|
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
D | cachecontrol.py | 77 return self.prop in obj.properties 87 obj.properties[self.prop] = None 89 if self.prop in obj.properties: 90 del obj.properties[self.prop] 111 if self.prop in obj.properties: 112 value = obj.properties[self.prop] 127 if self.prop in obj.properties: 128 del obj.properties[self.prop] 130 obj.properties[self.prop] = None # Empty value, but present 132 obj.properties[self.prop] = value [all …]
|
/external/v8/test/mjsunit/ |
D | mirror-object.js | 69 var properties = mirror.properties(); 70 assertEquals(names.length, properties.length); 71 for (var i = 0; i < properties.length; i++) { 72 assertTrue(properties[i] instanceof debug.Mirror, 'Unexpected mirror hierarchy'); 73 assertTrue(properties[i] instanceof debug.PropertyMirror, 'Unexpected mirror hierarchy'); 74 assertEquals('property', properties[i].type(), 'Unexpected mirror type'); 75 assertEquals(names[i], properties[i].name(), 'Unexpected property name'); 113 assertEquals(names.length, fromJSON.properties.length, 'Some properties missing in JSON'); 120 for (var i = 0; i < fromJSON.properties.length; i++) { 121 if (fromJSON.properties[i].name == name) { [all …]
|
D | debug-handle.js | 120 for (i in obj.properties) { 121 switch (obj.properties[i].name) { 123 obj.properties[i].ref = handle_o; 127 obj.properties[i].ref = handle_p; 151 for (i in obj.properties) { 152 var ref = obj.properties[i].ref; 154 switch (obj.properties[i].name) { 170 assertEquals(handle_g, obj.properties[i].ref); 180 for (i in obj.properties) { 181 refs.push(obj.properties[i].ref); [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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/ |
D | PropertyListIntersector.java | 38 public void intersect(Property[] properties) { in intersect() argument 41 for (int i = 0; i < properties.length; i++) { in intersect() 42 Property property = properties[i]; in intersect() 48 if (!propertyGroup.add(properties)) { in intersect() 59 List<Property> properties = Lists.newArrayList(); in getProperties() local 63 properties.add(compositeProperty); in getProperties() 67 return properties.toArray(new Property[properties.size()]); in getProperties() 98 public boolean add(Property[] properties) { in add() argument 99 for (Property property : properties) { in add() 112 Property properties[] = m_properties.toArray(new Property[m_properties.size()]); in getCompositeProperty() local [all …]
|
/external/v8/test/webkit/fast/js/ |
D | array-functions-non-arrays-expected.txt | 29 PASS properties(['b', 'a']) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 30 PASS properties({ length:2, 0:'b', 1:'a' }) is '0:b, 1:a, length:2' 31 PASS properties(new OneItemConstructor) is '0:a(FromPrototype), length:1(FromPrototype)' 32 PASS properties(new TwoItemConstructor) is '0:b(FromPrototype), 1:a(FromPrototype), length:2(FromPr… 53 PASS Array.prototype.pop.call(x = {}); properties(x) is 'length:0' 54 PASS Array.prototype.pop.call(x = ['b', 'a']); properties(x) is '0:b, length:1(DontDelete, DontEnum… 55 PASS Array.prototype.pop.call(x = { length:2, 0:'b', 1:'a' }); properties(x) is '0:b, length:1' 56 PASS Array.prototype.pop.call(x = new TwoItemConstructor); properties(x) is '0:b(FromPrototype), 1:… 61 PASS Array.prototype.push.call(x = {}); properties(x) is 'length:0' 62 PASS Array.prototype.push.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete, Do… [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/jetty/src/java/org/eclipse/jetty/security/ |
D | JDBCLoginService.java | 117 Properties properties = new Properties(); in doStart() local 119 properties.load(resource.getInputStream()); in doStart() 121 _jdbcDriver = properties.getProperty("jdbcdriver"); in doStart() 122 _url = properties.getProperty("url"); in doStart() 123 _userName = properties.getProperty("username"); in doStart() 124 _password = properties.getProperty("password"); in doStart() 125 String _userTable = properties.getProperty("usertable"); in doStart() 126 _userTableKey = properties.getProperty("usertablekey"); in doStart() 127 String _userTableUserField = properties.getProperty("usertableuserfield"); in doStart() 128 _userTablePasswordField = properties.getProperty("usertablepasswordfield"); in doStart() [all …]
|
/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/libs/vkjson/ |
D | vkjson.cc | 74 inline bool Iterate(Visitor* visitor, VkImageFormatProperties* properties) { in Iterate() argument 76 visitor->Visit("maxExtent", &properties->maxExtent) && in Iterate() 77 visitor->Visit("maxMipLevels", &properties->maxMipLevels) && in Iterate() 78 visitor->Visit("maxArrayLayers", &properties->maxArrayLayers) && in Iterate() 79 visitor->Visit("sampleCounts", &properties->sampleCounts) && in Iterate() 80 visitor->Visit("maxResourceSize", &properties->maxResourceSize); in Iterate() 196 VkPhysicalDeviceSparseProperties* properties) { in Iterate() argument 198 visitor->Visit("residencyStandard2DBlockShape", &properties->residencyStandard2DBlockShape) && in Iterate() 199 …visitor->Visit("residencyStandard2DMultisampleBlockShape", &properties->residencyStandard2DMultisa… in Iterate() 200 visitor->Visit("residencyStandard3DBlockShape", &properties->residencyStandard3DBlockShape) && in Iterate() [all …]
|
D | vkjson.h | 44 VkLayerProperties properties; member 50 memset(&properties, 0, sizeof(VkPhysicalDeviceProperties)); in VkJsonDevice() 54 VkPhysicalDeviceProperties properties; member 82 const VkImageFormatProperties& properties); 84 VkImageFormatProperties* properties, 94 const VkJsonAllProperties& properties) { in VkJsonAllPropertiesToJson() argument 95 return VkJsonDeviceToJson(properties); in VkJsonAllPropertiesToJson() 98 VkJsonAllProperties* properties, in VkJsonAllPropertiesFromJson() argument 100 return VkJsonDeviceFromJson(json, properties, errors); in VkJsonAllPropertiesFromJson()
|
/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/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/autotest/client/cros/networking/ |
D | shill_proxy.py | 275 properties = interface.GetProperties(utf8_strings=True) 276 if property_key in properties: 277 return ShillProxy.dbus2primitive(properties[property_key]) 291 properties = interface.GetProperties(utf8_strings=True) 292 if property_key not in properties: 296 dbus_class = properties[property_key].__class__ 359 def configure_service_by_guid(self, guid, properties={}): argument 366 config = properties.copy() 443 properties = self.dbus2primitive( 445 last_value = properties.get(property_name, '(no value found)') [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()
|