HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 1 - 25 of 1133) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
objc_property.h 10 @property int value;
11 @property float percentage;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
PropertyManager.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
17 * {@link PropertyManager} is used to get/set attributes of {@link Property}.
20 * @coverage core.model.property
23 public static PropertyCategory getCategory(Property property) {
27 return property.getCategory();
31 * @return the forced {@link PropertyCategory} of given Property, may be <code>null</code>.
33 public static PropertyCategory getCategoryForced(Property property) {
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleApplyProperty.h 52 void applyInheritValue(CSSPropertyID property, CSSStyleSelector* selector) const
54 ASSERT(implements(property));
55 propertyValue(property)->applyInheritValue(selector);
58 void applyInitialValue(CSSPropertyID property, CSSStyleSelector* selector) const
60 ASSERT(implements(property));
61 propertyValue(property)->applyInitialValue(selector);
64 void applyValue(CSSPropertyID property, CSSStyleSelector* selector, CSSValue* value) const
66 ASSERT(implements(property));
67 propertyValue(property)->applyValue(selector, value);
70 bool implements(CSSPropertyID property) cons
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_PlatformFile.java 26 String property = System.getProperty("com.ibm.oti.configuration"); local
27 if (property == null) {
28 property = "JDK";
30 platformId = property
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
IComplexPropertyEditor.java 11 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;
  /libcore/support/src/test/java/tests/support/
Support_PlatformFile.java 26 String property = System.getProperty("com.ibm.oti.configuration"); local
27 if (property == null) {
28 property = "JDK";
30 platformId = property
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategoryProviders.java 11 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();
35 * Returns result of {@link Property#getCategory()}, never <code>null</code>.
42 public PropertyCategory getCategory(Property property)
    [all...]
PropertyCategoryProvider.java 11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
16 * This interface is used to get {@link PropertyCategory} for {@link Property}.
19 * @coverage core.model.property
23 * @return the {@link PropertyCategory} of given Property, not <code>null</code>.
25 PropertyCategory getCategory(Property property);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-002.js 6 * 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/
element_applescript.h 22 @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/compiler-rt/BlocksRuntime/tests/
testfilerunner.h 67 @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 bool hasObjC, hasRR, hasGC, hasCPlusPlus, wantsC99, supposedToNotCompile, open, wants32, wants64
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
PublicDOMInterfaces.h 34 @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(readonly, retain) DOMImplementation *implementation
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringComboPropertyEditor.java 11 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 {
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception
    [all...]
LocalePropertyEditor.java 11 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 {
41 Object value = property.getValue();
55 protected void openDialog(Property property) throws Exception {
56 Object value = property.getValue()
    [all...]
ITextValuePropertyEditor.java 11 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;
  /external/clang/test/Index/
complete-properties.m 9 @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;
  /external/chromium/chrome/browser/ui/cocoa/
clickhold_button_cell.h 28 @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/
PropertyEditorPresentation.java 11 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
26 * Shows presentation for given {@link Property}.
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property)
    [all...]
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedStaticPropertyTearOff.h 42 void setBaseVal(const PropertyType& property)
44 m_property = property;
54 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
57 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, property));
60 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
62 , m_property(property)
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyEditor.java 11 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
    [all...]
  /external/clang/test/PCH/Inputs/
chain-remap-types1.h 9 @property X *prop;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
EnumXmlPropertyEditor.java 23 import org.eclipse.wb.internal.core.model.property.Property;
24 import org.eclipse.wb.internal.core.model.property.editor.AbstractComboPropertyEditor;
25 import org.eclipse.wb.internal.core.model.property.editor.ITextValuePropertyEditor;
35 protected String getText(Property property) throws Exception {
36 Object value = property.getValue();
41 } else if (value == Property.UNKNOWN_VALUE) {
48 private String[] getItems(Property property) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStreamState.h 41 @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/
IPropertyExceptionHandler.java 11 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;
18 * {@link Property} modifications using {@link PropertyEditor}'s.
21 * @coverage core.model.property.table
  /external/qemu/
device_tree.h 20 const char *property, void *val_array, int size);
22 const char *property, uint32_t val);
24 const char *property, const char *string);

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 91011>>