/external/webkit/WebCore/bindings/v8/ |
V8Utilities.h | 49 // Combo create/remove, for generated event-handler-setter bindings:
|
/external/webkit/WebCore/xml/ |
XMLHttpRequest.idl | 59 setter raises(DOMException);
|
/external/webkit/WebKitTools/Scripts/webkitpy/commands/ |
upload_unittest.py | 79 expected_stderr = """Bug: <http://example.com/42> Bug with two r+'d and cq+'d patches, one of which has an invalid commit-queue setter.
|
/dalvik/libcore/xml/src/main/java/javax/xml/datatype/ |
XMLGregorianCalendar.java | 144 * setter methods and parse methods of 246 * <p>Unset this field by invoking the setter with a parameter value of <code>null</code>.</p> 259 * <p>Unset this field by invoking the setter with a parameter value of 274 * <p>Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.</p> 287 * <p>Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.</p> 300 * <p>Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.</p> 340 * <p>Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.</p> 352 * <p>Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.</p> 364 * <p>Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.</p> 376 * <p>Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.</p [all...] |
/external/v8/test/mjsunit/ |
object-create.js | 101 // Add a setter foo that runs a function. 212 assertTrue(/Setter must be a function/.test(e));
|
/external/v8/test/cctest/ |
test-accessors.cc | 65 Local<Script> setter = v8_compile("obj.foo = 901;"); local 66 CHECK_EQ(901, setter->Run()->Int32Value()); 352 // Use the throwing property setter/getter in a loop to force
|
test-decls.cc | 387 // setter called when initializing with a value. 476 // that the setter is called and it will not
|
/external/v8/src/ |
objects-debug.cc | 936 VerifyPointer(setter()); 947 PrintF("\n - setter: "); 948 setter()->ShortPrint(); 977 VerifyPointer(setter()); 988 PrintF("\n - setter: "); 989 setter()->ShortPrint(); [all...] |
objects.h | 190 // Setter that skips the write barrier if mode is SKIP_WRITE_BARRIER. [all...] |
mirror-debugger.js | 1187 * Returns whether this property has a setter defined through __defineSetter__. 1188 * @return {booolean} True if this property has a setter 1210 * Returns the setter for this property defined through __defineSetter__. 1211 * @return {Mirror} FunctionMirror reflecting the setter function or 1212 * UndefinedMirror if there is no setter for this property 1214 PropertyMirror.prototype.setter = function() { 1227 * UndefinedMirror if there is no setter for this property [all...] |
objects.cc | 1526 v8::NamedPropertySetter setter = local 1604 Object* setter = FixedArray::cast(structure)->get(kSetterIndex); local 5581 v8::IndexedPropertySetter setter = local 5612 Object* setter = LookupCallbackSetterInPrototypes(index); local 5735 JSFunction* setter = JSFunction::cast(structure->get(kSetterIndex)); local 5751 Object* setter = LookupCallbackSetterInPrototypes(index); local [all...] |
api.cc | 773 AccessorSetter setter, 785 obj->set_setter(*FromCData(setter)); 836 NamedPropertySetter setter, 851 if (setter != 0) obj->set_setter(*FromCData(setter)); 863 IndexedPropertySetter setter, 879 if (setter != 0) obj->set_setter(*FromCData(setter)); 948 AccessorSetter setter, 961 setter, [all...] |
/external/webkit/WebCore/page/animation/ |
AnimationBase.cpp | 250 PropertyWrapper(int prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T)) 252 , m_setter(setter) 302 PropertyWrapperShadow(int prop, ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(ShadowData*, bool)) 304 , m_setter(setter) 360 PropertyWrapperMaybeInvalidColor(int prop, const Color& (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const Color&)) 363 , m_setter(setter) 442 FillLayerPropertyWrapper(T (FillLayer::*getter)() const, void (FillLayer::*setter)(T)) function in class:WebCore::FillLayerPropertyWrapper 444 , m_setter(setter) [all...] |
/frameworks/base/core/java/android/pim/ |
ContactsAsyncHelper.java | 137 * Simple setter for the CallerInfo object. 157 * Simple setter for the Photo state.
|
/external/webkit/JavaScriptCore/runtime/ |
ObjectPrototype.cpp | 126 return throwError(exec, SyntaxError, "invalid setter usage");
|
/external/webkit/WebCore/inspector/front-end/ |
Popup.js | 38 * If the element is absent/undefined, it must have been set with the element(x) setter before the show() method invocation.
|
/external/webkit/WebCore/platform/ |
KURLGooglePrivate.h | 103 // Set to true when the caller set us using the ASCII setter. We can
|
/packages/apps/Gallery3D/res/values-nb/ |
strings.xml | 51 <string name="wallpaper" msgid="9222901738515471972">"Setter bakgrunnsbilde, vent litt?"</string>
|
/external/v8/include/ |
v8.h | [all...] |
/external/webkit/WebCore/bindings/scripts/ |
CodeGeneratorV8.pm | 766 my $setter = "set" . $codeGenerator->WK_ucfirst($getter); 774 my $wrapper = "V8SVGStaticPODTypeWrapperWithParent<$nativeType, $implClassName>::create(imp, &${implClassName}::$getter, &${implClassName}::$setter)"; 781 my $hashhex = substr(Digest::MD5::md5_hex("${implClassName}::$getter ${implClassName}::$setter)"), 0, 8); 782 my $wrapper = "V8SVGDynamicPODTypeWrapperCache<$nativeType, $implClassName>::lookupOrCreateWrapper(imp, &${implClassName}::$getter, &${implClassName}::$setter, 0x$hashhex)"; [all...] |
CodeGeneratorJS.pm | 399 # Assume that if there's a setter, the index will be writable 408 # Assume that if there's a setter, the index will be writable [all...] |
CodeGeneratorObjC.pm | 774 # - SETTER 776 my $setter = "- (void)$setterName(" . $attributeType . ")new" . ucfirst($attributeName) . $declarationSuffix; 777 push(@headerAttributes, $setter) if $public; 778 push(@privateHeaderAttributes, $setter) unless $public; [all...] |
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/ |
NativeCollation.java | 124 * Universal attribute setter.
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8HTMLPlugInElementCustom.cpp | 44 // FIXME: Consider moving getter/setter helpers to V8NPObject and renaming this file to V8PluginElementFunctions
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/ |
XSLTAttributeDef.java | 428 * String that should represent the setter method which which 434 * Return a string that should represent the setter method. 435 * The setter method name will be created algorithmically the 439 * @return String that should represent the setter method which which 441 * of null if no setter method should be called. [all...] |