/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/ |
XMPProperty.java | 10 package com.adobe.xmp.properties;
|
XMPPropertyInfo.java | 10 package com.adobe.xmp.properties; 17 * It is returned when properties are iterated with the <code>XMPIterator</code>.
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
TestUtils.java | 25 import java.util.Properties; 72 Properties properties = System.getProperties(); local 74 properties.remove(key); 76 properties.setProperty(key, value); 78 System.setProperties(properties);
|
/system/core/toolbox/ |
setprop.c | 3 #include <cutils/properties.h>
|
start.c | 6 #include <cutils/properties.h>
|
stop.c | 4 #include <cutils/properties.h>
|
/libcore/luni/src/test/java/tests/support/ |
Support_SQL.java | 25 import java.util.Properties; 52 .getResourceAsStream("/connection.properties"); 100 Properties properties = new Properties(); local 101 properties.load(fileName); 102 sqlDriver = properties.getProperty("sqlDriver"); 103 sqlLogin = properties.getProperty("sqlLogin"); 104 sqlCatalog = properties.getProperty("sqlCatalog"); 105 sqlHost = properties.getProperty("sqlHost") [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
properties.rb | 15 @properties = [] 18 attr_reader :properties 24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop] 30 example "referencing lexer rule properties" do 34 lexer.properties.should have( 3 ).things 35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ] 45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ] 55 lexer.properties.should have( 3 ).things 56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ]
|
/external/chromium/base/win/ |
event_trace_controller.cc | 106 HRESULT EtwTraceController::Stop(EtwTraceProperties* properties) { 108 if (properties == NULL) 109 properties = &ignore; 111 ULONG error = ::ControlTrace(session_, NULL, properties->get(), 121 HRESULT EtwTraceController::Flush(EtwTraceProperties* properties) { 123 if (properties == NULL) 124 properties = &ignore; 126 ULONG error = ::ControlTrace(session_, NULL, properties->get(), 135 EtwTraceProperties* properties, TRACEHANDLE* session_handle) { 136 DCHECK(properties != NULL) [all...] |
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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ui.views_3.5.0.I20100527-0800.jar | |
/external/easymock/src/org/easymock/internal/ |
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 class:EasyMockProperties 57 // Load the easymock.properties file
59 "easymock.properties");
[all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
XmlPropertyComposite.java | 17 package com.android.ide.eclipse.adt.internal.editors.layout.properties; 29 * in the layout editor and the common properties are shown; editing a value 40 public XmlPropertyComposite(XmlProperty primary, XmlProperty[] properties) { 46 mProperties = properties; 109 public static XmlPropertyComposite create(Property... properties) { 111 XmlProperty[] xmlProperties = new XmlProperty[properties.length]; 112 for (int i = 0; i < properties.length; i++) { 113 Property property = properties[i];
|
/tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/ |
DataNode.java | 90 properties.clear(); 94 properties.put(PROP_HOST, propHost); 99 properties.put(PROP_MIMETYPE, propMimeType); 104 properties.put(PROP_PATH, propPath); 109 properties.put(PROP_PATHPATTERN, propPathPattern); 114 properties.put(PROP_PATHPREFIX, propPathPrefix); 119 properties.put(PROP_PORT, propPort); 124 properties.put(PROP_SCHEME, propScheme); 127 return properties;
|
AbstractIconLabelNameNode.java | 23 * Abstract class to be used to create nodes that contains the properties 31 // Adds the node properties to the list 56 * @param newProperties The new properties that are accepted by the child class 80 properties.clear(); 84 properties.put(PROP_NAME, propName); 89 properties.put(PROP_ICON, propIcon); 94 properties.put(PROP_LABEL, propLabel); 99 return properties; 103 * Adds the additional properties to the properties variabl [all...] |
UsesSDKNode.java | 67 properties.clear(); 70 properties.put(PROP_MINSDKVERSION, propMinSdkVersion); 74 properties.put(PROP_MAXSDKVERSION, propMaxSdkVersion); 78 properties.put(PROP_TARGETSDKVERSION, propTargetSdkVersion); 80 return properties;
|
AbstractSimpleNameNode.java | 65 properties.clear(); 69 properties.put(PROP_NAME, propName); 72 return properties;
|
/tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/sdk/ |
SdkUtils.java | 22 import java.util.Properties;
50 private static final String SOURCE_PROPERTY_FILE = "source.properties"; //$NON-NLS-1$
99 //look forward source.properties file
104 //load properties
105 Properties properties = getPropertiesFromTarget(propertiesFile);
local 107 String apilevel = properties.getProperty(APILEVEL, "0"); //$NON-NLS-1$
133 //if source.properties does not exist (jil and ophone cases) get build.prop file
138 //load properties
139 Properties properties = getPropertiesFromTarget(propertiesFile); local 191 Properties properties = new Properties(); local [all...] |
/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...] |
/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:__anon16333::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/location/lib/java/com/android/location/provider/ |
ProviderPropertiesUnbundled.java | 22 * This class is an interface to Provider Properties for unbundled applications. 40 private ProviderPropertiesUnbundled(ProviderProperties properties) { 41 mProperties = properties;
|
/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
|