Home
last modified time | relevance | path

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

12345

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp62 : Self(S), SrcExpr(src), DestType(destType), in CastOperation()
88 Sema &Self; member
126 Self.Context, Self.Context.ARCUnbridgedCastTy, CK_Dependent, in complete()
128 Self.CurFPFeatureOverrides()); in complete()
157 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange); in checkCastAlign()
161 assert(Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()); in checkObjCConversion()
164 if (Self.ObjC().CheckObjCConversion(OpRange, DestType, src, CCK) == in checkObjCConversion()
175 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get()); in checkNonOverloadPlaceholders()
199 CheckNoDeref(Op.Self, Op.SrcExpr.get()->getType(), Op.ResultType, in ~CheckNoDerefRAII()
207 static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
[all …]
H A DSemaExprCXX.cpp5093 Sema &Self, SourceLocation KeyLoc, ASTContext &C, in HasNoThrowOperator() argument
5104 LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName); in HasNoThrowOperator()
5105 if (Self.LookupQualifiedName(Res, RD)) { in HasNoThrowOperator()
5117 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in HasNoThrowOperator()
5205 static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT, in EvaluateUnaryTypeTrait() argument
5211 ASTContext &C = Self.Context; in EvaluateUnaryTypeTrait()
5229 if (DiagnoseVLAInCXXTypeTrait(Self, TInfo, tok::kw___is_bounded_array)) in EvaluateUnaryTypeTrait()
5237 if (DiagnoseVLAInCXXTypeTrait(Self, TInfo, tok::kw___is_unbounded_array)) in EvaluateUnaryTypeTrait()
5456 CXXDestructorDecl *Destructor = Self.LookupDestructor(RD); in EvaluateUnaryTypeTrait()
5468 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait()
[all …]
H A DSemaExceptionSpec.cpp984 static CanThrowResult canSubStmtsThrow(Sema &Self, const Stmt *S) { in canSubStmtsThrow() argument
989 R = mergeCanThrow(R, Self.canThrow(SubStmt)); in canSubStmtsThrow()
1051 static CanThrowResult canVarDeclThrow(Sema &Self, const VarDecl *VD) { in canVarDeclThrow() argument
1055 if (!VD->isUsableInConstantExpressions(Self.Context)) in canVarDeclThrow()
1057 CT = mergeCanThrow(CT, Self.canThrow(Init)); in canVarDeclThrow()
1060 if (VD->needsDestruction(Self.Context) == QualType::DK_cxx_destructor) { in canVarDeclThrow()
1065 CT, Sema::canCalleeThrow(Self, nullptr, Dtor, VD->getLocation())); in canVarDeclThrow()
1074 CT = mergeCanThrow(CT, canVarDeclThrow(Self, HD)); in canVarDeclThrow()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp25 void JITLinkerBase::linkPhase1(std::unique_ptr<JITLinkerBase> Self) { in linkPhase1() argument
55 linkPhase2(std::move(Self), nullptr); in linkPhase1()
61 [S = std::move(Self)](AllocResult AR) mutable {
70 void JITLinkerBase::linkPhase2(std::unique_ptr<JITLinkerBase> Self, in linkPhase2()
86 return abandonAllocAndBailOut(std::move(Self), std::move(Err)); in linkPhase2()
92 return abandonAllocAndBailOut(std::move(Self), std::move(Err)); in linkPhase2()
104 auto &TmpSelf = *Self; in linkPhase2()
105 TmpSelf.linkPhase3(std::move(Self), AsyncLookupResult()); in linkPhase2()
122 // [Self=std::move(Self)](Expecte in linkPhase2()
62 linkPhase2(std::unique_ptr<JITLinkerBase> Self,AllocResult AR) linkPhase2() argument
126 linkPhase3(std::unique_ptr<JITLinkerBase> Self,Expected<AsyncLookupResult> LR) linkPhase3() argument
175 linkPhase4(std::unique_ptr<JITLinkerBase> Self,FinalizeResult FR) linkPhase4() argument
257 abandonAllocAndBailOut(std::unique_ptr<JITLinkerBase> Self,Error Err) abandonAllocAndBailOut() argument
[all...]
H A DJITLinkGeneric.h66 void linkPhase1(std::unique_ptr<JITLinkerBase> Self);
72 void linkPhase2(std::unique_ptr<JITLinkerBase> Self, AllocResult AR);
80 void linkPhase3(std::unique_ptr<JITLinkerBase> Self,
85 void linkPhase4(std::unique_ptr<JITLinkerBase> Self, FinalizeResult FR);
98 void abandonAllocAndBailOut(std::unique_ptr<JITLinkerBase> Self, Error Err);
H A DELF_loongarch.cpp82 using Self = ELFLinkGraphBuilder_loongarch<ELFT>; in addRelocations() typedef
85 &Self::addSingleRelocation)) in addRelocations()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DContinuousRangeMap.h112 ContinuousRangeMap &Self; variable
115 explicit Builder(ContinuousRangeMap &Self) : Self(Self) {} in Builder() argument
120 llvm::sort(Self.Rep, Compare()); in ~Builder()
121 Self.Rep.erase( in ~Builder()
123 Self.Rep.begin(), Self.Rep.end(), in ~Builder()
131 Self.Rep.end()); in ~Builder()
135 Self.Rep.push_back(Val); in insert()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DCFG.h51 using Self = PredIterator<Ptr, USE_iterator>;
72 inline bool operator==(const Self& x) const { return It == x.It; }
73 inline bool operator!=(const Self& x) const { return !operator==(x); }
81 inline Self& operator++() { // Preincrement
87 inline Self operator++(int) { // Postincrement
88 Self tmp = *this; ++*this; return tmp;
150 using Self = SuccIterator<InstructionT, BlockT>; variable
160 Self It;
163 explicit SuccessorProxy(const Self &It) : It(It) {} in SuccessorProxy()
201 inline bool operator==(const Self &x) const { return Idx == x.Idx; }
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionIterator.h106 using Self = RNSuccIterator<NodeRef, BlockT, RegionT>;
126 inline bool operator==(const Self& x) const {
134 inline bool operator!=(const Self& x) const { return !operator==(x); }
142 inline Self& operator++() {
156 inline Self operator++(int) {
157 Self tmp = *this;
184 using Self = RNSuccIterator<FlatIt<NodeRef>, BlockT, RegionT>; variable
209 inline bool operator==(const Self& x) const {
216 inline bool operator!=(const Self& x) const { return !operator==(x); }
231 inline Self& operator++() {
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h405 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) in PoisonSEHIdentifiersRAIIObject() argument
406 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), in PoisonSEHIdentifiersRAIIObject()
407 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), in PoisonSEHIdentifiersRAIIObject()
408 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), in PoisonSEHIdentifiersRAIIObject()
409 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
410 Ident__exception_code(Self.Ident__exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
411 Ident__exception_info(Self.Ident__exception_info, NewValue), in PoisonSEHIdentifiersRAIIObject()
412 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
413 Ident___exception_code(Self.Ident___exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
414 Ident___exception_info(Self.Ident___exception_info, NewValue) { in PoisonSEHIdentifiersRAIIObject()
H A DParser.h339 Parser &Self; member
341 DestroyTemplateIdAnnotationsRAIIObj(Parser &Self) : Self(Self) {} in DestroyTemplateIdAnnotationsRAIIObj()
342 ~DestroyTemplateIdAnnotationsRAIIObj() { Self.MaybeDestroyTemplateIds(); } in ~DestroyTemplateIdAnnotationsRAIIObj()
346 Parser &Self; member
349 DelayTemplateIdDestructionRAII(Parser &Self, in DelayTemplateIdDestructionRAII()
351 : Self(Self), in DelayTemplateIdDestructionRAII()
352 PrevDelayTemplateIdDestruction(Self.DelayTemplateIdDestruction) { in DelayTemplateIdDestructionRAII()
353 Self.DelayTemplateIdDestruction = DelayTemplateIdDestruction; in DelayTemplateIdDestructionRAII()
357 Self.DelayTemplateIdDestruction = PrevDelayTemplateIdDestruction; in ~DelayTemplateIdDestructionRAII()
1172 Parser *Self; variable
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp289 : Self(P), Class(C) {} in LateParsedClass()
292 Self->DeallocateParsedClasses(Class); in ~LateParsedClass()
296 Self->ParseLexedMethodDeclarations(*Class); in ParseLexedMethodDeclarations()
300 Self->ParseLexedMemberInitializers(*Class); in ParseLexedMemberInitializers()
304 Self->ParseLexedMethodDefs(*Class); in ParseLexedMethodDefs()
308 Self->ParseLexedAttributes(*Class); in ParseLexedAttributes()
312 Self->ParseLexedPragmas(*Class); in ParseLexedPragmas()
316 Self->ParseLexedMethodDeclaration(*this); in ParseLexedMethodDeclarations()
320 Self->ParseLexedMethodDef(*this); in ParseLexedMethodDefs()
324 Self->ParseLexedMemberInitializer(*this); in ParseLexedMemberInitializers()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DConstructionContext.cpp32 const ConstructionContextLayer *Self = this; in isStrictlyMoreSpecificThan() local
35 return Self; in isStrictlyMoreSpecificThan()
36 if (!Self || !(Self->Item == Other->Item)) in isStrictlyMoreSpecificThan()
38 Self = Self->getParent(); in isStrictlyMoreSpecificThan()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp47 CodeGeneratorImpl &Self; member
49 HandlingTopLevelDeclRAII(CodeGeneratorImpl &Self, in HandlingTopLevelDeclRAII()
51 : Self(Self), EmitDeferred(EmitDeferred) { in HandlingTopLevelDeclRAII()
52 ++Self.HandlingTopLevelDecls; in HandlingTopLevelDeclRAII()
55 unsigned Level = --Self.HandlingTopLevelDecls; in ~HandlingTopLevelDeclRAII()
57 Self.EmitDeferredDecls(); in ~HandlingTopLevelDeclRAII()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessingRecord.h436 PreprocessingRecord *Self; variable
438 iterator(PreprocessingRecord *Self, int Position) in iterator() argument
439 : iterator::iterator_adaptor_base(Position), Self(Self) {} in iterator()
447 Self->LoadedPreprocessedEntities.size() + this->I : this->I;
448 PPEntityID ID = Self->getPPEntityID(Index, isLoaded);
449 return Self->getPreprocessedEntity(ID);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DInheritViz.cpp137 QualType Self = Context.getTypeDeclType(this); in viewInheritance() local
142 Self.getAsString(), "dot", FD, Filename)) { in viewInheritance()
152 Writer.WriteGraph(Self); in viewInheritance()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h57 template <class Self, class R>
60 Self *self() { return static_cast<Self *>(this); } in self()
184 template <class Self>
185 class VisitReducer : public Traversal<Self, VisitReducerBase>,
300 Self Visitor; in visit()
309 template <typename Self>
312 Self *self() { return reinterpret_cast<Self *>(this); } in self()
404 template <typename Self, typename StreamType>
421 Self printer; in print()
426 Self *self() { return reinterpret_cast<Self *>(this); } in self()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DBitTracker.h229 bool meet(const BitValue &V, const BitRef &Self) { in meet()
231 if (Type == Ref && RefI == Self) // Bottom.meet(V) = Bottom (i.e. This) in meet()
248 RefI = Self; in meet()
255 static BitValue self(const BitRef &Self = BitRef());
280 BitTracker::BitValue::self(const BitRef &Self) { in self() argument
281 return BitValue(Self.Reg, Self.Pos); in self()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExternalASTSource.h549 LazyVector *Self;
551 iterator(LazyVector *Self, int Position)
552 : iterator::iterator_adaptor_base(Position), Self(Self) {}
561 return Self->Loaded.end()[this->I];
562 return Self->Local.begin()[this->I];
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpciph_rc5.txt25 #Self generated. Bigger key.
48 #Self generated. Bigger key.
73 #Self generated. Bigger key.
/freebsd/contrib/file/magic/Magdir/
H A Dmotorola72 >30 string SFX [Self-Extracting LZH SFX archive]
73 >38 string SFX [Self-Extracting LZH SFX archive]
74 >44 string ZIP! [Self-Extracting ZIP SFX archive]
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTUnit.h411 ASTUnit &Self; variable
414 explicit ConcurrencyCheck(ASTUnit &Self) : Self(Self) { in ConcurrencyCheck() argument
415 Self.ConcurrencyCheckValue.start(); in ConcurrencyCheck()
419 Self.ConcurrencyCheckValue.finish(); in ~ConcurrencyCheck()
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc111 HMODULE Self = HMODULE(GetCurrentProcess());
112 if (!GetProcessModules(Self, Bytes))
124 if (!GetProcessModules(Self, Bytes, Handles.data()))
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h482 using Self = CastInfo<
493 if (!Self::isPossible(f))
494 return Self::castFailed();
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCasting.h344 using Self = detail::SelfType<Derived, UniquePtrCast<To, From>>;
355 if (!Self::isPossible(f.get()))
477 using Self = CastInfo<To, From, Enable>;
493 if (!Self::isPossible(f))
504 using Self = CastInfo<To, From>;

12345