Home
last modified time | relevance | path

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

12

/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaCast.cpp50 : Self(S), SrcExpr(src), DestType(destType), in CastOperation()
63 Sema &Self; member
90 castExpr = ImplicitCastExpr::Create(Self.Context, in complete()
91 Self.Context.ARCUnbridgedCastTy, in complete()
95 return Self.Owned(castExpr); in complete()
118 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange); in checkCastAlign()
122 assert(Self.getLangOpts().ObjCAutoRefCount); in checkObjCARCConversion()
125 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) == in checkObjCARCConversion()
136 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take()); in checkNonOverloadPlaceholders()
144 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
[all …]
DSemaExprCXX.cpp3180 Sema &Self, SourceLocation KeyLoc, ASTContext &C, in HasNoThrowOperator() argument
3191 LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName); in HasNoThrowOperator()
3192 if (Self.LookupQualifiedName(Res, RD)) { in HasNoThrowOperator()
3205 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in HasNoThrowOperator()
3206 if (!CPT || !CPT->isNothrow(Self.Context)) in HasNoThrowOperator()
3215 static bool EvaluateUnaryTypeTrait(Sema &Self, UnaryTypeTrait UTT, in EvaluateUnaryTypeTrait() argument
3219 ASTContext &C = Self.Context; in EvaluateUnaryTypeTrait()
3291 return T.isTrivialType(Self.Context); in EvaluateUnaryTypeTrait()
3293 return T.isTriviallyCopyableType(Self.Context); in EvaluateUnaryTypeTrait()
3297 return T.isPODType(Self.Context); in EvaluateUnaryTypeTrait()
[all …]
DSemaExpr.cpp5779 static void SuggestParentheses(Sema &Self, SourceLocation Loc, in SuggestParentheses() argument
5782 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); in SuggestParentheses()
5785 Self.Diag(Loc, Note) in SuggestParentheses()
5790 Self.Diag(Loc, Note) << ParenRange; in SuggestParentheses()
5865 static void DiagnoseConditionalPrecedence(Sema &Self, in DiagnoseConditionalPrecedence() argument
5881 Self.Diag(OpLoc, diag::warn_precedence_conditional) in DiagnoseConditionalPrecedence()
5885 SuggestParentheses(Self, OpLoc, in DiagnoseConditionalPrecedence()
5886 Self.PDiag(diag::note_precedence_silence) in DiagnoseConditionalPrecedence()
5890 SuggestParentheses(Self, OpLoc, in DiagnoseConditionalPrecedence()
5891 Self.PDiag(diag::note_precedence_conditional_first), in DiagnoseConditionalPrecedence()
[all …]
DSemaChecking.cpp5792 SequencedSubexpression(SequenceChecker &Self) in SequencedSubexpression()
5793 : Self(Self), OldModAsSideEffect(Self.ModAsSideEffect) { in SequencedSubexpression()
5794 Self.ModAsSideEffect = &ModAsSideEffect; in SequencedSubexpression()
5798 UsageInfo &U = Self.UsageMap[ModAsSideEffect[I].first]; in ~SequencedSubexpression()
5800 Self.addUsage(U, ModAsSideEffect[I].first, in ~SequencedSubexpression()
5803 Self.ModAsSideEffect = OldModAsSideEffect; in ~SequencedSubexpression()
5806 SequenceChecker &Self; member
5817 EvaluationTracker(SequenceChecker &Self) in EvaluationTracker() argument
5818 : Self(Self), Prev(Self.EvalTracker), EvalOK(true) { in EvaluationTracker()
5819 Self.EvalTracker = this; in EvaluationTracker()
[all …]
DTreeTransform.h100 Derived &Self; variable
104 ForgetPartiallySubstitutedPackRAII(Derived &Self) : Self(Self) { in ForgetPartiallySubstitutedPackRAII() argument
105 Old = Self.ForgetPartiallySubstitutedPack(); in ForgetPartiallySubstitutedPackRAII()
109 Self.RememberPartiallySubstitutedPack(Old); in ~ForgetPartiallySubstitutedPackRAII()
176 TreeTransform &Self; variable
181 TemporaryBase(TreeTransform &Self, SourceLocation Location, in TemporaryBase() argument
182 DeclarationName Entity) : Self(Self) { in TemporaryBase()
183 OldLocation = Self.getDerived().getBaseLocation(); in TemporaryBase()
184 OldEntity = Self.getDerived().getBaseEntity(); in TemporaryBase()
187 Self.getDerived().setBase(Location, Entity); in TemporaryBase()
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/Support/
DCFG.h33 typedef PredIterator<Ptr, USE_iterator> Self; typedef
52 inline bool operator==(const Self& x) const { return It == x.It; }
53 inline bool operator!=(const Self& x) const { return !operator==(x); }
61 inline Self& operator++() { // Preincrement
67 inline Self operator++(int) { // Postincrement
68 Self tmp = *this; ++*this; return tmp;
110 typedef SuccIterator<Term_, BB_> Self; typedef
136 inline const Self &operator=(const Self &I) {
146 inline bool operator==(const Self& x) const { return idx == x.idx; }
147 inline bool operator!=(const Self& x) const { return !operator==(x); }
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/Analysis/
DRegionIterator.h87 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 …]
DRegionInfo.h506 typedef block_iterator_wrapper<IsConst> Self; typedef
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Serialization/
DContinuousRangeMap.h110 ContinuousRangeMap &Self; variable
116 explicit Builder(ContinuousRangeMap &Self) : Self(Self) { } in Builder() argument
119 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare()); in ~Builder()
123 Self.Rep.push_back(Val); in insert()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Parse/
DRAIIObjectsForParser.h344 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) in PoisonSEHIdentifiersRAIIObject() argument
345 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), in PoisonSEHIdentifiersRAIIObject()
346 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), in PoisonSEHIdentifiersRAIIObject()
347 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), in PoisonSEHIdentifiersRAIIObject()
348 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
349 Ident__exception_code(Self.Ident__exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
350 Ident__exception_info(Self.Ident__exception_info, NewValue), in PoisonSEHIdentifiersRAIIObject()
351 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
352 Ident___exception_code(Self.Ident___exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
353 Ident___exception_info(Self.Ident___exception_info, NewValue) { in PoisonSEHIdentifiersRAIIObject()
DParseCXXInlineMethods.cpp242 : Self(P), Class(C) {} in LateParsedClass()
245 Self->DeallocateParsedClasses(Class); in ~LateParsedClass()
249 Self->ParseLexedMethodDeclarations(*Class); in ParseLexedMethodDeclarations()
253 Self->ParseLexedMemberInitializers(*Class); in ParseLexedMemberInitializers()
257 Self->ParseLexedMethodDefs(*Class); in ParseLexedMethodDefs()
261 Self->ParseLexedMethodDeclaration(*this); in ParseLexedMethodDeclarations()
265 Self->ParseLexedMethodDef(*this); in ParseLexedMethodDefs()
269 Self->ParseLexedMemberInitializer(*this); in ParseLexedMemberInitializers()
857 explicit UnannotatedTentativeParsingAction(Parser &Self, in UnannotatedTentativeParsingAction() argument
859 : TentativeParsingAction(Self), Self(Self), EndKind(EndKind) { in UnannotatedTentativeParsingAction()
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DExternalASTSource.h373 LazyVector *Self; variable
398 iterator() : Self(0), Position(0) { } in iterator()
400 iterator(LazyVector *Self, int Position) in iterator() argument
401 : Self(Self), Position(Position) { } in iterator()
405 return Self->Loaded.end()[Position];
406 return Self->Local[Position];
411 return &Self->Loaded.end()[Position];
413 return &Self->Local[Position];
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Lex/
DPreprocessingRecord.h380 PreprocessingRecord *Self; variable
403 iterator() : Self(0), Position(0) { } in iterator()
405 iterator(PreprocessingRecord *Self, int Position) in iterator() argument
406 : Self(Self), Position(Position) { } in iterator()
411 Self->LoadedPreprocessedEntities.size() + Position : Position;
412 PPEntityID ID = Self->getPPEntityID(Index, isLoaded);
413 return Self->getPreprocessedEntity(ID);
/freebsd-9-stable/crypto/heimdal/lib/hx509/data/
Dnist-data281 # 4.5.1 Valid Basic Self-Issued Old With New Test1 - Validate Successfully
83 # 4.5.2 Invalid Basic Self-Issued Old With New Test2 - Reject - the end entity certificate has been…
85 # 4.5.3 Valid Basic Self-Issued New With Old Test3 - Validate Successfully
87 # 4.5.4 Valid Basic Self-Issued New With Old Test4 - Validate Successfully
89 # 4.5.5 Invalid Basic Self-Issued New With Old Test5 - Reject - the end entity certificate has been…
91 # 4.5.6 Valid Basic Self-Issued CRL Signing Key Test6 - Validate Successfully
93 # 4.5.7 Invalid Basic Self-Issued CRL Signing Key Test7 - Reject - the end entity certificate has b…
95 # 4.5.8 Invalid Basic Self-Issued CRL Signing Key Test8 - Reject - invalid certification path
125 # 4.6.15 Valid Self-Issued pathLenConstraint Test15 - Validate Successfully
127 # 4.6.16 Invalid Self-Issued pathLenConstraint Test16 - Reject - invalid certification path
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DInheritViz.cpp139 QualType Self = Context.getTypeDeclType(this); in viewInheritance() local
144 sys::fs::createTemporaryFile(Self.getAsString(), "dot", FD, Filename); in viewInheritance()
155 Writer.WriteGraph(Self); in viewInheritance()
DDeclBase.cpp909 NamespaceDecl *Self = static_cast<NamespaceDecl *>(this); in collectAllContexts() local
910 for (NamespaceDecl *N = Self->getMostRecentDecl(); N; in collectAllContexts()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Parse/
DParser.h680 Parser *Self; variable
689 ParseScope(Parser *Self, unsigned ScopeFlags, bool ManageScope = true)
690 : Self(Self) { in Self() argument
692 Self->EnterScope(ScopeFlags); in Self()
694 this->Self = 0; in Self()
700 if (Self) { in Exit()
701 Self->ExitScope(); in Exit()
702 Self = 0; in Exit()
726 ParseScopeFlags(Parser *Self, unsigned ScopeFlags, bool ManageFlags = true);
827 Parser *Self;
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Frontend/
DASTUnit.h424 ASTUnit &Self; variable
427 explicit ConcurrencyCheck(ASTUnit &Self) in ConcurrencyCheck() argument
428 : Self(Self) in ConcurrencyCheck()
430 Self.ConcurrencyCheckValue.start(); in ConcurrencyCheck()
433 Self.ConcurrencyCheckValue.finish(); in ~ConcurrencyCheck()
/freebsd-9-stable/contrib/file/magic/Magdir/
Dmotorola66 >30 string SFX [Self-Extracting LZH SFX archive]
67 >38 string SFX [Self-Extracting LZH SFX archive]
68 >44 string ZIP! [Self-Extracting ZIP SFX archive]
Dmsdos157 >>>(0x3c.l+0x70) search/0x80 WinZip(R)\ Self-Extractor \b, ZIP self-extracting archive (WinZip)
249 >0xe7 string LH/2\ Self-Extract \b, %s
257 >0x1e string Copyright\ 1989-1990\ PKWARE\ Inc. Self-extracting PKZIP archive
260 >0x1e string PKLITE\ Copr. Self-extracting PKZIP archive
300 # TODO: how to add this? >FileSize-34 string Windows\ Self-Installing\ Executable \b, ZIP self-extr…
/freebsd-9-stable/contrib/llvm/include/llvm/IR/
DInstructions.h2492 typedef CaseIteratorT<SwitchInstTy, ConstantIntTy, BasicBlockTy> Self;
2503 static Self fromSuccessorIndex(SwitchInstTy *SI, unsigned SuccessorIndex) {
2507 Self(SI, SuccessorIndex - 1) :
2508 Self(SI, DefaultPseudoIndex);
2535 Self operator++() {
2542 Self operator++(int) {
2543 Self tmp = *this;
2547 Self operator--() {
2556 Self operator--(int) {
2557 Self tmp = *this;
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h1579 ReturnTypesF> Self;
1580 static Self create(ArrayRef<const Matcher<InnerTBase> *> InnerMatchers);
1594 struct Func : public llvm::VariadicFunction<Self, Matcher<InnerTBase>,
1595 &Self::create> {
1612 return Self(InnerMatchers);
/freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCGObjCRuntime.h175 llvm::Value *Self,
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h3749 Sema *Self; variable
3766 explicit ImplicitExceptionSpecification(Sema &Self) in ImplicitExceptionSpecification() argument
3767 : Self(&Self), ComputedEST(EST_BasicNoexcept) { in ImplicitExceptionSpecification()
3768 if (!Self.getLangOpts().CPlusPlus11) in ImplicitExceptionSpecification()
3803 EPI.NoexceptExpr = Self->ActOnCXXBoolLiteral(SourceLocation(), in getEPI()
6156 Sema &Self; variable
6160 ArgumentPackSubstitutionIndexRAII(Sema &Self, int NewSubstitutionIndex) in ArgumentPackSubstitutionIndexRAII() argument
6161 : Self(Self), OldSubstitutionIndex(Self.ArgumentPackSubstitutionIndex) { in ArgumentPackSubstitutionIndexRAII()
6162 Self.ArgumentPackSubstitutionIndex = NewSubstitutionIndex; in ArgumentPackSubstitutionIndexRAII()
6166 Self.ArgumentPackSubstitutionIndex = OldSubstitutionIndex; in ~ArgumentPackSubstitutionIndexRAII()
/freebsd-9-stable/contrib/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp581 SmallPtrSet<Argument*, 8> Self; in AddArgumentAttrs() local
582 Self.insert(A); in AddArgumentAttrs()
583 Attribute::AttrKind R = determinePointerReadAttrs(A, Self); in AddArgumentAttrs()

12