Searched full:properties (Results 1 – 25 of 2730) sorted by relevance
12345678910>>...110
4 <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 …]
20 assert len(lexer.properties) == 3, lexer.properties22 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 …]
... org/eclipse/ui/internal/views/properties/messages.properties org/eclipse/ui/ ...
1 // Test that @properties within class extensions are visited by46 // 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 …]
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 …]
28 function properties(object, extraName1, extraName2, extraName3) function32 // destructive, lists properties96 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 …]
18 * The blender object's custom properties.22 public class Properties implements Cloneable, Savable { class23 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() local130 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 …]
56 // 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 …]
20 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 created100 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 …]
77 return self.prop in obj.properties87 obj.properties[self.prop] = None89 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 present132 obj.properties[self.prop] = value[all …]
15 import java.util.Properties;26 * A reflection of "${IAppConstants.APP_PROPERTY_RES_NAME}.properties" resource99 * Wraps a Properties into a IProperties with the app's standard property102 * @param properties [null results in null result]104 public static IProperties wrap (final Properties properties) in wrap() argument106 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 …]
70 /* 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 …]
22 import java.util.Properties;25 * Contains properties used by EasyMock to change its default behavior. The26 * loading order is (any step being able to overload the properties of the29 * <li>easymock.properties in classpath default package</li>30 * <li>System properties</li>41 private final Properties properties = new Properties(); field in EasyMockProperties57 // 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 …]
6 <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 …]
25 import java.util.Properties;120 Properties properties = new Properties(); in createJarMetadataFiles() local121 fillInProperties(properties, action); in createJarMetadataFiles()122 properties.store(propertiesOut, "generated by " + Mode.class.getName()); in createJarMetadataFiles()127 * Fill in properties for running in this mode129 private void fillInProperties(Properties properties, Action action) { in fillInProperties() argument130 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 …]
29 import java.util.Properties;38 * This class is a factory to generate a set of default properties41 * The properties generated by this factory50 * that can be used to set non-standard property values on a java.util.Properties object56 * properties value is a the number of whitespaces to indent by per190 /** 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 …]
1 // properties.h32 // bits are added, then the composite properties below, the property33 // functions and property names in properties.cc, and34 // TestProperties() in test-properties.h should be updated.37 // BINARY PROPERTIES53 // TRINARY PROPERTIES55 // For each of these properties below there is a pair of property bits142 // COMPOSITE PROPERTIES145 // Properties of an empty machine152 // Properties that are preserved when an FST is copied[all …]
4 <!-- 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 the10 '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 rules22 Properties related to the SDK location or the project target should29 <property file="ant.properties" />33 This must be done before we load project.properties since[all …]
4 import java.util.Properties;10 public static String doSingleSubstitution(String originalValue, Properties properties) { in doSingleSubstitution() argument22 if (properties != null) { in doSingleSubstitution()23 propertyValue = properties.getProperty(propertyName); in doSingleSubstitution()41 public static void doSubstitutions(Properties properties) { in doSubstitutions() argument42 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()
28 import java.util.Properties;41 protected final Properties properties; field in TestRunner62 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 …]
53 * The Vector of properties (can contain PropertyInfo and SoapObject)55 protected Vector properties = new Vector(); field in SoapObject57 // TODO: accessing properties and attributes would work much better if we58 // kept a list of known properties instead of iterating through the list95 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 …]
4 <Properties>6 </Properties>38 <Properties>43 </Properties>49 <Properties>51 </Properties>54 <Properties>56 </Properties>62 <Properties>64 </Properties>[all …]
37 def interfaceAdded(interface, properties): argument38 print "InterfaceAdded(%s): Ifname=%s" % (interface, properties['Ifname'])43 def propertiesChanged(properties): argument44 for i in properties:45 print "PropertiesChanged: %s=%s" % (i, properties[i])92 def bssAdded(bss, properties): argument105 def networkAdded(network, properties): argument114 def propertiesChangedInterface(properties): argument115 for i in properties:116 print "PropertiesChanged(interface): %s=%s" % (i, properties[i])[all …]
29 import java.util.Properties;50 * An example properties file for configuration is in51 * $JETTY_HOME/etc/jdbcRealm.properties117 Properties properties = new Properties(); in doStart() local119 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 …]