| /external/webkit/Source/WebCore/css/ |
| D | CSSProperty.cpp | 43 …extDirection direction, WritingMode writingMode, LogicalBoxSide logicalSide, const int* properties) in resolveToPhysicalProperty() argument 49 return properties[logicalSide]; in resolveToPhysicalProperty() 56 return properties[LeftSide]; in resolveToPhysicalProperty() 58 return properties[RightSide]; in resolveToPhysicalProperty() 60 return properties[BottomSide]; in resolveToPhysicalProperty() 62 return properties[TopSide]; in resolveToPhysicalProperty() 70 return properties[TopSide]; in resolveToPhysicalProperty() 72 return properties[BottomSide]; in resolveToPhysicalProperty() 74 return properties[LeftSide]; in resolveToPhysicalProperty() 76 return properties[RightSide]; in resolveToPhysicalProperty() [all …]
|
| D | CSSMutableStyleDeclaration.cpp | 62 …tyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& properties) in CSSMutableStyleDeclaration() argument 64 , m_properties(properties) in CSSMutableStyleDeclaration() 72 // FIXME: This allows duplicate properties. in CSSMutableStyleDeclaration() 75 …CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperti… in CSSMutableStyleDeclaration() argument 86 const CSSProperty *property = properties[i]; in CSSMutableStyleDeclaration() 114 // Shorthand and 4-values properties in getPropertyValue() 117 …const int properties[2] = { CSSPropertyWebkitBorderHorizontalSpacing, CSSPropertyWebkitBorderVerti… in getPropertyValue() local 118 return borderSpacingValue(properties); in getPropertyValue() 122 … const int properties[2] = { CSSPropertyBackgroundPositionX, CSSPropertyBackgroundPositionY }; in getPropertyValue() local 123 return getLayeredShorthandValue(properties); in getPropertyValue() [all …]
|
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
| D | PropertiesTest.java | 38 import java.util.Properties; 46 Properties tProps; 51 * @tests java.util.Properties#Properties() 54 // Test for method java.util.Properties() in test_Constructor() 55 Properties p = new Properties(); in test_Constructor() 58 assertTrue("Created incorrect Properties", true); in test_Constructor() 62 Properties p = new Properties(); in test_loadLjava_io_InputStream_NPE() 72 Properties p = new Properties(); in test_loadsave() 82 * @tests java.util.Properties#Properties(java.util.Properties) 85 Properties systemProperties = System.getProperties(); in test_ConstructorLjava_util_Properties() [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/chromium/chrome/browser/extensions/ |
| D | extension_context_menu_api.cc | 38 const DictionaryValue& properties, in ParseContexts() argument 42 if (!properties.GetList(key, &list)) { in ParseContexts() 80 const DictionaryValue& properties, in ParseType() argument 84 if (!properties.HasKey(kTypeKey)) { in ParseType() 90 if (!properties.GetString(kTypeKey, &type_string)) in ParseType() 111 const DictionaryValue& properties, in ParseChecked() argument 114 if (!properties.HasKey(kCheckedKey)) { in ParseChecked() 118 if (!properties.GetBoolean(kCheckedKey, checked)) in ParseChecked() 129 const DictionaryValue& properties, in ParseURLPatterns() argument 132 if (!properties.HasKey(key)) in ParseURLPatterns() [all …]
|
| D | extension_context_menu_api.h | 22 bool ParseContexts(const DictionaryValue& properties, 26 // Looks in properties for the "type" key, and reads the value in |result|. On 30 bool ParseType(const DictionaryValue& properties, 36 const DictionaryValue& properties, 42 bool ParseURLPatterns(const DictionaryValue& properties, 46 // Reads in any document and targetUrl patterns from |properties| and sets 48 bool SetURLPatterns(const DictionaryValue& properties, 51 // If the parentId key was specified in properties, this will try looking up 54 // parentId key is not in properties, this will return true and leave |result| 57 bool GetParent(const DictionaryValue& properties,
|
| /external/chromium/base/win/ |
| D | event_trace_controller.cc | 106 HRESULT EtwTraceController::Stop(EtwTraceProperties* properties) { in Stop() argument 108 if (properties == NULL) in Stop() 109 properties = &ignore; in Stop() 111 ULONG error = ::ControlTrace(session_, NULL, properties->get(), in Stop() 121 HRESULT EtwTraceController::Flush(EtwTraceProperties* properties) { in Flush() argument 123 if (properties == NULL) in Flush() 124 properties = &ignore; in Flush() 126 ULONG error = ::ControlTrace(session_, NULL, properties->get(), in Flush() 135 EtwTraceProperties* properties, TRACEHANDLE* session_handle) { in Start() argument 136 DCHECK(properties != NULL); in Start() [all …]
|
| D | event_trace_controller.h | 54 // Copies logger_name to the properties structure. 60 // Copies logger_file_name to the properties structure. 65 // Properties buffer allocates space for header and for 76 // Our properties header. 93 // Start a session with given name and properties. 96 // Starts a session tracing to a file with some default properties. 101 // Starts a realtime session with some default properties. 113 // Stops our session and retrieve the new properties of the session, 114 // properties may be NULL. 115 HRESULT Stop(EtwTraceProperties* properties); [all …]
|
| /external/v8/test/mjsunit/ |
| D | mirror-object.js | 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 hierachy'); 73 assertTrue(properties[i] instanceof debug.PropertyMirror, 'Unexpected mirror hierachy'); 74 assertEquals('property', properties[i].type(), 'Unexpected mirror type'); 75 assertEquals(names[i], properties[i].name(), 'Unexpected property name'); 82 // If the object has some special properties don't test for these. 105 // Check that the serialization contains all properties. [all …]
|
| /external/emma/core/java12/com/vladium/util/ |
| D | Property.java | 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 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/srec/tools/thirdparty/OpenFst/fst/lib/ |
| D | properties.h | 1 // properties.h 26 // bits are added, then the composite properties below, the property 27 // functions and property names in properties.cc, and 28 // TestProperties() in test-properties.h should be updated. 31 // BINARY PROPERTIES 44 // TRINARY PROPERTIES 46 // For each of these properties below there is a pair of property bits 133 // COMPOSITE PROPERTIES 136 // Properties of an empty machine 144 // Properties that are preserved when an FST is copied [all …]
|
| D | properties.cpp | 1 // properties.cc 18 // string names of the properties. 22 #include "fst/lib/properties.h" 26 // These functions determine the properties associated with the FST 28 // correspond to the operation's FST arguments. The properties 33 // Properties for a concatenatively-closed FST. 46 // Properties for a complemented FST. 57 // Properties for a composed FST. 68 // Properties for a concatenated FST. 101 // Properties for a determinized FST. [all …]
|
| D | test-properties.h | 1 // test-properties.h 43 // Tests compatibility between two sets of properties 62 // Computes FST property values defined in properties.h. The value of 65 // the properties specifically requested in the mask, certain other 66 // properties may be determined (those with little additional expense) 68 // known properties (whether true or false) determined by this 70 // If 'use_stored' is true, pre-computed FST properties may be used 72 // is used to implement fst.Properties(mask, true). 80 uint64 fst_props = fst.Properties(kFstProperties, false); // Fst-stored in ComputeProperties() 82 // Check stored FST properties first if allowed. in ComputeProperties() [all …]
|
| /external/easymock/src/org/easymock/internal/ |
| D | EasyMockProperties.java | 22 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/emma/core/java12/com/vladium/emma/ |
| D | EMMAProperties.java | 15 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/bluetooth/bluez/test/ |
| D | test-adapter | 42 properties = adapter.GetProperties() variable 43 print properties["Address"] 48 properties = adapter.GetProperties() variable 49 print properties["Name"] 56 properties = adapter.GetProperties() variable 57 print properties["Powered"] 70 properties = adapter.GetProperties() variable 71 print properties["Pairable"] 84 properties = adapter.GetProperties() variable 85 print properties["PairableTimeout"] [all …]
|
| D | list-devices | 37 properties = adapter.GetProperties() variable 38 for key in properties.keys(): 39 value = properties[key] 50 device_list = properties["Devices"] 59 properties = device.GetProperties() variable 60 for key in properties.keys(): 61 value = properties[key] 74 node_list = properties["Nodes"] 83 properties = node.GetProperties() variable 84 for key in properties.keys(): [all …]
|
| /external/apache-xml/src/main/java/org/apache/xml/serializer/ |
| D | OutputPropertiesFactory.java | 29 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/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/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/support/ |
| D | TestUtils.java | 28 import java.util.Properties; 75 Properties properties = System.getProperties(); in setSystemProperty() local 77 properties.remove(key); in setSystemProperty() 79 properties.setProperty(key, value); in setSystemProperty() 81 System.setProperties(properties); in setSystemProperty() 85 * Creates security properties file. 88 * passed custom properties. 91 * security properties to be added to properties file 96 public static String createJavaPropertiesFile(Properties props) in createJavaPropertiesFile() 104 Properties propsToFlush = new Properties(); in createJavaPropertiesFile()
|
| /external/webkit/Tools/QueueStatusServer/ |
| D | index.yaml | 14 properties: 20 properties: 27 properties: 35 properties: 42 properties: 48 properties: 55 properties: 60 properties: 66 properties:
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
| D | forin-001.js | 102 var properties = new Array(); 105 for ( properties[properties.length] in object ) { 106 values[values.length] = object[properties[properties.length-1]]; 119 "properties.length", 121 properties.length ); 125 "object["+properties[0]+"]", 127 object[properties[0]] ); 267 var properties = new Array(); 270 for ( properties[properties.length] in object ) { 271 values[values.length] = object[properties[properties.length-1]]; [all …]
|
| /external/bluetooth/bluez/doc/ |
| D | audio-api.txt | 27 Returns all properties for the interface. See the 28 properties section for available properties. 35 Properties string State 117 Returns all properties for the interface. See the 118 properties section for available properties. 125 properties that are listed a read-write are changeable. 164 properties string State [readonly] 231 Returns all properties for the interface. See the 232 properties section for available properties. 258 properties string State [readonly] [all …]
|
| /external/icu4c/tools/genprops/ |
| D | store.c | 16 * Store Unicode character properties efficiently for 34 /* Unicode character properties file format ------------------------------------ 41 precedes the actual data. It contains platform properties values and the 52 the properties, if any, for that code point. This means that the input 69 i0 propsIndex; -- 32-bit unit index to the table of 32-bit properties words 73 i3 additionalTrieIndex; -- 32-bit unit index to the additional trie for more properties 74 i4 additionalVectorsIndex; -- 32-bit unit index to the table of properties vectors 75 i5 additionalVectorsColumns; -- number of 32-bit words per properties vector 77 i6 reservedItemIndex; -- 32-bit unit index to the top of the properties vectors table 84 PT serialized properties trie, see utrie.h (byte size: 4*(i0-16)) [all …]
|
| /external/webkit/Tools/TestResultServer/ |
| D | index.yaml | 14 properties: 20 properties: 26 properties: 35 properties: 42 properties: 50 properties: 56 properties: 62 properties:
|