/external/v8/test/mjsunit/ |
getter-in-prototype.js | 29 // that have only a getter in a prototype object.
|
object-create.js | 95 // Add a getter foo that returns a counter value. 108 // Make sure that trying to add both a value and a getter 205 assertTrue(/Getter must be a function/.test(e)); 219 assertTrue(/Getter must be a function/.test(e));
|
megamorphic-callbacks.js | 51 // setter and getter properties to the object.
|
/external/v8/test/mjsunit/regress/ |
regress-192.js | 36 // assigning to a property that has only a getter.
|
regress-526.js | 28 // Test object literals with computed property and getter.
|
/external/webkit/JavaScriptCore/runtime/ |
ClassInfo.h | 46 * For classes that can be used from multiple threads, it is accessed via a getter function that would typically return a pointer to thread-specific value.
|
PropertySlot.cpp | 31 // Prevent getter functions from observing execution if an exception is pending.
|
JSActivation.cpp | 88 // activation object getter properties or a prototype. 101 // We don't call through to JSObject because __proto__ and getter/setter 116 // We don't call through to JSObject because __proto__ and getter/setter
|
/external/webkit/WebCore/bindings/v8/ |
V8Collection.h | 156 // Add indexed getter to the function template for a collection. 164 // Add named getter to the function template for a collection. 170 // Add indexed getter returning a string or null to a function template for a collection. 177 // Add indexed getter returning a string to a function template for a collection.
|
/external/webkit/WebCore/storage/ |
SQLResultSet.idl | 38 getter raises(DOMException);
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetworkVars.java | 188 VarGetter getter = VAR_MAP.get(command.get(1)); local 189 if (getter == null) { 192 return new MonkeyCommandReturn(true, getter.get());
|
/external/webkit/LayoutTests/fast/js/resources/ |
getOwnPropertyDescriptor.js | 61 objectWithGetter.__defineGetter__("getter", getterFunc); 62 descriptorShouldBe("objectWithGetter", "'getter'", {"get": "getterFunc", "set": undefined, enumerable: true, configurable: true}); 86 for (var property in Object.getOwnPropertyDescriptor(objectWithGetter, "getter"))
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/GetSet/ |
getset-004.js | 43 // SECTION1: define getter/setter directly on an object (not its prototype) 74 // SECTION2: define getter/setter in Object.prototype 105 // SECTION 3: define getter/setter in prototype of user-defined constructor
|
/packages/apps/Gallery/src/com/android/camera/ |
ImageGetter.java | 92 // True if the getter thread is idle waiting. 95 // True when the getter thread should exit. 252 // Stops this image getter.
|
/external/bluetooth/glib/gobject/ |
glib-genmarshal.c | 53 const gchar *getter; /* value getter function [g_value_get_string] */ member in struct:__anon1373 185 /* keyword sig_name ctype getter */ 218 iarg->getter = args[i].getter; 393 if (iarg->getter) 417 if (iarg->getter) 443 if (iarg->getter) 444 g_fprintf (fout, "%s%s (param_values + %d),\n", indent (ind), iarg->getter, a++);
|
/external/v8/test/mjsunit/compiler/ |
objectliterals.js | 28 // Test object literals with getter, setter and prototype properties.
|
/external/v8/src/ |
macros.py | 36 # Constants used for getter and setter operations. 37 const GETTER = 0;
|
stub-cache.cc | 118 ASSERT(v8::ToCData<Address>(callback->getter()) != 0); 746 Address getter_address = v8::ToCData<Address>(callback->getter()); 807 Address getter_address = v8::ToCData<Address>(interceptor_info->getter()); 808 v8::NamedPropertyGetter getter = local 810 ASSERT(getter != NULL); 813 // Use the interceptor getter. 821 r = getter(v8::Utils::ToLocal(name_handle), info); 860 v8::NamedPropertyGetter getter = local [all...] |
/external/webkit/LayoutTests/fast/dom/Geolocation/resources/ |
argument-types.js | 31 throw new Error('enableHighAccuracy getter exception'); 65 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, objectThrowingException)', true, 'Error: enableHighAccuracy getter exception');
|
/external/webkit/WebCore/page/animation/ |
AnimationBase.cpp | 226 PropertyWrapperGetter(int prop, T (RenderStyle::*getter)() const) 228 , m_getter(getter) 250 PropertyWrapper(int prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T)) 251 : PropertyWrapperGetter<T>(prop, getter) 302 PropertyWrapperShadow(int prop, ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(ShadowData*, bool)) 303 : PropertyWrapperGetter<ShadowData*>(prop, getter) 360 PropertyWrapperMaybeInvalidColor(int prop, const Color& (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const Color&)) 362 , m_getter(getter) 419 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const) 420 : m_getter(getter) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ViewFlipperTest.java | 92 @ToBeFixed(bug="1386429", explanation="No getter and can't check indirectly")
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/ |
TransformState.java | 47 * This interface contains only getter methods, any setters are in the interface
|
/external/icu4c/i18n/unicode/ |
dtptngen.h | 180 * Getter corresponding to setAppendItemFormat. Values below 0 or at or 203 * Getter corresponding to setAppendItemNames. Values below 0 or at or above 234 * Getter corresponding to setDateTimeFormat. 336 * Getter corresponding to setDecimal.
|
udatpg.h | 285 * Getter corresponding to setAppendItemFormat. Values below 0 or at or 318 * Getter corresponding to setAppendItemNames. Values below 0 or at or above 358 * Getter corresponding to setDateTimeFormat. 386 * Getter corresponding to setDecimal.
|
/external/webkit/WebCore/bindings/scripts/ |
CodeGeneratorJS.pm | 660 # Constructor object getter [all...] |