Searched refs:property (Results 1 - 25 of 1373) 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/chromium_org/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/chromium_org/tools/telemetry/telemetry/core/backends/
H A Dfacebook_credentials_backend.py14 @property
18 @property
22 @property
26 @property
30 @property
H A Dgoogle_credentials_backend.py13 @property
17 @property
21 @property
25 @property
29 @property
/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/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_cocoa.h49 @property(nonatomic, readonly) NSPoint origin;
53 @property(nonatomic, readonly) NSString* accessKey;
54 @property(nonatomic, readonly) NSNumber* ariaAtomic;
55 @property(nonatomic, readonly) NSNumber* ariaBusy;
56 @property(nonatomic, readonly) NSString* ariaLive;
57 @property(nonatomic, readonly) NSString* ariaRelevant;
58 @property(nonatomic, readonly) NSArray* children;
59 @property(nonatomic, readonly) NSArray* columns;
60 @property(nonatomic, readonly) NSArray* columnHeaders;
61 @property(nonatomi
[all...]
/external/chromium_org/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/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...]
/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/chromium_org/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/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_css_property_names.py195 self._aliases = filter(lambda property: property['alias_for'], self.in_file.name_dictionaries)
196 for offset, property in enumerate(self._aliases):
198 property['enum_name'] = self._enum_name_from_property_name(property['alias_for'])
201 self._properties = filter(lambda property: not property['alias_for'], self.in_file.name_dictionaries)
207 for offset, property in enumerate(self._properties):
208 property['enum_name'] = self._enum_name_from_property_name(property['nam
[all...]
H A Dmake_style_builder.py53 # These depend on property name by default
75 def set_if_none(property, key, value):
76 if property[key] is None:
77 property[key] = value
79 for property in self._properties:
80 cc = self._camelcase_property_name(property["name"])
81 property["property_id"] = "CSSProperty" + cc
82 cc = property["name_for_methods"] or cc.replace("Webkit", "")
83 property["camel_case_name"] = cc
84 set_if_none(property, "type_nam
[all...]
H A Dmake_css_value_keywords.py121 for offset, property in enumerate(self._value_keywords):
122 property['name'] = property['name'].lower()
123 property['enum_name'] = self._enum_name_from_value_keyword(property['name'])
124 property['enum_value'] = first_property_id + offset
125 if property['name'].startswith('-internal-'):
126 assert property['mode'] is None, 'Can\'t specify mode for value keywords with the prefix "-internal-".'
127 property['mode'] = 'UASheet'
129 assert property['mod
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
H A DStylePropertyShorthand.cpp.tmpl31 {%- for property_id, property in properties.items() %}
33 const StylePropertyShorthand& {{ property.camel_case_name }}Shorthand()
35 static const CSSPropertyID {{ property.camel_case_name }}Properties[] = {
36 {%- for longhand_id in property.camel_case_longhands %}
40 DEFINE_STATIC_LOCAL(StylePropertyShorthand, {{ property.camel_case_name }}Longhands, ({{ property_id }}, {{ property.camel_case_name }}Properties, WTF_ARRAY_LENGTH({{ property.camel_case_name }}Properties)));
41 return {{ property.camel_case_name }}Longhands;
45 // Returns an empty list if the property is not a shorthand
50 {%- for property_id, property i
[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());
/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/chromium_org/chrome/browser/ui/cocoa/
H A Dclickhold_button_cell.h26 @property(assign, nonatomic) BOOL enableClickHold;
31 @property(assign, nonatomic) NSTimeInterval clickHoldTimeout;
34 @property(assign, nonatomic) BOOL trackOnlyInRect;
38 @property(assign, nonatomic) BOOL activateOnDrag;
41 @property(assign, nonatomic) id clickHoldTarget;
42 @property(assign, nonatomic) SEL clickHoldAction;
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dgcm_custom_bindings.js18 forEach(message.data, function(property, value) {
19 if (property.length == 0)
22 // Issue an error for forbidden prefixes of property names.
23 if (property.indexOf("goog.") == 0 ||
24 property.indexOf("google") == 0) {
25 throw new Error("Invalid data key: " + property);
28 payloadSize += property.length + value.length;
/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/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGAnimatedEnumerationPropertyTearOff.h32 virtual void setBaseVal(const unsigned& property, ExceptionState& exceptionState) argument
35 if (!property || property > SVGPropertyTraits<EnumType>::highestEnumValue()) {
39 SVGAnimatedStaticPropertyTearOff<unsigned>::setBaseVal(property, exceptionState);
42 static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property) argument
45 return adoptRef(new SVGAnimatedEnumerationPropertyTearOff<EnumType>(contextElement, attributeName, animatedPropertyType, reinterpret_cast<unsigned&>(property)));
56 SVGAnimatedEnumerationPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, unsigned& property) argument
57 : SVGAnimatedStaticPropertyTearOff<unsigned>(contextElement, attributeName, animatedPropertyType, property)

Completed in 951 milliseconds

1234567891011>>