/external/webkit/Source/WebCore/css/ |
CSSMutableStyleDeclaration.cpp | 62 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& properties) 64 , m_properties(properties) 72 // FIXME: This allows duplicate properties. 75 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperties) 86 const CSSProperty *property = properties[i]; 114 // Shorthand and 4-values properties 117 const int properties[2] = { CSSPropertyWebkitBorderHorizontalSpacing, CSSPropertyWebkitBorderVerticalSpacing }; local 118 return borderSpacingValue(properties); 122 const int properties[2] = { CSSPropertyBackgroundPositionX, CSSPropertyBackgroundPositionY }; local 123 return getLayeredShorthandValue(properties); 126 const int properties[2] = { CSSPropertyBackgroundRepeatX, CSSPropertyBackgroundRepeatY }; local 130 const int properties[9] = { CSSPropertyBackgroundColor, local 142 const int properties[3][4] = {{ CSSPropertyBorderTopWidth, local 166 const int properties[3] = { CSSPropertyBorderTopWidth, CSSPropertyBorderTopStyle, local 171 const int properties[3] = { CSSPropertyBorderRightWidth, CSSPropertyBorderRightStyle, local 176 const int properties[3] = { CSSPropertyBorderBottomWidth, CSSPropertyBorderBottomStyle, local 181 const int properties[3] = { CSSPropertyBorderLeftWidth, CSSPropertyBorderLeftStyle, local 186 const int properties[3] = { CSSPropertyOutlineWidth, CSSPropertyOutlineStyle, local 191 const int properties[4] = { CSSPropertyBorderTopColor, CSSPropertyBorderRightColor, local 196 const int properties[4] = { CSSPropertyBorderTopWidth, CSSPropertyBorderRightWidth, local 201 const int properties[4] = { CSSPropertyBorderTopStyle, CSSPropertyBorderRightStyle, local 206 const int properties[4] = { CSSPropertyMarginTop, CSSPropertyMarginRight, local 211 const int properties[2] = { CSSPropertyOverflowX, CSSPropertyOverflowY }; local 215 const int properties[4] = { CSSPropertyPaddingTop, CSSPropertyPaddingRight, local 220 const int properties[3] = { CSSPropertyListStyleType, CSSPropertyListStylePosition, local 226 const int properties[2] = { CSSPropertyWebkitMaskPositionX, CSSPropertyWebkitMaskPositionY }; local 230 const int properties[2] = { CSSPropertyWebkitMaskRepeatX, CSSPropertyWebkitMaskRepeatY }; local 234 const int properties[] = { CSSPropertyWebkitMaskImage, CSSPropertyWebkitMaskRepeat, local 240 const int properties[3] = { CSSPropertyWebkitTransformOriginX, local 246 const int properties[4] = { CSSPropertyWebkitTransitionProperty, CSSPropertyWebkitTransitionDuration, local 251 const int properties[7] = { CSSPropertyWebkitAnimationName, CSSPropertyWebkitAnimationDuration, local 707 const int properties[2] = { CSSPropertyBackgroundPositionX, CSSPropertyBackgroundPositionY }; local [all...] |
CSSPropertyLonghand.h | 40 const int* properties() const { return m_properties; } function in class:WebCore::CSSPropertyLonghand
|
CSSMutableStyleDeclaration.h | 68 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const* properties, int numProperties) 70 return adoptRef(new CSSMutableStyleDeclaration(parentRule, properties, numProperties)); 72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties) 74 return adoptRef(new CSSMutableStyleDeclaration(0, properties)); 123 // Besides adding the properties, this also removes any existing properties with these IDs. 156 String getShorthandValue(const int* properties, size_t) const; 157 String getCommonValue(const int* properties, size_t) const; 158 String getLayeredShorthandValue(const int* properties, size_t) const; 159 String get4Values(const int* properties) const [all...] |
/external/oauth/core/src/main/java/net/oauth/ |
OAuthConsumer.java | 25 * Properties of an OAuth Consumer. Properties may be added freely, e.g. to 48 private final Map<String, Object> properties = new HashMap<String, Object>(); field in class:OAuthConsumer 51 return properties.get(name); 55 properties.put(name, value);
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
PropertiesTableModel.java | 26 private List<ViewNode.Property> properties; field in class:PropertiesTableModel 30 properties = node.properties; 58 (properties == null ? 0 : properties.size()); 68 property = properties.get(row - privateProperties.size());
|
/external/webkit/Source/WebKit/chromium/tests/ |
UniscribeHelperTest.cpp | 69 // Default font properties structure for tests to use. 70 SCRIPT_FONTPROPERTIES properties; member in class:__anon14985::UniscribeTest 75 memset(&properties, 0, sizeof(SCRIPT_FONTPROPERTIES)); 76 properties.cBytes = sizeof(SCRIPT_FONTPROPERTIES); 77 properties.wgBlank = ' '; 78 properties.wgDefault = '?'; // Used when the char is not in the font. 79 properties.wgInvalid = '#'; // Used for invalid characters. 118 false, hfont, scriptCache, &properties, 0); 151 false, hfont, scriptCache, &properties, 0);
|
/frameworks/base/tools/layoutlib/bridge/src/android/os/ |
Build_Delegate.java | 39 Map<String, String> properties = Bridge.getPlatformProperties(); local 40 String value = properties.get(property);
|
/ndk/build/tools/ |
cleanup-apps.sh | 11 rm -f $projectPath/local.properties
|
/ndk/tests/build/project-properties/jni/ |
Android.mk | 6 $(call ndk_log,Test OK: Correct target platform retrieved from project.properties: $(TARGET_PLATFORM))
|
/development/tools/emulator/system/camera/ |
EmulatedFakeCamera2.cpp | 25 #include <cutils/properties.h>
|
EmulatedQemuCamera2.cpp | 26 #include <cutils/properties.h>
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/support/ |
TestUtils.java | 28 import java.util.Properties; 75 Properties properties = System.getProperties(); local 77 properties.remove(key); 79 properties.setProperty(key, value); 81 System.setProperties(properties); 85 * Creates security properties file. 88 * passed custom properties. 91 * security properties to be added to properties fil [all...] |
/external/emma/core/java12/com/vladium/emma/ |
AppLoggers.java | 36 public static Logger create (final String appName, final IProperties properties, final Logger base) 38 if (properties == null) 39 throw new IllegalArgumentException ("null input: properties"); 45 final String _level = properties.getProperty (PROPERTY_VERBOSITY_LEVEL, 54 final String _filter = properties.getProperty (PROPERTY_VERBOSITY_FILTER);
|
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) 106 if (properties == null) return null; 108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER); 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); local [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
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() [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-dbus-new-signals.py | 37 def interfaceAdded(interface, properties): 38 print "InterfaceAdded(%s): Ifname=%s" % (interface, properties['Ifname']) 43 def propertiesChanged(properties): 44 for i in properties: 45 print "PropertiesChanged: %s=%s" % (i, properties[i]) 92 def bssAdded(bss, properties): 105 def networkAdded(network, properties): 114 def propertiesChangedInterface(properties): 115 for i in properties: 116 print "PropertiesChanged(interface): %s=%s" % (i, properties[i] [all...] |
/frameworks/base/core/jni/android/graphics/ |
RtlProperties.h | 20 #include <cutils/properties.h>
|
/frameworks/base/media/java/android/media/videoeditor/ |
MediaVideoItem.java | 25 import android.media.videoeditor.MediaArtistNativeHelper.Properties; 117 final Properties properties; local 119 properties = mMANativeHelper.getMediaProperties(filename); 131 if ((properties.width > maxInputWidth) || 132 (properties.height > maxInputHeight)) { 136 ", current width:" + properties.width + 137 " height:" + properties.height); 140 if (!properties.profileSupported) { 142 "Unsupported video profile " + properties.profile) [all...] |
/external/v8/test/mjsunit/ |
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 [all...] |
/libcore/luni/src/main/native/ |
java_lang_System.cpp | 75 std::vector<std::string> properties; local 78 properties.push_back(std::string("user.dir=") + getcwd(path, sizeof(path))); 80 properties.push_back("android.zlib.version=" ZLIB_VERSION); 81 properties.push_back("android.openssl.version=" OPENSSL_VERSION_TEXT); 83 return toStringArray(env, properties);
|
/external/bluetooth/bluez/test/ |
test-device | 53 properties = device.GetProperties() variable 54 print "%s %s" % (properties["Address"], properties["Alias"]) 125 properties = device.GetProperties() variable 126 print "0x%06x" % (properties["Class"]) 136 properties = device.GetProperties() variable 137 print properties["Name"] 148 properties = device.GetProperties() variable 149 print properties["Alias"] 162 properties = device.GetProperties( variable 182 properties = device.GetProperties() variable 201 properties = device.GetProperties() variable [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
ObjectPropertiesSection.js | 29 this.emptyPlaceholder = (emptyPlaceholder || WebInspector.UIString("No Properties")); 48 function callback(properties) 50 if (!properties) 52 self.updateProperties(properties); 60 updateProperties: function(properties, rootTreeElementConstructor, rootPropertyComparer) 70 properties.push(this.extraProperties[i]); 72 properties.sort(rootPropertyComparer); 76 for (var i = 0; i < properties.length; ++i) { 77 properties[i].parentObject = this.object; 78 this.propertiesTreeOutline.appendChild(new rootTreeElementConstructor(properties[i])) [all...] |
/external/webkit/Source/WebCore/platform/graphics/cg/ |
ImageSourceCG.cpp | 189 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, index, imageSourceOptions())); 190 if (properties) { 192 CFNumberRef num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelWidth); 195 num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelHeight); 210 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, 0, imageSourceOptions())); 211 if (!properties) 215 CFNumberRef num = (CFNumberRef)CFDictionaryGetValue(properties.get(), CFSTR("hotspotX")); 219 num = (CFNumberRef)CFDictionaryGetValue(properties.get(), CFSTR("hotspotY")); 235 // properties, allowing the cache to prune the partially decoded image. 247 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyProperties(m_decoder, imageSourceOptions())) [all...] |
/sdk/anttasks/src/com/android/ant/ |
DependencyHelper.java | 98 public static List<File> sanitizePaths(File projectFolder, IPropertySource properties, 116 File outputFile = new File(projectFolder, getOutDir(properties)); 143 ProjectProperties properties = ProjectProperties.load(projectFolder.getAbsolutePath(), local 146 if (properties == null) { 147 properties = ProjectProperties.load(projectFolder.getAbsolutePath(), 150 properties.makeWorkingCopy().merge(PropertyType.PROJECT); 153 mProperties = properties; 161 * @param source an {@link IPropertySource} that can provide the project properties values. 163 public DependencyHelper(File projectFolder, IPropertySource properties, boolean verbose) { 165 mProperties = properties; [all...] |
/external/chromium/testing/gtest/test/ |
gtest_stress_test.cc | 78 const std::vector<TestProperty>& properties, 82 std::find_if(properties.begin(), properties.end(), matches_key); 83 ASSERT_TRUE(property != properties.end()) 148 std::vector<TestProperty> properties; local 149 // We have no access to the TestResult's list of properties but we can 152 properties.push_back(result->GetTestProperty(i)); 158 ExpectKeyAndValueWereRecordedForId(properties, i, "string"); 159 ExpectKeyAndValueWereRecordedForId(properties, i, "int");
|