Searched refs:Self (Results 1 - 25 of 42) sorted by relevance

12

/external/expat/amiga/include/interfaces/
H A Dexpat.h27 uint32 APICALL (*Obtain)(struct ExpatIFace *Self);
28 uint32 APICALL (*Release)(struct ExpatIFace *Self);
29 void APICALL (*Expunge)(struct ExpatIFace *Self);
30 struct Interface * APICALL (*Clone)(struct ExpatIFace *Self);
31 XML_Parser APICALL (*XML_ParserCreate)(struct ExpatIFace *Self, const XML_Char * encodingName);
32 XML_Parser APICALL (*XML_ParserCreateNS)(struct ExpatIFace *Self, const XML_Char * encodingName, XML_Char nsSep);
33 XML_Parser APICALL (*XML_ParserCreate_MM)(struct ExpatIFace *Self, const XML_Char * encoding, const XML_Memory_Handling_Suite * memsuite, const XML_Char * namespaceSeparator);
34 XML_Parser APICALL (*XML_ExternalEntityParserCreate)(struct ExpatIFace *Self, XML_Parser parser, const XML_Char * context, const XML_Char * encoding);
35 void APICALL (*XML_ParserFree)(struct ExpatIFace *Self, XML_Parser parser);
36 enum XML_Status APICALL (*XML_Parse)(struct ExpatIFace *Self, XML_Parse
[all...]
/external/expat/amiga/
H A Dexpat_vectors.c172 uint32 _Expat_Obtain(struct ExpatIFace *Self) argument
174 return ++Self->Data.RefCount;
177 uint32 _Expat_Release(struct ExpatIFace *Self) argument
179 return --Self->Data.RefCount;
182 XML_Parser _Expat_XML_ParserCreate(struct ExpatIFace * Self, const XML_Char *encoding) argument
187 XML_Parser _Expat_XML_ParserCreateNS(struct ExpatIFace * Self, const XML_Char *encoding, XML_Char nsSep) argument
192 XML_Parser _Expat_XML_ParserCreate_MM(struct ExpatIFace * Self, const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *namespaceSeparator) argument
197 XML_Parser _Expat_XML_ExternalEntityParserCreate(struct ExpatIFace * Self, XML_Parser parser, const XML_Char *context, const XML_Char *encoding) argument
202 void _Expat_XML_ParserFree(struct ExpatIFace *Self, XML_Parser parser) argument
207 enum XML_Status _Expat_XML_Parse(struct ExpatIFace * Self, XML_Parse argument
212 _Expat_XML_ParseBuffer(struct ExpatIFace * Self, XML_Parser parser, int len, int isFinal) argument
217 _Expat_XML_GetBuffer(struct ExpatIFace * Self, XML_Parser parser, int len) argument
222 _Expat_XML_SetStartElementHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartElementHandler start) argument
227 _Expat_XML_SetEndElementHandler(struct ExpatIFace * Self, XML_Parser parser, XML_EndElementHandler end) argument
232 _Expat_XML_SetElementHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartElementHandler start, XML_EndElementHandler end) argument
237 _Expat_XML_SetCharacterDataHandler(struct ExpatIFace * Self, XML_Parser parser, XML_CharacterDataHandler handler) argument
242 _Expat_XML_SetProcessingInstructionHandler(struct ExpatIFace * Self, XML_Parser parser, XML_ProcessingInstructionHandler handler) argument
247 _Expat_XML_SetCommentHandler(struct ExpatIFace * Self, XML_Parser parser, XML_CommentHandler handler) argument
252 _Expat_XML_SetStartCdataSectionHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartCdataSectionHandler start) argument
257 _Expat_XML_SetEndCdataSectionHandler(struct ExpatIFace * Self, XML_Parser parser, XML_EndCdataSectionHandler end) argument
262 _Expat_XML_SetCdataSectionHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartCdataSectionHandler start, XML_EndCdataSectionHandler end) argument
267 _Expat_XML_SetDefaultHandler(struct ExpatIFace * Self, XML_Parser parser, XML_DefaultHandler handler) argument
272 _Expat_XML_SetDefaultHandlerExpand(struct ExpatIFace * Self, XML_Parser parser, XML_DefaultHandler handler) argument
277 _Expat_XML_SetExternalEntityRefHandler(struct ExpatIFace * Self, XML_Parser parser, XML_ExternalEntityRefHandler handler) argument
282 _Expat_XML_SetExternalEntityRefHandlerArg(struct ExpatIFace * Self, XML_Parser parser, void * arg) argument
287 _Expat_XML_SetUnknownEncodingHandler(struct ExpatIFace * Self, XML_Parser parser, XML_UnknownEncodingHandler handler, void * data) argument
292 _Expat_XML_SetStartNamespaceDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartNamespaceDeclHandler start) argument
297 _Expat_XML_SetEndNamespaceDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_EndNamespaceDeclHandler end) argument
302 _Expat_XML_SetNamespaceDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartNamespaceDeclHandler start, XML_EndNamespaceDeclHandler end) argument
307 _Expat_XML_SetXmlDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_XmlDeclHandler handler) argument
312 _Expat_XML_SetStartDoctypeDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartDoctypeDeclHandler start) argument
317 _Expat_XML_SetEndDoctypeDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_EndDoctypeDeclHandler end) argument
322 _Expat_XML_SetDoctypeDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_StartDoctypeDeclHandler start, XML_EndDoctypeDeclHandler end) argument
327 _Expat_XML_SetElementDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_ElementDeclHandler eldecl) argument
332 _Expat_XML_SetAttlistDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_AttlistDeclHandler attdecl) argument
337 _Expat_XML_SetEntityDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_EntityDeclHandler handler) argument
342 _Expat_XML_SetUnparsedEntityDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_UnparsedEntityDeclHandler handler) argument
347 _Expat_XML_SetNotationDeclHandler(struct ExpatIFace * Self, XML_Parser parser, XML_NotationDeclHandler handler) argument
352 _Expat_XML_SetNotStandaloneHandler(struct ExpatIFace * Self, XML_Parser parser, XML_NotStandaloneHandler handler) argument
357 _Expat_XML_GetErrorCode(struct ExpatIFace * Self, XML_Parser parser) argument
362 _Expat_XML_ErrorString(struct ExpatIFace * Self, enum XML_Error code) argument
367 _Expat_XML_GetCurrentByteIndex(struct ExpatIFace * Self, XML_Parser parser) argument
372 _Expat_XML_GetCurrentLineNumber(struct ExpatIFace * Self, XML_Parser parser) argument
377 _Expat_XML_GetCurrentColumnNumber(struct ExpatIFace * Self, XML_Parser parser) argument
382 _Expat_XML_GetCurrentByteCount(struct ExpatIFace * Self, XML_Parser parser) argument
387 _Expat_XML_GetInputContext(struct ExpatIFace * Self, XML_Parser parser, int * offset, int * size) argument
392 _Expat_XML_SetUserData(struct ExpatIFace * Self, XML_Parser parser, void * userData) argument
397 _Expat_XML_DefaultCurrent(struct ExpatIFace * Self, XML_Parser parser) argument
402 _Expat_XML_UseParserAsHandlerArg(struct ExpatIFace * Self, XML_Parser parser) argument
407 _Expat_XML_SetBase(struct ExpatIFace * Self, XML_Parser parser, const XML_Char *p) argument
412 _Expat_XML_GetBase(struct ExpatIFace * Self, XML_Parser parser) argument
417 _Expat_XML_GetSpecifiedAttributeCount(struct ExpatIFace * Self, XML_Parser parser) argument
422 _Expat_XML_GetIdAttributeIndex(struct ExpatIFace * Self, XML_Parser parser) argument
427 _Expat_XML_SetEncoding(struct ExpatIFace * Self, XML_Parser parser, const XML_Char *encoding) argument
432 _Expat_XML_SetParamEntityParsing(struct ExpatIFace * Self, XML_Parser parser, enum XML_ParamEntityParsing parsing) argument
437 _Expat_XML_SetReturnNSTriplet(struct ExpatIFace * Self, XML_Parser parser, int do_nst) argument
442 _Expat_XML_ExpatVersion(struct ExpatIFace * Self) argument
447 _Expat_XML_ExpatVersionInfo(struct ExpatIFace * Self) argument
452 _Expat_XML_ParserReset(struct ExpatIFace * Self, XML_Parser parser, const XML_Char *encoding) argument
457 _Expat_XML_SetSkippedEntityHandler(struct ExpatIFace * Self, XML_Parser parser, XML_SkippedEntityHandler handler) argument
462 _Expat_XML_UseForeignDTD(struct ExpatIFace * Self, XML_Parser parser, XML_Bool useDTD) argument
467 _Expat_XML_GetFeatureList(struct ExpatIFace * Self) argument
472 _Expat_XML_StopParser(struct ExpatIFace * Self, XML_Parser parser, XML_Bool resumable) argument
477 _Expat_XML_ResumeParser(struct ExpatIFace * Self, XML_Parser parser) argument
482 _Expat_XML_GetParsingStatus(struct ExpatIFace * Self, XML_Parser parser, XML_ParsingStatus * status) argument
487 _Expat_XML_FreeContentModel(struct ExpatIFace * Self, XML_Parser parser, XML_Content * model) argument
492 _Expat_XML_MemMalloc(struct ExpatIFace * Self, XML_Parser parser, size_t size) argument
497 _Expat_XML_MemRealloc(struct ExpatIFace * Self, XML_Parser parser, void * ptr, size_t size) argument
502 _Expat_XML_MemFree(struct ExpatIFace * Self, XML_Parser parser, void * ptr) argument
[all...]
H A Dexpat_68k.c45 struct LibraryManagerInterface *Self = (struct LibraryManagerInterface *) ExtLib->ILibrary; local
47 return (ULONG) Self->Open(0);
55 struct LibraryManagerInterface *Self = (struct LibraryManagerInterface *) ExtLib->ILibrary; local
57 return (ULONG) Self->Close();
77 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
78 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec;
83 p->p = Self->XML_ParserCreate((const XML_Char *)regarray[8]);
86 Self->XML_SetUserData(p->p, p);
99 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
100 struct ExecIFace *IExec = ((struct ExpatBase *)Self
121 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
145 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
168 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
183 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
195 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
206 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
217 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
229 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
241 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
254 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
266 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
278 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
290 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
302 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
314 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
327 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
339 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
351 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
363 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
374 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
387 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
399 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
411 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
424 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
436 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
448 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
460 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
473 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
485 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
497 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
509 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
521 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
533 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
545 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
556 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
566 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
577 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
588 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
599 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
610 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
621 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
632 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
643 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
654 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
665 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
676 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
687 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
698 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
709 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
720 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
731 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
741 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
751 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
762 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
774 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
785 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
795 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
806 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
817 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
828 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
839 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
850 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
861 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace; local
[all...]
H A Dexpat_lib.c51 uint32 libObtain (struct LibraryManagerInterface *Self);
52 uint32 libRelease (struct LibraryManagerInterface *Self);
53 struct ExpatBase *libOpen (struct LibraryManagerInterface *Self, uint32 version);
54 BPTR libClose (struct LibraryManagerInterface *Self);
55 BPTR libExpunge (struct LibraryManagerInterface *Self);
157 uint32 libObtain( struct LibraryManagerInterface *Self )
159 ++Self->Data.RefCount;
160 return Self->Data.RefCount;
164 uint32 libRelease( struct LibraryManagerInterface *Self )
166 --Self
171 libOpen( struct LibraryManagerInterface *Self, uint32 version ) argument
[all...]
/external/llvm/include/llvm/Support/
H A DCFG.h32 typedef PredIterator<Ptr, USE_iterator> Self; typedef in class:llvm::PredIterator
50 inline bool operator==(const Self& x) const { return It == x.It; }
51 inline bool operator!=(const Self& x) const { return !operator==(x); }
59 inline Self& operator++() { // Preincrement
65 inline Self operator++(int) { // Postincrement
66 Self tmp = *this; ++*this; return tmp;
107 typedef SuccIterator<Term_, BB_> Self; typedef in class:llvm::SuccIterator
132 inline const Self &operator=(const Self &I) {
142 inline bool operator==(const Self
[all...]
/external/clang/lib/Sema/
H A DSemaCast.cpp49 : Self(S), SrcExpr(src), DestType(destType),
62 Sema &Self; member in struct:__anon3858::CastOperation
89 castExpr = ImplicitCastExpr::Create(Self.Context,
90 Self.Context.ARCUnbridgedCastTy,
94 return Self.Owned(castExpr);
117 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
121 assert(Self.getLangOpts().ObjCAutoRefCount);
124 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
135 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take());
143 static bool CastsAwayConstness(Sema &Self, QualTyp
464 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, bool CheckCVR, bool CheckObjCLifetime) argument
789 TryStaticCast(Sema &Self, ExprResult &SrcExpr, QualType DestType, Sema::CheckedConversionKind CCK, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath, bool ListInitialization) argument
957 TryLValueToRValueCast(Sema &Self, Expr *SrcExpr, QualType DestType, bool CStyle, CastKind &Kind, CXXCastPath &BasePath, unsigned &msg) argument
1008 TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType, bool CStyle, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1043 TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType, bool CStyle, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1077 TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType, bool CStyle, const SourceRange &OpRange, QualType OrigSrcType, QualType OrigDestType, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1192 TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType, QualType DestType, bool CStyle, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1303 TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType, Sema::CheckedConversionKind CCK, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, bool ListInitialization) argument
1355 TryConstCast(Sema &Self, Expr *SrcExpr, QualType DestType, bool CStyle, unsigned &msg) argument
1483 DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr, QualType DestType) argument
1500 checkIntToPointerCast(bool CStyle, SourceLocation Loc, const Expr *SrcExpr, QualType DestType, Sema &Self) argument
1516 TryReinterpretCast(Sema &Self, ExprResult &SrcExpr, QualType DestType, bool CStyle, const SourceRange &OpRange, unsigned &msg, CastKind &Kind) argument
1932 DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr, QualType DestType) argument
[all...]
H A DSemaExprCXX.cpp2955 static bool EvaluateUnaryTypeTrait(Sema &Self, UnaryTypeTrait UTT, argument
2959 ASTContext &C = Self.Context;
3031 return T.isTrivialType(Self.Context);
3033 return T.isTriviallyCopyableType(Self.Context);
3037 return T.isPODType(Self.Context);
3085 if (T.isPODType(Self.Context))
3097 if (T.isPODType(Self.Context) || T->isReferenceType())
3118 if (T.isPODType(Self.Context))
3131 if (T.isPODType(Self.Context) || T->isReferenceType())
3155 if (T.isPODType(Self
3461 EvaluateBinaryTypeTrait(Sema &Self, BinaryTypeTrait BTT, QualType LhsT, QualType RhsT, SourceLocation KeyLoc) argument
3673 EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT, QualType T, Expr *DimExpr, SourceLocation KeyLoc) argument
3937 TryClassUnification(Sema &Self, Expr *From, Expr *To, SourceLocation QuestionLoc, bool &HaveConversion, QualType &ToType) argument
4026 FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS, SourceLocation QuestionLoc) argument
4084 ConvertForConditional(Sema &Self, ExprResult &E, QualType T) argument
[all...]
H A DSemaExpr.cpp2034 // turn this into Self->ivar, just return a BareIVarExpr or something.
5295 static void SuggestParentheses(Sema &Self, SourceLocation Loc, argument
5298 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd());
5301 Self.Diag(Loc, Note)
5306 Self.Diag(Loc, Note) << ParenRange;
5380 static void DiagnoseConditionalPrecedence(Sema &Self, argument
5396 Self.Diag(OpLoc, diag::warn_precedence_conditional)
5400 SuggestParentheses(Self, OpLoc,
5401 Self.PDiag(diag::note_precedence_silence)
5405 SuggestParentheses(Self, OpLo
6439 diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
8555 DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
8597 EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc, BinaryOperator *Bop) argument
8612 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, BinaryOperator *Bop) argument
8699 DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGPropertyTearOff.h33 typedef SVGPropertyTearOff<PropertyType> Self; typedef in class:WebCore::SVGPropertyTearOff
37 static PassRefPtr<Self> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
40 return adoptRef(new Self(animatedProperty, role, value));
44 static PassRefPtr<Self> create(const PropertyType& initialValue)
46 return adoptRef(new Self(initialValue));
H A DSVGStaticPropertyTearOff.h36 typedef SVGStaticPropertyTearOff<ContextElement, PropertyType> Self; typedef in class:WebCore::SVGStaticPropertyTearOff
41 static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
44 return adoptRef(new Self(contextElement, value, update));
H A DSVGStaticPropertyWithParentTearOff.h36 typedef SVGStaticPropertyWithParentTearOff<ParentType, PropertyType> Self; typedef in class:WebCore::SVGStaticPropertyWithParentTearOff
42 static PassRefPtr<Self> create(SVGProperty* parent, PropertyType& value, UpdateMethod update)
45 return adoptRef(new Self(parent, value, update));
H A DSVGListProperty.h37 typedef SVGListProperty<PropertyType> Self; typedef in class:WebCore::SVGListProperty
/external/clang/include/clang/Serialization/
H A DContinuousRangeMap.h110 ContinuousRangeMap &Self; member in class:clang::ContinuousRangeMap::Builder
116 explicit Builder(ContinuousRangeMap &Self) : Self(Self) { } argument
119 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
123 Self.Rep.push_back(Val);
/external/clang/test/SemaTemplate/
H A Denum-argument.cpp6 typedef C<v> Self; typedef in struct:C
/external/llvm/include/llvm/Analysis/
H A DRegionIterator.h87 typedef RNSuccIterator<NodeType> Self; typedef in class:llvm::RNSuccIterator
111 inline bool operator==(const Self& x) const {
119 inline bool operator!=(const Self& x) const { return !operator==(x); }
127 inline Self& operator++() {
141 inline Self operator++(int) {
142 Self tmp = *this;
147 inline const Self &operator=(const Self &I) {
174 typedef RNSuccIterator<FlatIt<NodeType> > Self; typedef in class:llvm::RNSuccIterator
199 inline bool operator==(const Self
[all...]
H A DRegionInfo.h488 typedef block_iterator_wrapper<IsConst> Self; typedef in class:llvm::Region::block_iterator_wrapper
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h344 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) argument
345 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue),
346 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue),
347 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue),
348 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue),
349 Ident__exception_code(Self.Ident__exception_code, NewValue),
350 Ident__exception_info(Self.Ident__exception_info, NewValue),
351 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue),
352 Ident___exception_code(Self.Ident___exception_code, NewValue),
353 Ident___exception_info(Self
[all...]
H A DParseCXXInlineMethods.cpp245 : Self(P), Class(C) {}
248 Self->DeallocateParsedClasses(Class);
252 Self->ParseLexedMethodDeclarations(*Class);
256 Self->ParseLexedMemberInitializers(*Class);
260 Self->ParseLexedMethodDefs(*Class);
264 Self->ParseLexedMethodDeclaration(*this);
268 Self->ParseLexedMethodDef(*this);
272 Self->ParseLexedMemberInitializer(*this);
/external/clang/include/clang/AST/
H A DExternalASTSource.h368 LazyVector *Self; member in class:clang::LazyVector::iterator
393 iterator() : Self(0), Position(0) { }
395 iterator(LazyVector *Self, int Position) argument
396 : Self(Self), Position(Position) { }
400 return Self->Loaded.end()[Position];
401 return Self->Local[Position];
406 return &Self->Loaded.end()[Position];
408 return &Self->Local[Position];
/external/clang/lib/AST/
H A DInheritViz.cpp137 QualType Self = Context.getTypeDeclType(this); local
144 Filename.appendComponent(Self.getAsString() + ".dot");
156 Writer.WriteGraph(Self);
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h380 PreprocessingRecord *Self; member in class:clang::PreprocessingRecord::iterator
403 iterator() : Self(0), Position(0) { }
405 iterator(PreprocessingRecord *Self, int Position) argument
406 : Self(Self), Position(Position) { }
411 Self->LoadedPreprocessedEntities.size() + Position : Position;
412 PPEntityID ID = Self->getPPEntityID(Index, isLoaded);
413 return Self->getPreprocessedEntity(ID);
/external/clang/include/clang/Frontend/
H A DASTUnit.h423 ASTUnit &Self; member in class:clang::ASTUnit::ConcurrencyCheck
426 explicit ConcurrencyCheck(ASTUnit &Self) argument
427 : Self(Self)
429 Self.ConcurrencyCheckValue.start();
432 Self.ConcurrencyCheckValue.finish();
/external/clang/include/clang/Parse/
H A DParser.h642 Parser *Self; member in class:clang::Parser::ParseScope
648 // parser Self where the new Scope is created with the flags
651 ParseScope(Parser *Self, unsigned ScopeFlags, bool ManageScope = true) argument
652 : Self(Self) {
654 Self->EnterScope(ScopeFlags);
656 this->Self = 0;
662 if (Self) {
663 Self->ExitScope();
664 Self
776 Parser *Self; member in class:clang::Parser::LateParsedClass
787 Parser *Self; member in struct:clang::Parser::LateParsedAttribute
817 Parser *Self; member in struct:clang::Parser::LexedMethod
861 Parser* Self; member in struct:clang::Parser::LateParsedMethodDeclaration
892 Parser *Self; member in struct:clang::Parser::LateParsedMemberInitializer
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.h163 /// class initiated in a method for Class and with the given Self
175 llvm::Value *Self,
/external/llvm/include/llvm/IR/
H A DInstructions.h2677 SubsetsItTy, BasicBlockTy> Self; typedef in class:llvm::SwitchInst::CaseIteratorT
2689 static Self fromSuccessorIndex(SwitchInstTy *SI, unsigned SuccessorIndex) {
2693 Self(SI, SuccessorIndex - 1) :
2694 Self(SI, DefaultPseudoIndex);
2732 Self operator++() {
2743 Self operator++(int) {
2744 Self tmp = *this;
2748 Self operator--() {
2766 Self operator--(int) {
2767 Self tm
[all...]

Completed in 465 milliseconds

12