HomeSort by relevance Sort by last modified time
    Searched refs:setter (Results 251 - 275 of 296) sorted by null

<<1112

  /external/v8/test/mjsunit/
keywords-and-reserved_words.js 103 // setter parameter
object-literal.js 160 // Getter/setter property, read and write.
object-define-property.js 219 // Define an accessor that has only a setter.
231 // Add a getter - should not touch the setter.
243 // The above should also work if redefining just a getter or setter on
244 // an existing property with both a getter and a setter.
530 // Different setter.
object-create.js 101 // Add a setter foo that runs a function.
212 assertTrue(/Setter must be a function/.test(e));
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.c 210 if (dsc->setter == NULL) {
222 if (dsc->setter(&iter, &error, user_data) == TRUE) {
835 * (e.g., param setter), you usually do not need to call this function.
  /external/javassist/src/main/javassist/tools/reflect/
Reflection.java 262 clazz.addMethod(CtNewMethod.setter(metaobjectSetter, f));
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 242 def setter(attr): function
277 @setter
297 @setter
  /external/v8/src/
objects-debug.cc 663 VerifyPointer(setter());
673 VerifyPointer(setter());
688 VerifyPointer(setter());
objects-printer.cc 826 PrintF(out, "\n - setter: ");
827 setter()->ShortPrint(out);
841 PrintF(out, "\n - setter: ");
842 setter()->ShortPrint(out);
861 PrintF(out, "\n - setter: ");
862 setter()->ShortPrint(out);
objects.cc 1908 v8::NamedPropertySetter setter = local
2004 Object* setter = AccessorPair::cast(structure)->setter(); local
8955 v8::IndexedPropertySetter setter = local
    [all...]
objects.h 184 // Setter that skips the write barrier if mode is SKIP_WRITE_BARRIER.
    [all...]
regexp.js 419 // Getter and setter for the input.
442 // Getter and setter for multiline.
mirror-debugger.js 1191 * Returns whether this property has a setter defined through __defineSetter__.
1192 * @return {booolean} True if this property has a setter
1214 * Returns the setter for this property defined through __defineSetter__.
1215 * @return {Mirror} FunctionMirror reflecting the setter function or
1216 * UndefinedMirror if there is no setter for this property
1218 PropertyMirror.prototype.setter = function() {
1231 * UndefinedMirror if there is no setter for this property
    [all...]
api.cc     [all...]
ic.cc     [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm     [all...]
CodeGeneratorJS.pm 508 # Assume that if there's a setter, the index will be writable
517 # Assume that if there's a setter, the index will be writable
    [all...]
CodeGeneratorObjC.pm 831 # - SETTER
833 my $setter = "- (void)$setterName(" . $attributeType . ")new" . ucfirst($attributeName) . $declarationSuffix;
834 push(@headerAttributes, $setter) if $public;
835 push(@privateHeaderAttributes, $setter) unless $public;
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js 363 jsonObject.stringify({a:"1", set b(s) { setterCalled = true; return "setter"; }, c:"3"});
367 return jsonObject.stringify({a:"1", get b(){ return "getter"; }, set b(s) { return "setter"; }, c:"3"});
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp     [all...]
CGObjC.cpp 548 /// Use objc_setProperty for the setter, but use expression
1002 Expr *setter = PID->getSetterCXXAssignment(); local
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-function.js 554 assertEquals(50, value) // no setter
576 assertEquals(0, value) // no setter
  /external/clang/tools/libclang/
IndexingContext.cpp 532 if (ObjCMethodDecl *Setter = D->getSetterMethodDecl()) {
533 getEntityInfo(Setter, SetterEntity, SA);
534 DInfo.ObjCPropDeclInfo.setter = &SetterEntity;
536 DInfo.ObjCPropDeclInfo.setter = 0;
    [all...]
  /external/clang/include/clang-c/
Index.h 4445 const CXIdxEntityInfo *setter; member in struct:__anon4573
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]

Completed in 777 milliseconds

<<1112