Home
last modified time | relevance | path

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

12345678910>>...110

/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/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/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/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/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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
DProperties.java18 * The blender object's custom properties.
22 public class Properties implements Cloneable, Savable { class
23 private static final Logger LOGGER = Logger.getLogger(Properties.class.getName());
127 List<Properties> subProperties = new ArrayList<Properties>(len); in load()
129 Properties properties = new Properties(); in load() local
130 properties.load(d, blenderContext); in load()
131 subProperties.add(properties); in load()
145 Properties temp = new Properties(); in load()
214 List<Properties> props = (List<Properties>) value; in findValue()
215 for (Properties p : props) { in findValue()
[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/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/chromium-trace/trace-viewer/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/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/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/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 …]
/external/vogar/src/vogar/tasks/
DBuildActionTask.java25 import java.util.Properties;
120 Properties properties = new Properties(); in createJarMetadataFiles() local
121 fillInProperties(properties, action); in createJarMetadataFiles()
122 properties.store(propertiesOut, "generated by " + Mode.class.getName()); in createJarMetadataFiles()
127 * Fill in properties for running in this mode
129 private void fillInProperties(Properties properties, Action action) { in fillInProperties() argument
130 properties.setProperty(TestProperties.TEST_CLASS_OR_PACKAGE, action.getTargetClass()); in fillInProperties()
131 properties.setProperty(TestProperties.QUALIFIED_NAME, action.getName()); in fillInProperties()
132 properties.setProperty(TestProperties.MONITOR_PORT, Integer.toString(run.firstMonitorPort)); in fillInProperties()
133 properties.setProperty(TestProperties.TIMEOUT, Integer.toString(run.timeoutSeconds)); in fillInProperties()
[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/openfst/src/include/fst/
Dproperties.h1 // properties.h
32 // bits are added, then the composite properties below, the property
33 // functions and property names in properties.cc, and
34 // TestProperties() in test-properties.h should be updated.
37 // BINARY PROPERTIES
53 // TRINARY PROPERTIES
55 // For each of these properties below there is a pair of property bits
142 // COMPOSITE PROPERTIES
145 // Properties of an empty machine
152 // Properties that are preserved when an FST is copied
[all …]
/external/androidplot/Examples/DemoApp/
Dbuild.xml4 <!-- The local.properties file is created and updated by the 'android' tool.
7 <property file="local.properties" />
9 <!-- The ant.properties file can be created by you. It is only edited by the
10 'android' tool to add properties to it.
11 This is the place to change some Ant specific build properties.
12 Here are some properties you may want to change/update:
19 For other overridable properties, look at the beginning of the rules
22 Properties related to the SDK location or the project target should
29 <property file="ant.properties" />
33 This must be done before we load project.properties since
[all …]
/external/skia/platform_tools/android/examples/hello_skia_app/
Dbuild.xml4 <!-- The local.properties file is created and updated by the 'android' tool.
7 <property file="local.properties" />
9 <!-- The ant.properties file can be created by you. It is only edited by the
10 'android' tool to add properties to it.
11 This is the place to change some Ant specific build properties.
12 Here are some properties you may want to change/update:
19 For other overridable properties, look at the beginning of the rules
22 Properties related to the SDK location or the project target should
29 <property file="ant.properties" />
33 This must be done before we load project.properties since
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
DPropertiesHelper.java4 import java.util.Properties;
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/vogar/src/vogar/target/
DTestRunner.java28 import java.util.Properties;
41 protected final Properties properties; field in TestRunner
62 properties = loadProperties(); in TestRunner()
63 qualifiedName = properties.getProperty(TestProperties.QUALIFIED_NAME); in TestRunner()
64 qualifiedClassOrPackageName = properties.getProperty(TestProperties.TEST_CLASS_OR_PACKAGE); in TestRunner()
65 timeoutSeconds = Integer.parseInt(properties.getProperty(TestProperties.TIMEOUT)); in TestRunner()
67 int monitorPort = Integer.parseInt(properties.getProperty(TestProperties.MONITOR_PORT)); in TestRunner()
69 boolean profile = Boolean.parseBoolean(properties.getProperty(TestProperties.PROFILE)); in TestRunner()
70 int profileDepth = Integer.parseInt(properties.getProperty(TestProperties.PROFILE_DEPTH)); in TestRunner()
72 = Integer.parseInt(properties.getProperty(TestProperties.PROFILE_INTERVAL)); in TestRunner()
[all …]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DSoapObject.java53 * The Vector of properties (can contain PropertyInfo and SoapObject)
55 protected Vector properties = new Vector(); field in SoapObject
57 // TODO: accessing properties and attributes would work much better if we
58 // kept a list of known properties instead of iterating through the list
95 int numProperties = properties.size(); in equals()
96 if (numProperties != otherSoapObject.properties.size()) { in equals()
100 // SoapObjects are only considered the same if properties equals and in the same order 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()
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/audio/
DTestMusicPlayer.form4 <Properties>
6 </Properties>
38 <Properties>
43 </Properties>
49 <Properties>
51 </Properties>
54 <Properties>
56 </Properties>
62 <Properties>
64 </Properties>
[all …]
/external/wpa_supplicant_8/wpa_supplicant/examples/
Dwpas-dbus-new-signals.py37 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/jetty/src/java/org/eclipse/jetty/security/
DJDBCLoginService.java29 import java.util.Properties;
50 * An example properties file for configuration is in
51 * $JETTY_HOME/etc/jdbcRealm.properties
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()
[all …]

12345678910>>...110