HomeSort by relevance Sort by last modified time
    Searched refs:setter (Results 201 - 225 of 304) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
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/eigen/bench/
sparse_setter.cpp 244 DynamicSparseMatrix<Scalar> setter(SIZE,SIZE);
245 setter.reserve(coords.size()/10);
248 setter.coeffRef(coords[i].x(), coords[i].y()) += vals[i];
250 SparseMatrix<Scalar> mat = setter;
260 RandomSetter<SparseMatrix<Scalar>, StdMapTraits > setter(mat);
263 setter(coords[i].x(), coords[i].y()) += vals[i];
276 RandomSetter<SparseMatrix<Scalar>, GoogleDenseHashMapTraits> setter(mat);
278 setter(coords[i].x(), coords[i].y()) += vals[i];
289 RandomSetter<SparseMatrix<Scalar>, GoogleSparseHashMapTraits> setter(mat);
291 setter(coords[i].x(), coords[i].y()) += vals[i]
    [all...]
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 28 // Test that setter accessors added to the prototype chain are called
42 // Add a setter for x to Object.prototype and make sure it gets
50 // Add a setter for y by changing the prototype of f and make sure
  /external/webkit/Source/WebCore/dom/
Node.idl 55 setter raises(DOMException);
89 setter raises(DOMException);
100 setter raises(DOMException);
Document.idl 72 setter raises (DOMException);
74 setter raises (DOMException);
154 setter raises (DOMException);
161 setter raises (DOMException),
167 setter raises (DOMException);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTreeAdaptor.h 37 @property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *treeToUniqueIDMap;
38 @property (getter=getUniqueNodeID, setter=setUniqueNodeID:) NSInteger uniqueNodeID;
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
ANTLRTreeWizard.h 67 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
68 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseTreeAdaptor.h 37 @property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *treeToUniqueIDMap;
38 @property (getter=getUniqueNodeID, setter=setUniqueNodeID:) NSInteger uniqueNodeID;
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
ANTLRTreeWizard.h 67 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
68 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseTreeAdaptor.h 37 @property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *treeToUniqueIDMap;
38 @property (getter=getUniqueNodeID, setter=setUniqueNodeID:) NSInteger uniqueNodeID;
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
  /external/webkit/Source/WebCore/css/
CSSStyleApplyProperty.cpp 87 ApplyPropertyDefault(T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T), T (*initial)()) member in class:WebCore::ApplyPropertyDefault
89 , m_setter(setter)
119 ApplyPropertyColorBase(const Color& (RenderStyle::*getter)() const, const Color& (RenderStyle::*defaultValue)() const, void (RenderStyle::*setter)(const Color&)) function in class:WebCore::ApplyPropertyColorBase
122 , m_setter(setter)
151 ApplyPropertyColor(const Color& (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const Color&), Color (*initialValue)()) member in class:WebCore::ApplyPropertyColor
152 : ApplyPropertyColorBase(getter, 0, setter)
179 ApplyPropertyDirection(TextDirection (RenderStyle::*getter)() const, void (RenderStyle::*setter)(TextDirection), TextDirection (*initial)()) member in class:WebCore::ApplyPropertyDirection
180 : ApplyPropertyDefault<TextDirection>(getter, setter, initial)
  /external/v8/src/
property.cc 126 return accessors->getter()->IsMap() || accessors->setter()->IsMap();
  /external/v8/test/mjsunit/
mirror-object.js 200 // a has getter but no setter.
205 assertEquals('undefined', mirror.property('a').setter().type());
207 // b has setter but no getter.
212 assertEquals('function', mirror.property('b').setter().type());
213 assertEquals('function (){}', mirror.property('b').setter().source());
215 // c has both getter and setter. The getter throws an exception.
220 assertEquals('function', mirror.property('c').setter().type());
222 assertEquals('function (){throw \'c\';}', mirror.property('c').setter().source());
indexed-accessors.js 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.
94 // Setter works
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.h 36 * getter and setter functions */
90 /* property setter function */
91 WPADBusPropertyAccessor setter; member in struct:wpa_dbus_property_desc
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 139 JSObject* setterFunc = asGetterSetter(gs)->setter();
329 // if we override an existing non-getter or non-setter.
350 putDirectInternal(exec->globalData(), propertyName, getterSetter, attributes | Setter, true, slot);
354 // if we override an existing non-getter or non-setter.
390 JSObject* functionObject = asGetterSetter(value)->setter();
631 if (oldDescriptor.setter()) {
632 attributes |= Setter;
633 accessor->setSetter(exec->globalData(), asObject(oldDescriptor.setter()));
643 target->putWithAttributes(exec, propertyName, newValue, attributes & ~(Getter | Setter));
651 if (descriptor.setter() && descriptor.setter().isObject()
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
getOwnPropertyDescriptor.js 68 objectWithSetter.__defineSetter__("setter", setterFunc);
69 descriptorShouldBe("objectWithSetter", "'setter'", {"set": "setterFunc", "get": undefined, enumerable: true, configurable: true});
92 for (var property in Object.getOwnPropertyDescriptor(objectWithSetter, "setter"))
  /external/webkit/Source/WebCore/bindings/scripts/test/
TestObj.idl 83 attribute long attrWithSetterException setter raises(DOMException);
85 attribute DOMString stringAttrWithSetterException setter raises(DOMException);

Completed in 3094 milliseconds

1 2 3 4 5 6 7 891011>>