/external/expat/amiga/include/interfaces/ |
D | expat.h | 27 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, X… 33 …XML_Parser APICALL (*XML_ParserCreate_MM)(struct ExpatIFace *Self, const XML_Char * encoding, cons… 34 …XML_Parser APICALL (*XML_ExternalEntityParserCreate)(struct ExpatIFace *Self, XML_Parser parser, c… 35 void APICALL (*XML_ParserFree)(struct ExpatIFace *Self, XML_Parser parser); 36 …enum XML_Status APICALL (*XML_Parse)(struct ExpatIFace *Self, XML_Parser parser, const char * s, i… [all …]
|
/external/expat/amiga/ |
D | expat_vectors.c | 172 uint32 _Expat_Obtain(struct ExpatIFace *Self) in _Expat_Obtain() argument 174 return ++Self->Data.RefCount; in _Expat_Obtain() 177 uint32 _Expat_Release(struct ExpatIFace *Self) in _Expat_Release() argument 179 return --Self->Data.RefCount; in _Expat_Release() 182 XML_Parser _Expat_XML_ParserCreate(struct ExpatIFace * Self, const XML_Char *encoding) in _Expat_XML_ParserCreate() argument 187 XML_Parser _Expat_XML_ParserCreateNS(struct ExpatIFace * Self, const XML_Char *encoding, XML_Char n… in _Expat_XML_ParserCreateNS() argument 192 XML_Parser _Expat_XML_ParserCreate_MM(struct ExpatIFace * Self, const XML_Char *encoding, const XML… in _Expat_XML_ParserCreate_MM() argument 197 XML_Parser _Expat_XML_ExternalEntityParserCreate(struct ExpatIFace * Self, XML_Parser parser, const… in _Expat_XML_ExternalEntityParserCreate() argument 202 void _Expat_XML_ParserFree(struct ExpatIFace *Self, XML_Parser parser) in _Expat_XML_ParserFree() argument 207 enum XML_Status _Expat_XML_Parse(struct ExpatIFace * Self, XML_Parser parser, const char * s, int l… in _Expat_XML_Parse() argument [all …]
|
D | expat_lib.c | 45 uint32 libObtain (struct LibraryManagerInterface *Self); 46 uint32 libRelease (struct LibraryManagerInterface *Self); 47 struct ExpatBase *libOpen (struct LibraryManagerInterface *Self, uint32 version); 48 BPTR libClose (struct LibraryManagerInterface *Self); 49 BPTR libExpunge (struct LibraryManagerInterface *Self); 162 uint32 libObtain( struct LibraryManagerInterface *Self ) in libObtain() argument 164 ++Self->Data.RefCount; in libObtain() 165 return Self->Data.RefCount; in libObtain() 169 uint32 libRelease( struct LibraryManagerInterface *Self ) in libRelease() argument 171 --Self->Data.RefCount; in libRelease() [all …]
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 49 : Self(S), SrcExpr(src), DestType(destType), in CastOperation() 62 Sema &Self; member 89 castExpr = ImplicitCastExpr::Create(Self.Context, in complete() 90 Self.Context.ARCUnbridgedCastTy, in complete() 94 return Self.Owned(castExpr); in complete() 117 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange); in checkCastAlign() 121 assert(Self.getLangOpts().ObjCAutoRefCount); in checkObjCARCConversion() 124 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) == in checkObjCARCConversion() 135 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take()); in checkNonOverloadPlaceholders() 143 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, [all …]
|
D | SemaExprCXX.cpp | 2927 static bool EvaluateUnaryTypeTrait(Sema &Self, UnaryTypeTrait UTT, in EvaluateUnaryTypeTrait() argument 2931 ASTContext &C = Self.Context; in EvaluateUnaryTypeTrait() 3003 return T.isTrivialType(Self.Context); in EvaluateUnaryTypeTrait() 3005 return T.isTriviallyCopyableType(Self.Context); in EvaluateUnaryTypeTrait() 3009 return T.isPODType(Self.Context); in EvaluateUnaryTypeTrait() 3046 if (T.isPODType(Self.Context)) in EvaluateUnaryTypeTrait() 3058 if (T.isPODType(Self.Context) || T->isReferenceType()) in EvaluateUnaryTypeTrait() 3078 if (T.isPODType(Self.Context)) in EvaluateUnaryTypeTrait() 3090 if (T.isPODType(Self.Context) || T->isReferenceType()) in EvaluateUnaryTypeTrait() 3115 if (T.isPODType(Self.Context) || T->isObjCLifetimeType()) in EvaluateUnaryTypeTrait() [all …]
|
D | SemaExpr.cpp | 4970 static void SuggestParentheses(Sema &Self, SourceLocation Loc, in SuggestParentheses() argument 4973 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); in SuggestParentheses() 4976 Self.Diag(Loc, Note) in SuggestParentheses() 4981 Self.Diag(Loc, Note) << ParenRange; in SuggestParentheses() 5055 static void DiagnoseConditionalPrecedence(Sema &Self, in DiagnoseConditionalPrecedence() argument 5071 Self.Diag(OpLoc, diag::warn_precedence_conditional) in DiagnoseConditionalPrecedence() 5075 SuggestParentheses(Self, OpLoc, in DiagnoseConditionalPrecedence() 5076 Self.PDiag(diag::note_precedence_conditional_silence) in DiagnoseConditionalPrecedence() 5080 SuggestParentheses(Self, OpLoc, in DiagnoseConditionalPrecedence() 5081 Self.PDiag(diag::note_precedence_conditional_first), in DiagnoseConditionalPrecedence() [all …]
|
/external/llvm/include/llvm/Support/ |
D | CFG.h | 32 typedef PredIterator<Ptr, USE_iterator> Self; typedef 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 132 inline const Self &operator=(const Self &I) { 142 inline bool operator==(const Self& x) const { return idx == x.idx; } 143 inline bool operator!=(const Self& x) const { return !operator==(x); } [all …]
|
/external/clang/lib/Parse/ |
D | RAIIObjectsForParser.h | 127 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) in PoisonSEHIdentifiersRAIIObject() argument 128 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), in PoisonSEHIdentifiersRAIIObject() 129 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), in PoisonSEHIdentifiersRAIIObject() 130 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), in PoisonSEHIdentifiersRAIIObject() 131 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject() 132 Ident__exception_code(Self.Ident__exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject() 133 Ident__exception_info(Self.Ident__exception_info, NewValue), in PoisonSEHIdentifiersRAIIObject() 134 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject() 135 Ident___exception_code(Self.Ident___exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject() 136 Ident___exception_info(Self.Ident___exception_info, NewValue) { in PoisonSEHIdentifiersRAIIObject()
|
D | ParseCXXInlineMethods.cpp | 227 : Self(P), Class(C) {} in LateParsedClass() 230 Self->DeallocateParsedClasses(Class); in ~LateParsedClass() 234 Self->ParseLexedMethodDeclarations(*Class); in ParseLexedMethodDeclarations() 238 Self->ParseLexedMemberInitializers(*Class); in ParseLexedMemberInitializers() 242 Self->ParseLexedMethodDefs(*Class); in ParseLexedMethodDefs() 246 Self->ParseLexedMethodDeclaration(*this); in ParseLexedMethodDeclarations() 250 Self->ParseLexedMethodDef(*this); in ParseLexedMethodDefs() 254 Self->ParseLexedMemberInitializer(*this); in ParseLexedMemberInitializers()
|
/external/llvm/include/llvm/Analysis/ |
D | RegionIterator.h | 87 typedef RNSuccIterator<NodeType> Self; typedef 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 199 inline bool operator==(const Self& x) const { 206 inline bool operator!=(const Self& x) const { return !operator==(x); } [all …]
|
/external/clang/include/clang/Serialization/ |
D | ContinuousRangeMap.h | 109 ContinuousRangeMap &Self; variable 115 explicit Builder(ContinuousRangeMap &Self) : Self(Self) { } in Builder() argument 118 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare()); in ~Builder() 122 Self.Rep.push_back(Val); in insert()
|
/external/webkit/Source/WebCore/svg/properties/ |
D | SVGPropertyTearOff.h | 33 typedef SVGPropertyTearOff<PropertyType> Self; typedef 37 …static PassRefPtr<Self> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, Proper… in create() 40 return adoptRef(new Self(animatedProperty, role, value)); in create() 44 static PassRefPtr<Self> create(const PropertyType& initialValue) in create() 46 return adoptRef(new Self(initialValue)); in create()
|
D | SVGStaticPropertyTearOff.h | 36 typedef SVGStaticPropertyTearOff<ContextElement, PropertyType> Self; typedef 41 …static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod u… in create() 44 return adoptRef(new Self(contextElement, value, update)); in create()
|
D | SVGStaticPropertyWithParentTearOff.h | 36 typedef SVGStaticPropertyWithParentTearOff<ParentType, PropertyType> Self; typedef 42 static PassRefPtr<Self> create(SVGProperty* parent, PropertyType& value, UpdateMethod update) in create() 45 return adoptRef(new Self(parent, value, update)); in create()
|
D | SVGListProperty.h | 37 typedef SVGListProperty<PropertyType> Self; typedef
|
/external/clang/include/clang/AST/ |
D | ExternalASTSource.h | 357 LazyVector *Self; variable 382 iterator() : Self(0), Position(0) { } in iterator() 384 iterator(LazyVector *Self, int Position) in iterator() argument 385 : Self(Self), Position(Position) { } in iterator() 389 return Self->Loaded.end()[Position]; 390 return Self->Local[Position]; 395 return &Self->Loaded.end()[Position]; 397 return &Self->Local[Position];
|
/external/clang/lib/AST/ |
D | InheritViz.cpp | 137 QualType Self = Context.getTypeDeclType(const_cast<CXXRecordDecl *>(this)); in viewInheritance() local 144 Filename.appendComponent(Self.getAsString() + ".dot"); in viewInheritance() 156 Writer.WriteGraph(Self); in viewInheritance()
|
/external/clang/include/clang/Frontend/ |
D | ASTUnit.h | 412 ASTUnit &Self; variable 415 explicit ConcurrencyCheck(ASTUnit &Self) in ConcurrencyCheck() argument 416 : Self(Self) in ConcurrencyCheck() 418 Self.ConcurrencyCheckValue.start(); in ConcurrencyCheck() 421 Self.ConcurrencyCheckValue.finish(); in ~ConcurrencyCheck()
|
/external/clang/include/clang/Lex/ |
D | PreprocessingRecord.h | 408 PreprocessingRecord *Self; variable 431 iterator() : Self(0), Position(0) { } in iterator() 433 iterator(PreprocessingRecord *Self, PPEntityID Position) in iterator() argument 434 : Self(Self), Position(Position) { } in iterator() 437 return Self->getPreprocessedEntity(Position);
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 656 Parser *Self; variable 665 ParseScope(Parser *Self, unsigned ScopeFlags, bool ManageScope = true) 666 : Self(Self) { in Self() function 668 Self->EnterScope(ScopeFlags); in Self() 670 this->Self = 0; in Self() 676 if (Self) { in Exit() 677 Self->ExitScope(); in Exit() 678 Self = 0; in Exit() 701 ParseScopeFlags(Parser *Self, unsigned ScopeFlags, bool ManageFlags = true); 784 Parser *Self; [all …]
|
/external/clang/test/SemaTemplate/ |
D | enum-argument.cpp | 5 typedef C<v> Self; typedef
|
/external/llvm/include/llvm/ |
D | Instructions.h | 2483 typedef CaseIteratorT<SwitchInstTy, ConstantIntTy, BasicBlockTy> Self; 2494 static Self fromSuccessorIndex(SwitchInstTy *SI, unsigned SuccessorIndex) { 2498 Self(SI, SuccessorIndex - 1) : 2499 Self(SI, DefaultPseudoIndex); 2526 Self operator++() { 2533 Self operator++(int) { 2534 Self tmp = *this; 2538 Self operator--() { 2547 Self operator--(int) { 2548 Self tmp = *this; [all …]
|
/external/clang/test/Analysis/ |
D | misc-ps-region-store.m | 378 void doSomething_7312221_with_struct(struct rdar_7312221_container *Self) { 379 if (Self->y == 0) { 380 Self->y = rdar_7312221_helper(); 381 if (Self->y != 0) { 382 Self->y->x = rdar_7312221_helper_4(Self); 383 rdar_7312221_helper_3(Self->y->x); // no-warning
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_folder_target_unittest.mm | 78 // YES a current folder. Self-mock that as well, so "same" will be
|
/external/clang/lib/CodeGen/ |
D | CGObjCRuntime.h | 176 llvm::Value *Self,
|