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

1 2 3 4 5 6 78 91011>>

  /external/v8/test/mjsunit/regress/
regress-874.js 31 var setter = function(value){ }; function
33 x.__defineSetter__(0, setter);
37 assertEquals (setter, Object.getOwnPropertyDescriptor(x, 0).set);
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/chromium_org/v8/test/mjsunit/compiler/
inline-accessors.js 233 function TrySetter(context, setter, obj, expectException, value, expected) {
243 %ClearFunctionTypeFeedback(setter);
246 function TestSetterInAllContexts(setter, obj, expectException) {
247 TrySetter(value_context_for_setter, setter, obj, expectException, 111, 111);
248 TrySetter(test_context_for_setter, setter, obj, expectException, true, 333);
249 TrySetter(test_context_for_setter, setter, obj, expectException, false, 444);
250 TrySetter(effect_context_for_setter, setter, obj, expectException, 555, 666);
254 // Test setter without a return in all contexts.
270 // Test setter returning something different than the RHS in all contexts.
287 // Test setter with too few arguments without a return in all contexts
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-137689.js 31 function setter(v) { } function
45 Object.defineProperty(o, "foo", { set: setter, configurable: true });
46 Object.defineProperty(o2, "foo", { set: setter, configurable: true });
regress-618.js 36 // Add setter somewhere on the prototype chain after having constructed the
51 // Add setter somewhere on the prototype chain after having constructed the
66 // Add setter somewhere on the prototype chain after having constructed the
81 // Add setter somewhere on the prototype chain after having constructed the
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/v8/test/mjsunit/bugs/
bug-618.js 36 // If a setter is added to the prototype chain of a simple constructor setting
37 // one of the properties assigned in the constructor then this setter is
40 // This only happens if the setter is added _after_ an instance has been
618.js 36 // Add setter somewhere on the prototype chain after having constructed the
51 // Add setter somewhere on the prototype chain after having constructed the
66 // Add setter somewhere on the prototype chain after having constructed the
81 // Add setter somewhere on the prototype chain after having constructed the
  /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_org/third_party/WebKit/Source/core/css/
CSSStyleDeclaration.idl 38 [Custom] setter void (DOMString propertyName, [TreatNullAs=NullString] DOMString propertyValue);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.idl 36 [ImplementedAs=anonymousIndexedSetter, RaisesException] setter HTMLOptionElement (unsigned long index, [TreatNullAs=anonymousIndexedSetterRemove, TreatUndefinedAs=anonymousIndexedSetterRemove] HTMLOptionElement value);
  /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;
  /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;
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_org/tools/telemetry/telemetry/core/chrome/
inspector_console.py 44 @message_output_stream.setter

Completed in 519 milliseconds

1 2 3 4 5 6 78 91011>>