/external/chromium_org/v8/test/mjsunit/compiler/ |
property-static.js | 34 Object.prototype.load = function() { return this.property; }; 35 Object.prototype.load.call({ A:0, property:10 }); 36 Object.prototype.load.call({ A:0, B:0, property:11 }); 37 Object.prototype.load.call({ A:0, B:0, C:0, property:12 }); 38 Object.prototype.load.call({ A:0, B:0, C:0, D:0, property:13 }); 39 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, property:14 }); 40 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, F:0, property:15 }); 45 var object = { property:x }; property 58 this.property = x;
|
/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
CharacterPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 57 protected String getEditorText(Property property) throws Exception { 58 return getText(property); [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;
|
IValueSourcePropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 18 * @coverage core.model.property.editor
|
DoubleObjectPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 60 protected String getEditorText(Property property) throws Exception { 61 return getText(property); [all...] |
DoublePropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 58 protected String getEditorText(Property property) throws Exception { 59 return getText(property); [all...] |
FloatPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 57 protected String getEditorText(Property property) throws Exception { 58 return getText(property); [all...] |
IntegerObjectPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 60 protected String getEditorText(Property property) throws Exception { 61 return getText(property); [all...] |
IntegerPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 57 protected String getEditorText(Property property) throws Exception { 58 return getText(property); [all...] |
LongObjectPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 60 protected String getEditorText(Property property) throws Exception { 61 return getText(property); [all...] |
LongPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 57 protected String getEditorText(Property property) throws Exception { 58 return getText(property); [all...] |
ShortObjectPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 60 protected String getEditorText(Property property) throws Exception { 61 return getText(property); [all...] |
ShortPropertyEditor.java | 11 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 { 44 Object value = property.getValue(); 57 protected String getEditorText(Property property) throws Exception { 58 return getText(property); [all...] |
/external/chromium/chrome/browser/ui/webui/ |
constrained_html_ui.cc | 60 ConstrainedHtmlUIDelegate** property = local 62 return property ? *property : NULL;
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8EventListener.cpp | 60 v8::Local<v8::Value> property = listener->Get(v8AtomicString(isolate(), "handleEvent")); local 62 // handleEvent property and that the value is a function. 63 if (!property.IsEmpty() && property->IsFunction()) 64 return v8::Local<v8::Function>::Cast(property);
|
/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...] |
EmptyProperty.java | 11 package org.eclipse.wb.internal.core.model.property; 13 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 14 import org.eclipse.wb.internal.core.model.property.editor.string.StringPropertyEditor; 17 * Empty {@link Property}, that has no title or value. 20 * @coverage core.model.property 22 public class EmptyProperty extends Property { 38 // Property
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/ |
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);
|
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...] |
/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/ |
PropertyListIntersector.java | 11 package org.eclipse.wb.internal.core.editor.structure.property;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.PropertyManager;
22 * Helper for computing intersection of {@link Property} arrays.
38 public void intersect(Property[] properties) {
42 Property property = properties[i];
local 43 m_intersection.add(new PropertyGroup(property));
56 * @return the array of matched composite {@link Property}'s. [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
KeyframeValueList.h | 47 // Values will all be of the same type, which can be inferred from the property. 50 explicit KeyframeValueList(AnimatedPropertyID property) 51 : m_property(property) 56 : m_property(other.property()) 75 AnimatedPropertyID property() const { return m_property; } function in class:WebCore::KeyframeValueList
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
KeyframeList.cpp | 37 CSSPropertyID property = propertySet->propertyAt(i).id(); local 40 if (property != CSSPropertyWebkitAnimationTimingFunction && property != CSSPropertyAnimationTimingFunction) 41 addProperty(property);
|