HomeSort by relevance Sort by last modified time
    Searched refs:properties (Results 176 - 200 of 876) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jar 
org.eclipse.equinox.event_1.2.0.v20100503.jar 
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
DimResultsElement.java 17 import org.eclipse.ui.views.properties.IPropertyDescriptor;
18 import org.eclipse.ui.views.properties.PropertyDescriptor;
19 import org.eclipse.ui.views.properties.TextPropertyDescriptor;
95 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyDescriptors()
113 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
BuildResultsProperties.java 15 import org.eclipse.ui.views.properties.IPropertyDescriptor;
16 import org.eclipse.ui.views.properties.TextPropertyDescriptor;
67 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyDescriptors()
75 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
  /external/v8/src/
apinatives.js 106 var properties = %GetTemplateField(data, kApiPropertyListOffset);
107 if (properties) {
111 for (var i = 0; i < properties[0]; i += 3) {
112 var name = properties[i + 1];
113 var prop_data = properties[i + 2];
114 var attributes = properties[i + 3];
preparse-data.h 51 int properties,
91 int properties,
96 function_store_.Add(properties);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DOMStringMapCustom.cpp 60 v8::Handle<v8::Array> properties = v8::Array::New(names.size()); local
62 properties->Set(v8::Integer::New(i), v8String(names[i]));
63 return properties;
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_group_add.py 29 def GroupStarted(properties):
30 if properties.has_key("group_object"):
32 % properties["group_object"]
  /hardware/libhardware/include/hardware/
bluetooth.h 120 /* Properties common to both adapter and remote device */
158 /* Properties unique to adapter */
179 /* Properties unique to remote device */
232 /** GET/SET Adapter Properties callback */
243 bt_property_t *properties);
245 /** GET/SET Remote Device Properties callback */
246 /** TODO: For remote device properties, do not see a need to get/set
247 * multiple properties - num_properties shall be 1
252 bt_property_t *properties);
258 bt_property_t *properties);
    [all...]
  /tools/motodev/src/plugins/launch/src/com/motorola/studio/android/launch/ui/
DeviceSelectionDialog.java 20 import java.util.Properties;
86 Properties properties = instance.getProperties();
87 if (properties != null)
89 String target = properties.getProperty("ro.build.version.release"); //$NON-NLS-1$
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST4ObjC.stg 49 @returnScope.ruleReturn.properties() ::= <<
91 @genericParserHeaderFile.properties() ::= <<
92 <@super.properties()>
93 /* ST genericParser.properties */
  /external/smali/smali/
Android.mk 65 #create a new smali.properties file using the correct version
66 $(intermediates)/resources/smali.properties:
70 LOCAL_JAVA_RESOURCE_FILES := $(intermediates)/resources/smali.properties
  /external/v8/test/mjsunit/
megamorphic-callbacks.js 40 // Create a slow-case object (with hashed properties).
50 // Create a new slow-case object (with hashed properties) and add
51 // setter and getter properties to the object.
builtins.js 30 // Checks that all function properties of the builtin object that are actually
31 // constructors (recognized by having properties on their .prototype object),
32 // have only unconfigurable properties on the prototype, and the methods
42 // A constructor is a function with a prototype and properties on the
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
runtests.bat 13 set properties= variable
55 if x%1==x-properties set properties=-propertyfile %2 && shift && shift && goto processcmdlineargs variable
85 %antRunner% -file test.xml %tests% -Dws=%ws% -Dos=%os% -Darch=%arch% %properties% "-D%installmode%=true" -logger org.apache.tools.ant.DefaultLogger
  /external/proguard/build/
makefile 69 $(shell find $(SRC)/$(dir $(1)) -maxdepth 1 \( -name \*.properties -o -name \*.png -o -name \*.gif -o -name \*.pro \) -printf $(CLASSES)/$(dir $(1))%P\\n)
84 $(CLASSES)/%.properties $(CLASSES)/%.png $(CLASSES)/%.gif $(CLASSES)/%.pro:
  /external/v8/test/mjsunit/regress/
regress-1692.js 52 // Inherited properties are ignored.
58 // Own properties.
76 // Nonexisting properties.
80 // String object properties.
  /external/webkit/Source/WebCore/bridge/
testM.js 3 myInterface.logMessage ("Testing properties:");
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProviderBase.java 115 public LocationProviderBase(String tag, ProviderPropertiesUnbundled properties) {
119 mProperties = properties.getProviderProperties();
  /prebuilts/tools/common/proguard/proguard4.7/build/
makefile 69 $(shell find $(SRC)/$(dir $(1)) -maxdepth 1 \( -name \*.properties -o -name \*.png -o -name \*.gif -o -name \*.pro \) -printf $(CLASSES)/$(dir $(1))%P\\n)
84 $(CLASSES)/%.properties $(CLASSES)/%.png $(CLASSES)/%.gif $(CLASSES)/%.pro:
  /sdk/eclipse/scripts/
build_plugins.sh 13 # Other properties, ant scripts that drive the build are defined in ./buildConfig
59 # build.properties file. We can easily support other platforms but would need
201 rm -fv *.properties *.xml
250 rm -fv *.properties *.xml
  /external/webkit/Source/JavaScriptCore/runtime/
ObjectConstructor.cpp 171 PropertyNameArray properties(exec);
172 asObject(exec->argument(0))->getOwnPropertyNames(exec, properties, IncludeDontEnumProperties);
174 size_t numProperties = properties.size();
176 names->push(exec, jsOwnedString(exec, properties[i].ustring()));
185 PropertyNameArray properties(exec);
186 asObject(exec->argument(0))->getOwnPropertyNames(exec, properties);
188 size_t numProperties = properties.size();
190 keys->push(exec, jsOwnedString(exec, properties[i].ustring()));
283 return throwVMError(exec, createTypeError(exec, "Properties can only be defined on Objects."));
297 static JSValue defineProperties(ExecState* exec, JSObject* object, JSObject* properties)
    [all...]
  /external/harfbuzz/src/
harfbuzz-indic.cpp 1150 static QString propertiesToString(int properties)
1153 properties = ~properties;
1154 if (properties & LocaProperty)
1156 if (properties & CcmpProperty)
1158 if (properties & InitProperty)
1160 if (properties & NuktaProperty)
1162 if (properties & AkhantProperty
1219 unsigned char properties = scriptProperties[script-HB_Script_Devanagari]; local
    [all...]
  /external/webkit/Source/WebCore/css/
CSSParser.cpp 790 /* The comment to the left defines all valid value of this properties as defined
794 /* All the CSS properties are not supported by the renderer at the moment.
795 * Note that all the CSS2 Aural properties are only checked, if CSS_AURAL is defined
868 /* Start of supported CSS properties with validation. This is needed for parseShorthand to work
978 const int properties[2] = { CSSPropertyWebkitBorderHorizontalSpacing, local
1473 const int properties[5] = { CSSPropertyWebkitMarqueeDirection, CSSPropertyWebkitMarqueeIncrement, local
1631 const int properties[2] = { CSSPropertyWebkitMarginBeforeCollapse, local
1813 const int properties[] = { CSSPropertyBackgroundImage, CSSPropertyBackgroundRepeat, local
1819 const int properties[] = { CSSPropertyWebkitMaskImage, CSSPropertyWebkitMaskRepeat, local
1827 const int properties[3] = { CSSPropertyBorderWidth, CSSPropertyBorderStyle, local
1834 const int properties[3] = { CSSPropertyBorderTopWidth, CSSPropertyBorderTopStyle, local
1841 const int properties[3] = { CSSPropertyBorderRightWidth, CSSPropertyBorderRightStyle, local
1848 const int properties[3] = { CSSPropertyBorderBottomWidth, CSSPropertyBorderBottomStyle, local
1855 const int properties[3] = { CSSPropertyBorderLeftWidth, CSSPropertyBorderLeftStyle, local
1861 const int properties[3] = { CSSPropertyWebkitBorderStartWidth, CSSPropertyWebkitBorderStartStyle, local
1867 const int properties[3] = { CSSPropertyWebkitBorderEndWidth, CSSPropertyWebkitBorderEndStyle, local
1873 const int properties[3] = { CSSPropertyWebkitBorderBeforeWidth, CSSPropertyWebkitBorderBeforeStyle, local
1879 const int properties[3] = { CSSPropertyWebkitBorderAfterWidth, CSSPropertyWebkitBorderAfterStyle, local
1886 const int properties[3] = { CSSPropertyOutlineWidth, CSSPropertyOutlineStyle, local
1893 const int properties[4] = { CSSPropertyBorderTopColor, CSSPropertyBorderRightColor, local
1900 const int properties[4] = { CSSPropertyBorderTopWidth, CSSPropertyBorderRightWidth, local
1907 const int properties[4] = { CSSPropertyBorderTopStyle, CSSPropertyBorderRightStyle, local
1914 const int properties[4] = { CSSPropertyMarginTop, CSSPropertyMarginRight, local
1921 const int properties[4] = { CSSPropertyPaddingTop, CSSPropertyPaddingRight, local
1935 const int properties[3] = { CSSPropertyListStyleType, CSSPropertyListStylePosition, local
1940 const int properties[2] = { CSSPropertyWebkitColumnWidth, CSSPropertyWebkitColumnCount }; local
1944 const int properties[3] = { CSSPropertyWebkitColumnRuleWidth, CSSPropertyWebkitColumnRuleStyle, local
1949 const int properties[2] = { CSSPropertyWebkitTextStrokeWidth, CSSPropertyWebkitTextStrokeColor }; local
1986 const int properties[] = { CSSPropertyWebkitTextEmphasisStyle, CSSPropertyWebkitTextEmphasisColor }; local
2245 const int properties[] = { CSSPropertyWebkitAnimationName, local
2306 const int properties[] = { CSSPropertyWebkitTransitionProperty, local
    [all...]

Completed in 440 milliseconds

1 2 3 4 5 6 78 91011>>