Searched refs:property (Results 1 - 25 of 763) 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/v8/test/intl/
H A Dutils.js32 properties.forEach(function(property) {
33 Object.defineProperty(Object.prototype, property, {
35 throw new Error('Property ' + property + ' is compromised. ' +
/external/clang/test/PCH/
H A Dobjc_property.h10 @property int value;
11 @property float percentage;
/external/guava/guava-tests/test/com/google/common/base/
H A DStandardSystemPropertyTest.java29 for (StandardSystemProperty property : StandardSystemProperty.values()) {
30 String fieldName = property.name();
32 assertEquals(expected, property.key());
37 for (StandardSystemProperty property : StandardSystemProperty.values()) {
38 assertEquals(System.getProperty(property.key()), property.value());
43 for (StandardSystemProperty property : StandardSystemProperty.values()) {
44 assertEquals(property.key() + "=" + property.value(), property
[all...]
/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/v8/test/webkit/
H A Dstring-property-iteration.js28 for (var property in "abcde") {
29 stringProperties[i++] = property;
/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/lldb/test/lang/objc/foundation/
H A Dmy-base.h7 @property int propertyMovesThings;
/external/lldb/test/lang/objc/objc-ivar-offsets/
H A Dobjc-ivar-offsets.h10 @property int backed_int;
11 @property int unbacked_int;
25 @property int derived_backed_int;
26 @property int derived_unbacked_int;
/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/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
H A DDoubleObjectPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception { argument
61 return getText(property);
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
69 property.setValue(Property.UNKNOWN_VALUE);
74 property
[all...]
/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/v8/tools/
H A Ddetect-builtins.js28 var property = { "name": name };
32 property.type = "getter";
33 result[name] = property;
37 property.type = type;
39 property.length = value.length; class
40 property.prototype = GetProperties("prototype", value.prototype);
42 property.properties = GetProperties(name, value);
43 result[name] = property;
/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/skia/experimental/iOSSampleApp/Shared/
H A DSkOptionListController.h9 @property (nonatomic, retain) NSMutableArray* fOptions;
10 @property (nonatomic, assign) NSInteger fSelectedIndex;
11 @property (nonatomic, retain) UITableViewCell* fSelectedCell;
12 @property (nonatomic, retain) UITableViewCell* fParentCell;
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-148376.js29 o.__defineSetter__('property', function() {});
33 property = 0;
/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/compiler-rt/test/BlocksRuntime/
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 536 milliseconds

1234567891011>>