HomeSort by relevance Sort by last modified time
    Searched refs:getter (Results 176 - 200 of 330) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-003.js 22 * SUMMARY: Testing obj.prop getter/setter
28 var summary = 'Testing obj.prop getter/setter';
43 // SECTION1: define getter/setter directly on an object (not its prototype)
48 obj.name getter = function() {this.nameGETS++; return this._name;}
74 // SECTION2: define getter/setter in Object.prototype
78 Object.prototype.name getter = function() {this.nameGETS++; return this._name;}
105 // SECTION 3: define getter/setter in prototype of user-defined constructor
112 TestObject.prototype.name getter = function() {this.nameGETS++; return this._name;}
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST.stg 41 @property (retain, getter=getST, setter=setST:) ST *st;
100 @property (retain, getter=getTemplateLib, setter=setTemplateLib:) STGroup *templateLib;
182 @property (retain, getter=getTemplateLib, setter=setTemplateLib:) STGroup *templateLib;
214 @property (retain, getter=getTemplateLib, setter=setTemplateLib:) STGroup *templateLib;
  /external/chromium/chrome/browser/remoting/
directory_add_request.cc 22 DirectoryAddRequest::DirectoryAddRequest(net::URLRequestContextGetter* getter)
23 : getter_(getter) {
  /external/v8/test/mjsunit/
indexed-accessors.js 64 // Testing that a defined getter doesn't get lost due to inline caching.
84 // Using a setter where only a getter is defined does not throw an exception,
90 // Using a getter where only a setter is defined returns undefined.
99 // Complex case of using an undefined getter.
mirror-object.js 200 // a has getter but no setter.
204 assertEquals('function', mirror.property('a').getter().type());
206 assertEquals('function (){return \'a\';}', mirror.property('a').getter().source());
207 // b has setter but no getter.
211 assertEquals('undefined', mirror.property('b').getter().type());
215 // c has both getter and setter. The getter throws an exception.
219 assertEquals('function', mirror.property('c').getter().type());
221 assertEquals('function (){throw \'c\';}', mirror.property('c').getter().source());
object-get-own-property-names.js 72 // Check that getter properties are returned.
74 obj.__defineGetter__("getter", function() {});
78 assertEquals("getter", propertyNames[0]);
  /external/v8/test/mjsunit/regress/
regress-798.js 30 // Add property a with getter/setter.
48 // Add property b with getter/setter.
69 // Add property c with getter/setter.
90 // Check that the stack for an exception in a getter and setter produce the
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMap.h 48 @property (getter=getLastHash, setter=setLastHash:) NSInteger lastHash;
ANTLRTreeParser.h 37 @property (retain, getter=getInput, setter=setInput:) id<ANTLRTreeNodeStream> input;
ANTLRBaseTreeAdaptor.h 37 @property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *treeToUniqueIDMap;
38 @property (getter=getUniqueNodeID, setter=setUniqueNodeID:) NSInteger uniqueNodeID;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMap.h 48 @property (getter=getLastHash, setter=setLastHash:) NSInteger lastHash;
ANTLRTreeParser.h 37 @property (retain, getter=getInput, setter=setInput:) id<ANTLRTreeNodeStream> input;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRMap.h 48 @property (getter=getLastHash, setter=setLastHash:) NSInteger lastHash;
ANTLRTreeParser.h 37 @property (retain, getter=getInput, setter=setInput:) id<ANTLRTreeNodeStream> input;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableArray.h 46 @property (assign, getter=count, setter=setCount:) NSInteger count;
AMutableDictionary.h 31 @property (assign, readonly, getter=count) NSUInteger count;
ANTLRMap.h 48 @property (getter=getLastHash, setter=setLastHash:) NSInteger lastHash;
ANTLRTokenRewriteStream.h 50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex;
52 @property (retain, getter=text, setter=setText:) NSString *text;
114 @property (retain, getter=getPrograms, setter=setPrograms:) ANTLRHashMap *programs;
115 @property (retain, getter=getLastRewriteTokenIndexes, setter=setLastRewriteTokenIndexes:) ANTLRHashMap *lastRewriteTokenIndexes;
ANTLRTreeParser.h 37 @property (retain, getter=input, setter=setInput:) id<ANTLRTreeNodeStream> input;
ANTLRTreePatternLexer.h 73 @property (retain, getter=getSval, setter=setSval:) NSMutableData *sval;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h 49 @property (assign, getter=getnames, setter=setnames:) ANTLRPtrBuffer * names;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.h 61 @property (assign, getter=gettree, setter=settree:) ANTLRCommonTree * tree;
  /external/chromium/chrome/browser/sync/
test_profile_sync_service.h 55 net::URLRequestContextGetter* getter);
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_view.h 108 @property(assign, nonatomic, getter=isClosing) BOOL closing;
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
optional-event-properties.js 5 ObjectThrowingException.prototype.__defineGetter__("x", function() { throw new Error('x getter exception'); });
6 ObjectThrowingException.prototype.__defineGetter__("alpha", function() { throw new Error('alpha getter exception'); });
34 testException("event.initDeviceMotionEvent('', false, false, objectThrowingException, {x: 3, z: 5}, {gamma: 8, beta: 7}, 9)", "Error: x getter exception");
35 testException("event.initDeviceMotionEvent('', false, false, {x: 0, y: 1, z: 2}, objectThrowingException, {gamma: 8, beta: 7}, 9)", "Error: x getter exception");
36 testException("event.initDeviceMotionEvent('', false, false, {x: 0, y: 1, z: 2}, {x: 3, z: 5}, objectThrowingException, 9)", "Error: alpha getter exception");

Completed in 610 milliseconds

1 2 3 4 5 6 78 91011>>