Searched refs:property (Results 1 - 25 of 862) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/
H A Dantlr3.runtime.net.common.inc6 <property name="rootbuild.dir" value="${directory::get-current-directory()}" />
8 <property name="build.dest.dir" value="${rootbuild.dir}/build/${framework::get-target-framework()}" />
9 <property name="build.working.dir" value="${rootbuild.dir}/bin" />
11 <property name="strong_name" value="NANT_STRONGNAME" unless="${property::exists('strong_name')}" />
12 <property name="debug" value="false" unless="${property::exists('debug')}" />
13 <property name="optimize" value="true" unless="${property::exists('optimize')}" />
14 <property nam
[all...]
/external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
H A Dwindow-property.js5 for (var property in window) {
6 if (property == "DeviceMotionEvent")
20 for (var property in window) {
21 if (property == "ondevicemotion")
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
H A Dwindow-property.js5 for (var property in window) {
6 if (property == 'DeviceOrientationEvent')
20 for (var property in window) {
21 if (property == 'ondeviceorientation')
/external/clang/test/PCH/
H A Dobjc_property.h10 @property int value;
11 @property float percentage;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DPropertyManager.java11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
20 * @coverage core.model.property
23 public static PropertyCategory getCategory(Property property) { argument
27 return property.getCategory();
33 public static PropertyCategory getCategoryForced(Property property) { argument
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Denabled.js5 for (var property in navigator) {
6 if (property == "geolocation")
/external/webkit/Source/WebCore/css/
H A DCSSStyleApplyProperty.h52 void applyInheritValue(CSSPropertyID property, CSSStyleSelector* selector) const argument
54 ASSERT(implements(property));
55 propertyValue(property)->applyInheritValue(selector);
58 void applyInitialValue(CSSPropertyID property, CSSStyleSelector* selector) const argument
60 ASSERT(implements(property));
61 propertyValue(property)->applyInitialValue(selector);
64 void applyValue(CSSPropertyID property, CSSStyleSelector* selector, CSSValue* value) const argument
66 ASSERT(implements(property));
67 propertyValue(property)->applyValue(selector, value);
70 bool implements(CSSPropertyID property) cons
77 index(CSSPropertyID property) argument
82 valid(CSSPropertyID property) argument
88 setPropertyValue(CSSPropertyID property, ApplyPropertyBase* value) argument
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_PlatformFile.java26 String property = System.getProperty("com.ibm.oti.configuration");
27 if (property == null) {
28 property = "JDK";
30 platformId = property
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
H A DIComplexPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor.complex;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
20 * @coverage core.model.property.editor
24 * @return sub-properties of given complex property.
26 Property[] getProperties(Property property) throws Exception; argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProviders.java11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.PropertyManager;
20 * @coverage core.model.property
29 public PropertyCategory getCategory(Property property) {
30 return property.getCategory();
42 public PropertyCategory getCategory(Property property) {
43 return PropertyManager.getCategoryForced(property);
64 public PropertyCategory getCategory(Property property) {
66 PropertyCategory category = provider.getCategory(property);
[all...]
H A DPropertyCategoryProvider.java11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
19 * @coverage core.model.property
25 PropertyCategory getCategory(Property property); argument
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dforin-002.js6 * Verify that the property name is assigned to the property on the left
46 for ( property in object ) {
49 "with loop in a for...in loop. ("+object+")["+property +"] == "+
50 "eval ( " + property +" )",
52 object[property] == eval(property) );
62 for ( property in object ) {
66 "with loop in a for...in loop. ("+object+")["+property +"] == "+
67 "eval ( " + property
[all...]
/external/chromium/chrome/browser/ui/cocoa/applescript/
H A Delement_applescript.h22 @property(nonatomic, copy) NSNumber* uniqueID;
23 @property(nonatomic, retain) id container;
24 @property(nonatomic, copy) NSString* containerProperty;
27 // container property.
32 // Sets both container and property, retains container and copies property.
33 - (void)setContainer:(id)value property:(NSString*)property;
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h34 @property(readonly, copy) NSString *name;
35 @property(readonly) BOOL specified;
36 @property(copy) NSString *value;
37 @property(readonly, retain) DOMElement *ownerElement;
38 @property(readonly, retain) DOMCSSStyleDeclaration *style AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
45 @property(copy) NSString *data;
46 @property(readonly) unsigned length;
74 @property(readonly, retain) DOMDocument *document;
78 @property(readonly, retain) DOMDocumentType *doctype;
79 @property(readonl
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DStringComboPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
20 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception { argument
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception { argument
57 protected void selectItem(Property property, CCombo3 combo) throws Exception { argument
58 combo.setText(getText(property));
62 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { argument
63 property
[all...]
H A DLocalePropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
21 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception { argument
41 Object value = property.getValue();
55 protected void openDialog(Property property) throws Exception { argument
56 Object value = property.getValue();
65 // property.setValue(localeDialog.getSelectedLocale().getLocale());
H A DITextValuePropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
19 * @coverage core.model.property.editor
25 void setText(Property property, String text) throws Exception; argument
/external/chromium/chrome/browser/ui/cocoa/
H A Dclickhold_button_cell.h28 @property(assign, nonatomic) BOOL enableClickHold;
33 @property(assign, nonatomic) NSTimeInterval clickHoldTimeout;
36 @property(assign, nonatomic) BOOL trackOnlyInRect;
40 @property(assign, nonatomic) BOOL activateOnDrag;
43 @property(assign, nonatomic) id clickHoldTarget;
44 @property(assign, nonatomic) SEL clickHoldAction;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DPropertyEditorPresentation.java11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
22 * @coverage core.model.property.editor
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property); argument
30 show(PropertyTable propertyTable, Property property, int x, int y, int width, int height) argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
H A DStringPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor.string;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
26 * @coverage core.model.property.editor
46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
47 openDialog(propertyTable, property);
62 getText(Property property) argument
76 getEditorText(Property property) argument
81 setEditorText(Property property, String text) argument
94 openDialog(PropertyTable propertyTable, Property property) argument
[all...]
/external/clang/test/Index/
H A Dcomplete-properties.m9 @property int Prop0;
10 @property int Prop1;
11 @property float Prop2;
15 @property id Prop3;
16 @property id Prop4;
25 @property id Prop3;
33 @property id Prop2;
49 @property int Prop5;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCharStreamState.h41 @property (assign) NSInteger index;
42 @property (assign) NSUInteger line;
43 @property (assign) NSUInteger charPositionInLine;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DIPropertyExceptionHandler.java11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
21 * @coverage core.model.property.table
/external/qemu/
H A Ddevice_tree.h20 const char *property, void *val_array, int size);
22 const char *property, uint32_t val);
24 const char *property, const char *string);
/external/compiler-rt/BlocksRuntime/tests/
H A Dtestfilerunner.h67 @property int options;
68 @property(assign) NSPointerArray *compileLine;
69 @property(assign) TestFileExeGenerator *generator;
70 @property bool shouldFail;
71 @property __strong char *binaryName;
72 @property __strong char *sourceName;
73 @property __strong char *libraryPath;
74 @property __strong char *frameworkPath;
77 @property(readonly) __strong char *radar;
99 @property boo
[all...]

Completed in 719 milliseconds

1234567891011>>