Home
last modified time | relevance | path

Searched full:properties (Results 1 – 25 of 3946) sorted by relevance

12345678910>>...158

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/p2/org.eclipse.equinox.p2.core/cache/
Dartifacts.xml4 <properties size='2'>
7 </properties>
15 <properties size='1'>
17 </properties>
20 <properties size='1'>
22 </properties>
25 <properties size='1'>
27 </properties>
30 <properties size='1'>
32 </properties>
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.ui.views_3.5.0.I20100527-0800.jar ... org/eclipse/ui/internal/views/properties/messages.properties org/eclipse/ui/ ...
/external/deqp/external/vulkancts/framework/vulkan/
DvkQueryUtil.cpp54 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/autotest/client/site_tests/security_DbusMap/
Dbaseline12 "properties": [
28 "properties": [
58 "properties": [
93 "properties": [],
97 "interface": "org.freedesktop.DBus.Properties",
103 "properties": [],
119 "properties": [],
129 "properties": [],
167 "properties": [],
171 "interface": "org.freedesktop.DBus.Properties",
[all …]
Dbaseline.nobody8 "properties": [],
18 "properties": [],
26 "properties": [],
52 "properties": [],
62 "properties": [],
100 "properties": [],
104 "interface": "org.freedesktop.DBus.Properties",
110 "properties": [],
121 "properties": [],
137 "properties": [],
[all …]
Dbaseline.chronos8 "properties": [
24 "properties": [
43 "properties": [
74 "interface": "org.freedesktop.DBus.Properties",
80 "properties": [],
96 "properties": [],
106 "properties": [],
144 "properties": [],
148 "interface": "org.freedesktop.DBus.Properties",
154 "properties": [],
[all …]
/external/clang/test/Index/
Dproperties-class-extensions.m1 // 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/antlr/antlr-3.4/runtime/Python/tests/
Dt025lexerRulePropertyRef.py20 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/chromium-trace/catapult/dashboard/
Dindex.yaml8 # Composite index properties must be listed differently depending on how the
9 # properties are used. There are three main ways to use properties in a query:
13 # The properties below must be listed in this order. The "direction" only needs
14 # to be specified for properties used for sort order.
23 properties:
27 properties:
34 properties:
42 properties:
54 properties:
61 properties:
[all …]
/external/v8/test/webkit/fast/js/
Darray-functions-non-arrays-expected.txt29 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 …]
Darray-functions-non-arrays.js28 function properties(object, extraName1, extraName2, extraName3) function
32 // destructive, lists properties
96 shouldBe("properties(['b', 'a'])", "'0:b, 1:a, length:2(DontDelete, DontEnum)'");
97 shouldBe("properties({ length:2, 0:'b', 1:'a' })", "'0:b, 1:a, length:2'");
99 shouldBe("properties(new OneItemConstructor)", "'0:a(FromPrototype), length:1(FromPrototype)'");
100 shouldBe("properties(new TwoItemConstructor)", "'0:b(FromPrototype), 1:a(FromPrototype), length:2(F…
130 shouldBe("Array.prototype.pop.call(x = {}); properties(x)", "'length:0'");
131 shouldBe("Array.prototype.pop.call(x = ['b', 'a']); properties(x)", "'0:b, length:1(DontDelete, Don…
132 shouldBe("Array.prototype.pop.call(x = { length:2, 0:'b', 1:'a' }); properties(x)", "'0:b, length:1…
133 shouldBe("Array.prototype.pop.call(x = new TwoItemConstructor); properties(x)", "'0:b(FromPrototype…
[all …]
/external/emma/core/java12/com/vladium/util/
DProperty.java20 import java.util.Properties;
56 public static Properties combine (final Properties overrides, final Properties base) in combine()
74 final Properties result = new XProperties (base); in combine()
91 * Creates a set of properties for an application with a given namespace.
97 * @return application properties [never null, a new instance is created
100 public static Properties getAppProperties (final String namespace, final ClassLoader loader) in getAppProperties()
103 throw new IllegalArgumentException ("null properties: appNameLC"); in getAppProperties()
105 … final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader); in getAppProperties()
106 final Properties systemFileOverrides; in getAppProperties()
108 final String fileName = Property.getSystemProperty (namespace + ".properties"); in getAppProperties()
[all …]
/external/v8/test/mjsunit/
Dmirror-object.js56 // Check the mirror properties.
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');
89 // If the object has some special properties don't test for these.
112 // Check that the serialization contains all properties.
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCParser.h70 /* start properties */
71 /* AST returnScopeInterface.properties */
89 /* start properties */
90 /* AST returnScopeInterface.properties */
108 /* start properties */
109 /* AST returnScopeInterface.properties */
127 /* start properties */
128 /* AST returnScopeInterface.properties */
146 /* start properties */
147 /* AST returnScopeInterface.properties */
[all …]
/external/autotest/client/cros/networking/
Dshill_proxy.py84 # EAP related properties.
91 # OpenVPN related properties.
106 # L2TP VPN related properties.
241 """Convert service properties to dbus types.
243 @param in_dict: Dictionary containing service properties.
244 @return DBus variant dictionary containing service properties.
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)
[all …]
/external/chromium-trace/catapult/third_party/WebOb/webob/
Dcachecontrol.py77 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/emma/core/java12/com/vladium/emma/
DEMMAProperties.java15 import java.util.Properties;
26 * A reflection of "${IAppConstants.APP_PROPERTY_RES_NAME}.properties" resource
99 * Wraps a Properties into a IProperties with the app's standard property
102 * @param properties [null results in null result]
104 public static IProperties wrap (final Properties properties) in wrap() argument
106 if (properties == null) return null; in wrap()
108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER); in wrap()
112 * Retrieves application properties as classloader resource with a given name.
116 * @return properties [can be null]
127 IProperties properties = (IProperties) s_properties.get (loader); in getAppProperties() local
[all …]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DOutputPropertiesFactory.java29 import java.util.Properties;
38 * This class is a factory to generate a set of default properties
41 * The properties generated by this factory
50 * that can be used to set non-standard property values on a java.util.Properties object
56 * properties value is a the number of whitespaces to indent by per
190 /** property file for default XML properties */
191 private static final String PROP_FILE_XML = "output_xml.properties";
192 /** property file for default TEXT properties */
193 private static final String PROP_FILE_TEXT = "output_text.properties";
194 /** property file for default HTML properties */
[all …]
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
DConfigLoaderTest.java17 import java.util.Properties;
28 Properties system = new Properties(); in testResource()
29 Properties config = ConfigLoader.load( in testResource()
30 "/org/jacoco/agent/rt/internal/agent-test.properties", system); in testResource()
37 Properties system = new Properties(); in testNoResource()
38 Properties config = ConfigLoader.load("does-not-exist.properties", in testNoResource()
46 Properties system = new Properties(); in testSystemProperties()
50 Properties config = ConfigLoader.load( in testSystemProperties()
51 "/org/jacoco/agent/rt/internal/agent-test.properties", system); in testSystemProperties()
60 Properties system = new Properties(); in testSubstituteProperties()
[all …]
/external/easymock/src/org/easymock/internal/
DEasyMockProperties.java22 import java.util.Properties;
25 * Contains properties used by EasyMock to change its default behavior. The
26 * loading order is (any step being able to overload the properties of the
29 * <li>easymock.properties in classpath default package</li>
30 * <li>System properties</li>
41 private final Properties properties = new Properties(); field in EasyMockProperties
57 // Load the easymock.properties file in EasyMockProperties()
59 "easymock.properties"); in EasyMockProperties()
63 properties.load(in); in EasyMockProperties()
66 "Failed to read easymock.properties file"); in EasyMockProperties()
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
DPropertyUtils.java47 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()
62 // add JavaBean properties 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()
87 throw new YAMLException("No JavaBean properties found in " + type.getName()); in getPropertiesMap()
89 propertiesCache.put(type, properties); in getPropertiesMap()
90 return properties; in getPropertiesMap()
[all …]
/external/caliper/caliper/src/main/java/com/google/caliper/model/
DHost.java35 * The performance-informing properties of the host on which a benchmark is run.
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
[all …]
DVmSpec.java39 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/vulkan-validation-layers/libs/vkjson/
Dvkjson.cc74 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 …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/html/
Dproperties.html6 <title>Properties view</title>
10 <h1>Properties view</h1>
12 Properties view contents is different for each select element of the component hierarchy.
22 <p><img src="images/properties-warnings.png" alt="Properties warnings"/></p>
24 It's also possible to add a text into the survey comment on each properties:
25 <p><img src="images/properties-survey-comment.png" alt="Properties survey comment"/></p>
30 <h2>Component properties</h2>
33 <h2>Scenario properties</h2>
36 <h2>Config properties</h2>
39 <h2>Build properties</h2>
[all …]

12345678910>>...158