Searched refs:property (Results 1 - 25 of 1626) 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/tools/telemetry/telemetry/core/backends/
H A Dcodepen_credentials_backend.py11 @property
16 @property
20 @property
24 @property
28 @property
35 @property
39 @property
H A Dfacebook_credentials_backend.py11 @property
17 @property
21 @property
25 @property
29 @property
33 @property
H A Dgoogle_credentials_backend.py11 @property
16 @property
20 @property
28 @property
32 @property
36 @property
/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/third_party/WebKit/Source/build/scripts/
H A Dcss_properties.py52 self._aliases = {property['name']: property['alias_for'] for property in properties if property['alias_for']}
53 properties = [property for property in properties if not property['alias_for']]
58 for offset, property in enumerate(properties):
59 property['property_id'] = css_name_to_enum(property['nam
[all...]
H A Dmake_style_builder.py50 def set_if_none(property, key, value):
51 if property[key] is None:
52 property[key] = value
54 for property in self._properties.values():
55 upper_camel = property['upper_camel_name']
56 set_if_none(property, 'name_for_methods', upper_camel.replace('Webkit', ''))
57 name = property['name_for_methods']
58 set_if_none(property, 'type_name', 'E' + name)
59 set_if_none(property, 'getter', lower_first(name))
60 set_if_none(property, 'sette
[all...]
H A Dmake_style_shorthands.py50 self._properties = {property_id: property for property_id, property in self._properties.items() if property['longhands']}
52 for property in self._properties.values():
53 property['longhand_property_ids'] = map(css_properties.css_name_to_enum, property['longhands'].split(';'))
54 for longhand in property['longhand_property_ids']:
55 self._longhand_dictionary[longhand].append(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.h55 @property(nonatomic, readonly) NSPoint origin;
59 @property(nonatomic, readonly) NSString* accessKey;
60 @property(nonatomic, readonly) NSNumber* ariaAtomic;
61 @property(nonatomic, readonly) NSNumber* ariaBusy;
62 @property(nonatomic, readonly) NSString* ariaLive;
63 @property(nonatomic, readonly) NSString* ariaRelevant;
64 @property(nonatomic, readonly) NSArray* children;
65 @property(nonatomic, readonly) NSArray* columns;
66 @property(nonatomic, readonly) NSArray* columnHeaders;
67 @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/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCI420Frame.h33 @property(nonatomic, readonly) NSUInteger width;
34 @property(nonatomic, readonly) NSUInteger height;
35 @property(nonatomic, readonly) NSUInteger chromaWidth;
36 @property(nonatomic, readonly) NSUInteger chromaHeight;
37 @property(nonatomic, readonly) NSUInteger chromaSize;
39 @property(nonatomic, readonly) const uint8_t* yPlane;
40 @property(nonatomic, readonly) const uint8_t* uPlane;
41 @property(nonatomic, readonly) const uint8_t* vPlane;
42 @property(nonatomic, readonly) NSInteger yPitch;
43 @property(nonatomi
[all...]
H A DRTCDataChannel.h34 @property(nonatomic) BOOL isOrdered;
37 @property(nonatomic) NSInteger maxRetransmitTimeMs;
39 @property(nonatomic) NSInteger maxRetransmits;
42 @property(nonatomic) BOOL isNegotiated;
44 @property(nonatomic) NSInteger streamId;
46 @property(nonatomic) NSString* protocol;
53 @property(nonatomic, readonly) NSData* data;
54 @property(nonatomic, readonly) BOOL isBinary;
91 @property(nonatomic, readonly) NSString* label;
92 @property(nonatomi
[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/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...]
/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/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_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/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...]

Completed in 1344 milliseconds

1234567891011>>