Home
last modified time | relevance | path

Searched refs:Setter (Results 1 – 25 of 34) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
DPropertyDescriptor.cpp91 if (attributes & (Getter | Setter)) { in setDescriptor()
106 ASSERT(attributes & (Getter | Setter)); in setAccessorDescriptor()
145 m_attributes |= Setter; in setSetter()
DJSObject.cpp350 …putDirectInternal(exec->globalData(), propertyName, getterSetter, attributes | Setter, true, slot); in defineSetter()
632 attributes |= Setter; in putDescriptor()
643 target->putWithAttributes(exec, propertyName, newValue, attributes & ~(Getter | Setter)); in putDescriptor()
768 attrs |= Setter; in defineOwnProperty()
DArguments.cpp165 descriptor.setAccessorDescriptor(thrower, thrower, DontEnum | DontDelete | Getter | Setter); in createStrictModeCallerIfNecessary()
177 descriptor.setAccessorDescriptor(thrower, thrower, DontEnum | DontDelete | Getter | Setter); in createStrictModeCalleeIfNecessary()
DJSFunction.cpp108 descriptor.setAccessorDescriptor(thrower, thrower, DontEnum | DontDelete | Getter | Setter); in createDescriptorForThrowingProperty()
DObjectConstructor.cpp291 ASSERT((descriptor.attributes() & (Getter | Setter)) || (!descriptor.isAccessorDescriptor())); in objectConstructorDefineProperty()
DJSObject.h69 Setter = 1 << 6 // property is a setter enumerator
/external/clang/include/clang/AST/
DExprObjC.h568 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
574 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
579 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
584 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
589 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
594 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
686 const ObjCMethodDecl *Setter = getImplicitPropertySetter();
687 ObjCMethodDecl::param_const_iterator P = Setter->param_begin();
691 if (const ObjCMethodDecl *Setter = PDecl->getSetterMethodDecl()) {
692 ObjCMethodDecl::param_const_iterator P = Setter->param_begin();
[all …]
/external/clang/lib/Sema/
DSemaExprObjC.cpp1470 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); in HandleExprPropertyRefExpr() local
1473 if (!Setter) in HandleExprPropertyRefExpr()
1474 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true); in HandleExprPropertyRefExpr()
1476 if (!Setter) { in HandleExprPropertyRefExpr()
1479 Setter = IFace->lookupPrivateMethod(SetterSel); in HandleExprPropertyRefExpr()
1482 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) in HandleExprPropertyRefExpr()
1485 if (Getter || Setter) { in HandleExprPropertyRefExpr()
1487 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in HandleExprPropertyRefExpr()
1493 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in HandleExprPropertyRefExpr()
1537 if (Setter) in HandleExprPropertyRefExpr()
[all …]
DSemaPseudoObject.cpp224 ObjCMethodDecl *Setter; member in __anon865e2fa40111::ObjCPropertyOpBuilder
231 SyntacticRefExpr(0), InstanceReceiver(0), Getter(0), Setter(0) { in ObjCPropertyOpBuilder()
540 Setter = setter; in findSetter()
580 Setter = setter; in findSetter()
672 QualType paramType = (*Setter->param_begin())->getType(); in buildSet()
692 if (Setter->isInstanceMethod() || RefExpr->isObjectReceiver()) { in buildSet()
694 GenericLoc, SetterSelector, Setter, in buildSet()
699 SetterSelector, Setter, in buildSet()
DSemaExprMember.cpp1400 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); in LookupMemberExpr() local
1401 if (!Setter) { in LookupMemberExpr()
1404 Setter = IFace->lookupPrivateMethod(SetterSel, false); in LookupMemberExpr()
1407 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) in LookupMemberExpr()
1410 if (Getter || Setter) { in LookupMemberExpr()
1411 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in LookupMemberExpr()
DSemaCodeComplete.cpp4735 CodeCompletionBuilder Setter(Results.getAllocator(), in CodeCompleteObjCPropertyFlags() local
4737 Setter.AddTypedTextChunk("setter"); in CodeCompleteObjCPropertyFlags()
4738 Setter.AddTextChunk(" = "); in CodeCompleteObjCPropertyFlags()
4739 Setter.AddPlaceholderChunk("method"); in CodeCompleteObjCPropertyFlags()
4740 Results.AddResult(CodeCompletionResult(Setter.TakeString())); in CodeCompleteObjCPropertyFlags()
DTreeTransform.h2377 ObjCMethodDecl *Setter, in RebuildObjCPropertyRefExpr() argument
2382 new (getSema().Context) ObjCPropertyRefExpr(Getter, Setter, T, in RebuildObjCPropertyRefExpr()
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp1469 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); in CreateType() local
1475 (Setter && Setter->isImplicit()) ? "" : in CreateType()
1543 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); in CreateType() local
1549 (Setter && Setter->isImplicit()) ? "" : in CreateType()
/external/clang/tools/libclang/
DIndexingContext.cpp610 if (ObjCMethodDecl *Setter = D->getSetterMethodDecl()) { in handleObjCProperty() local
611 getEntityInfo(Setter, SetterEntity, SA); in handleObjCProperty()
/external/clang/lib/AST/
DASTDumper.cpp1737 if (ObjCMethodDecl *Setter = Node->getImplicitPropertySetter()) in VisitObjCPropertyRefExpr() local
1738 OS << Setter->getSelector().getAsString(); in VisitObjCPropertyRefExpr()
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp5488 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) in RewriteObjCClassMetaData() local
5489 if (!Setter->isDefined()) in RewriteObjCClassMetaData()
5490 InstanceMethods.push_back(Setter); in RewriteObjCClassMetaData()
5769 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
5770 InstanceMethods.push_back(Setter); in RewriteObjCCategoryImplDecl()
DRewriteModernObjC.cpp7305 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) in RewriteObjCClassMetaData() local
7307 InstanceMethods.push_back(Setter); in RewriteObjCClassMetaData()
7565 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
7566 InstanceMethods.push_back(Setter); in RewriteObjCCategoryImplDecl()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp906 ObjCMethodDecl *Setter = ReadDeclAs<ObjCMethodDecl>(Record, Idx); in VisitObjCPropertyRefExpr() local
907 E->setImplicitProperty(Getter, Setter, MethodRefFlags); in VisitObjCPropertyRefExpr()
/external/webkit/Source/JavaScriptCore/parser/
DNodes.h412 enum Type { Constant = 1, Getter = 2, Setter = 4 }; enumerator
DJSParser.cpp1725 type = PropertyNode::Setter; in parseProperty()
/external/webkit/Source/JavaScriptCore/bytecompiler/
DNodesCodegen.cpp252 case PropertyNode::Setter: { in emitBytecode()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-1414506 - fix remaining performance regression from Getter/Setter change
15370 old constant declaration and the Getter and Setter types are for property getters
15377 property nodes are of type Getter or Setter, define getters and setters. Otherwise,
15433 If the property already exists and has a Setter, invoke
/external/webkit/Source/WebKit/gtk/
DChangeLog3814 …(DumpRenderTreeSupportGtk::setLinksIncludedInFocusChain): Setter to the WebKitTabToLinksPreference…
/external/webkit/Source/WebCore/
DChangeLog-2008-08-105790 …(WebCore::EventHandler::setPanScrollInProgress): Setter used by the sub frames's EventHandler to n…
22843 Setter/getter for the application cache storage ID.
22852 Setter/getter for the application cache group storage ID.
22861 Setter/getter for the application cache resource storage ID.
37489 Setter and Functions need custom implementations as they rely on the dynamic
/external/webkit/Source/WebKit/mac/
DChangeLog-2002-12-0312208 (-[IFWebController setWindowContext:]): Setter for new WindowContext handler

12