/external/clang/test/PCH/ |
objc_property.h | 10 @property int value; 11 @property float percentage;
|
/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
|
/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/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/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/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;
|
complete-member-access.m | 5 @property float ProtoProp; 17 @property int prop1; 26 @property int myProp;
|
/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;
|
animatable_image.h | 39 @property(nonatomic) CGRect startFrame; 40 @property(nonatomic) CGRect endFrame; 41 @property(nonatomic) CGFloat startOpacity; 42 @property(nonatomic) CGFloat endOpacity; 43 @property(nonatomic) CGFloat duration;
|
/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/clang/test/PCH/Inputs/ |
chain-remap-types1.h | 9 @property X *prop;
|
/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);
|
/frameworks/base/core/jni/android/graphics/ |
RtlProperties.h | 41 char property[PROPERTY_VALUE_MAX]; local 42 if (property_get(RTL_PROPERTY_DEBUG, property, NULL) > 0) { 43 return (RtlDebugLevel) atoi(property);
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
browser_actions_container_view.h | 74 @property(nonatomic, readonly) NSRect animationEndFrame; 75 @property(nonatomic) BOOL canDragLeft; 76 @property(nonatomic) BOOL canDragRight; 77 @property(nonatomic) BOOL grippyPinned; 78 @property(nonatomic,getter=isResizable) BOOL resizable; 79 @property(nonatomic) CGFloat maxWidth; 80 @property(readonly, nonatomic) BOOL userIsResizing;
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
VCardEntryTests.java | 113 VCardProperty property = new VCardProperty(); local 114 property.setName(VCardConstants.PROPERTY_N); 115 property.setValues("test1"); 116 entryConstructor.onPropertyCreated(property); 119 property = new VCardProperty(); 120 property.setName(VCardConstants.PROPERTY_N); 121 property.setValues("test2"); 122 entryConstructor.onPropertyCreated(property); 125 property = new VCardProperty(); 126 property.setName(VCardConstants.PROPERTY_TEL) 206 VCardProperty property = new VCardProperty(); local 317 VCardProperty property = new VCardProperty(); local 340 VCardProperty property = new VCardProperty(); local [all...] |
/frameworks/base/libs/hwui/ |
GammaFontRenderer.cpp | 34 char property[PROPERTY_VALUE_MAX]; local 38 if (property_get(PROPERTY_TEXT_GAMMA, property, NULL) > 0) { 39 INIT_LOGD(" Setting text gamma to %s", property); 40 gamma = atof(property); 47 if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, NULL) > 0) { 48 INIT_LOGD(" Setting text black gamma threshold to %s", property); 49 mBlackThreshold = atoi(property); 57 if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, NULL) > 0) { 58 INIT_LOGD(" Setting text white gamma threshold to %s", property); 59 mWhiteThreshold = atoi(property); [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
PropertiesTableModel.java | 26 private List<ViewNode.Property> properties; 27 private List<ViewNode.Property> privateProperties = new ArrayList<ViewNode.Property>(); 44 ViewNode.Property property = new ViewNode.Property(); local 45 property.name = "absolute_x"; 46 property.value = String.valueOf(x); 47 privateProperties.add(property); 49 property = new ViewNode.Property() 63 ViewNode.Property property; local [all...] |
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_tree_browser_cell.h | 26 @property(nonatomic, assign) NSMatrix* matrix; 27 @property(nonatomic, assign) id target; 28 @property(nonatomic, assign) SEL action;
|
/external/webkit/Source/WebCore/editing/ |
RemoveCSSPropertyCommand.h | 37 static PassRefPtr<RemoveCSSPropertyCommand> create(Document* document, PassRefPtr<StyledElement> element, CSSPropertyID property) 39 return adoptRef(new RemoveCSSPropertyCommand(document, element, property)); 43 RemoveCSSPropertyCommand(Document*, PassRefPtr<StyledElement>, CSSPropertyID property);
|
/external/chromium/chrome/browser/ui/cocoa/importer/ |
import_progress_dialog_cocoa.h | 49 @property(nonatomic, retain) NSString* explanatoryText; 50 @property(nonatomic, retain) NSString* favoritesStatusText; 51 @property(nonatomic, retain) NSString* searchStatusText; 52 @property(nonatomic, retain) NSString* savedPasswordStatusText; 53 @property(nonatomic, retain) NSString* historyStatusText; 55 @property(nonatomic, retain) NSColor* favoritesImportEnabled; 56 @property(nonatomic, retain) NSColor* searchImportEnabled; 57 @property(nonatomic, retain) NSColor* passwordImportEnabled; 58 @property(nonatomic, retain) NSColor* historyImportEnabled;
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardInterpreter.java | 33 * The term "property" is one line in vCard entry, which consists of "group", "property name", 34 * "parameter(param) names and values", and "property values". 76 * Called when a property is created. 78 void onPropertyCreated(VCardProperty property);
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_controller.h | 31 // the |loading| property to YES visually indicates that this tab is currently 63 @property(assign, nonatomic) TabLoadingState loadingState; 65 @property(assign, nonatomic) SEL action; 66 @property(assign, nonatomic) BOOL app; 67 @property(assign, nonatomic) BOOL mini; 68 @property(assign, nonatomic) BOOL pinned; 69 @property(assign, nonatomic) BOOL selected; 70 @property(assign, nonatomic) id target; 71 @property(assign, nonatomic) GURL url; 72 @property(assign, nonatomic) NSView* iconView [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
TypedProperties.java | 45 * - property names: [._$a-zA-Z0-9] 144 /* A property name must be a valid fully-qualified class + package name. 177 // Read the property name. 180 throw new ParseException(st, "property name"); 184 throw new ParseException(st, "valid property name"); 207 // the same property is defined with a different type. 210 "(property previously declared as a different type)"); 313 // This property is a float; make sure the value fits. 322 // This property is a double; no need to truncate. 355 * <type> <property-name> = <value> [all...] |