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

1 2 3 4

  /external/webkit/Source/JavaScriptCore/runtime/
PropertyDescriptor.cpp 29 #include "PropertyDescriptor.h"
36 unsigned PropertyDescriptor::defaultAttributes = (DontDelete << 1) - 1;
38 bool PropertyDescriptor::writable() const
44 bool PropertyDescriptor::enumerable() const
49 bool PropertyDescriptor::configurable() const
54 bool PropertyDescriptor::isDataDescriptor() const
59 bool PropertyDescriptor::isGenericDescriptor() const
64 bool PropertyDescriptor::isAccessorDescriptor() const
69 void PropertyDescriptor::setUndefined()
75 JSValue PropertyDescriptor::getter() cons
    [all...]
PropertyDescriptor.h 32 class PropertyDescriptor {
34 PropertyDescriptor()
64 bool equalTo(ExecState* exec, const PropertyDescriptor& other) const;
65 bool attributesEqual(const PropertyDescriptor& other) const;
66 unsigned attributesWithOverride(const PropertyDescriptor& other) const;
69 bool operator==(const PropertyDescriptor&){ return false; }
ArrayPrototype.h 34 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
MathObject.h 33 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
DatePrototype.h 35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
JSONObject.h 49 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
NumberConstructor.h 35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
ObjectConstructor.h 35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
StringPrototype.h 35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
JSVariableObject.cpp 33 #include "PropertyDescriptor.h"
61 bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertyDescriptor& descriptor)
JSActivation.h 76 bool symbolTableGet(const Identifier&, PropertyDescriptor&);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyEditorProvider.java 13 import java.beans.PropertyDescriptor;
38 * @return the {@link PropertyEditor} for given {@link PropertyDescriptor} or <code>null</code>.
40 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor)
PropertyDescriptorEditorProvider.java 13 import java.beans.PropertyDescriptor;
16 * {@link PropertyEditorProvider} that creates editors based on {@link PropertyDescriptor}
29 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor)
46 * @return <code>true</code> if given {@link PropertyDescriptor} has attribute "enumerationValues"
49 private static boolean isEnumerationProperty(PropertyDescriptor descriptor) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
DimResultsElement.java 18 import org.eclipse.ui.views.properties.PropertyDescriptor;
41 private static final PropertyDescriptor DIM_COUNT_DESCRIPTOR = new PropertyDescriptor(P_ID_COUNT, P_STR_COUNT);
42 private static final PropertyDescriptor DIM_AVERAGE_DESCRIPTOR = new PropertyDescriptor(P_ID_AVERAGE, P_STR_AVERAGE);
43 private static final PropertyDescriptor DIM_STDDEV_DESCRIPTOR = new PropertyDescriptor(P_ID_STDDEV, P_STR_STDDEV);
44 private static final PropertyDescriptor DIM_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_ERROR, P_STR_ERROR);
45 private static final PropertyDescriptor DIM_HAD_VALUES_DESCRIPTOR = new PropertyDescriptor(P_ID_HAD_VALUES, P_STR_HAD_VALUES)
    [all...]
BuildResultsElement.java 23 import org.eclipse.ui.views.properties.PropertyDescriptor;
52 private static final PropertyDescriptor BUILD_IS_BASELINE_DESCRIPTOR = new PropertyDescriptor(P_ID_BUILD_IS_BASELINE, P_STR_BUILD_IS_BASELINE);
53 private static final PropertyDescriptor BUILD_BASELINE_DESCRIPTOR = new PropertyDescriptor(P_ID_BUILD_BASELINE, P_STR_BUILD_BASELINE);
55 private static final PropertyDescriptor BUILD_TEST_DELTA_DESCRIPTOR = new PropertyDescriptor(P_ID_BUILD_DELTA, P_STR_BUILD_DELTA);
56 private static final PropertyDescriptor BUILD_TEST_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_BUILD_ERROR, P_STR_BUILD_ERROR);
57 private static final PropertyDescriptor BUILD_STUDENTS_TTEST_DESCRIPTOR = new PropertyDescriptor(P_ID_BUILD_TTEST, P_STR_BUILD_TTEST)
    [all...]
ConfigResultsElement.java 22 import org.eclipse.ui.views.properties.PropertyDescriptor;
51 private static final PropertyDescriptor CONFIG_CURRENT_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_CONFIG_CURRENT_BUILD, P_STR_CONFIG_CURRENT_BUILD);
52 private static final PropertyDescriptor CONFIG_BASELINE_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_CONFIG_BASELINE_BUILD, P_STR_CONFIG_BASELINE_BUILD);
53 private static final PropertyDescriptor CONFIG_BASELINED_DESCRIPTOR = new PropertyDescriptor(P_ID_CONFIG_BASELINED, P_STR_CONFIG_BASELINED);
54 private static final PropertyDescriptor CONFIG_VALID_DESCRIPTOR = new PropertyDescriptor(P_ID_CONFIG_VALID, P_STR_CONFIG_VALID);
55 private static final PropertyDescriptor CONFIG_DELTA_DESCRIPTOR = new PropertyDescriptor(P_ID_CONFIG_DELTA, P_STR_CONFIG_DELTA)
    [all...]
ComponentResultsElement.java 28 import org.eclipse.ui.views.properties.PropertyDescriptor;
43 private static final PropertyDescriptor CURRENT_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_CURRENT_BUILD, P_STR_CURRENT_BUILD);
44 private static final PropertyDescriptor BASELINE_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_BASELINE_BUILD, P_STR_BASELINE_BUILD);
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLAppletElementCustom.cpp 41 bool JSHTMLAppletElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
JSHTMLEmbedElementCustom.cpp 41 bool JSHTMLEmbedElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
JSHTMLObjectElementCustom.cpp 41 bool JSHTMLObjectElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
JSPluginElementFunctions.h 43 bool runtimeObjectCustomGetOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&, JSHTMLElement*);
JSDOMWindowShell.h 74 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
82 virtual bool defineOwnProperty(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&, bool shouldThrow);
  /external/webkit/Source/WebCore/bridge/
runtime_method.h 59 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestMediaQueryListListener.h 39 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
65 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerActivation.h 46 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);

Completed in 1108 milliseconds

1 2 3 4