Home
last modified time | relevance | path

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

12345

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp86 Sema &Self; member
124 Self.Context, Self.Context.ARCUnbridgedCastTy, CK_Dependent, in complete()
933 Self.Diag(OpRange.getBegin(), in CheckDynamicCast()
1603 return TryStaticDowncast(Self, in TryStaticReferenceDowncast()
1635 return TryStaticDowncast(Self, in TryStaticPointerDowncast()
2556 Self.Diag(OpRange.getBegin(), in TryReinterpretCast()
2565 Self.Diag(OpRange.getBegin(), in TryReinterpretCast()
2601 if (!Self.getLangOpts().OpenCL && !Self.getLangOpts().SYCLIsDevice) in TryAddressSpaceCast()
2651 if (Self.getLangOpts().OpenCL) { in checkAddressSpaceCast()
3149 Self); in CheckCStyleCast()
[all …]
H A DSemaExprCXX.cpp5014 if (Self.LookupQualifiedName(Res, RD)) { in HasNoThrowOperator()
5040 ASTContext &C = Self.Context; in EvaluateUnaryTypeTrait()
5741 if (Self.RequireCompleteType( in EvaluateBinaryTypeTrait()
5765 if (Self.RequireCompleteType(KeyLoc, RhsT, in EvaluateBinaryTypeTrait()
5817 if (!Self.isCompleteType(KeyLoc, RhsT) || Self.isAbstractType(KeyLoc, RhsT)) in EvaluateBinaryTypeTrait()
5837 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl()); in EvaluateBinaryTypeTrait()
5861 Self.RequireCompleteType(KeyLoc, LhsT, in EvaluateBinaryTypeTrait()
5865 Self.RequireCompleteType(KeyLoc, RhsT, in EvaluateBinaryTypeTrait()
5889 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl()); in EvaluateBinaryTypeTrait()
5957 if (Self.VerifyIntegerConstantExpression( in EvaluateArrayTypeTrait()
[all …]
/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 { in linkPhase1()
70 void JITLinkerBase::linkPhase2(std::unique_ptr<JITLinkerBase> Self, in linkPhase2() argument
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()
127 [S = std::move(Self)]( in linkPhase2()
134 void JITLinkerBase::linkPhase3(std::unique_ptr<JITLinkerBase> Self, in linkPhase3() 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>;
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()
208 inline bool operator<(const Self &RHS) const {
213 int operator-(const Self &RHS) const {
218 inline Self &operator+=(int RHS) {
[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 {
231 inline Self& operator++() {
241 inline Self operator++(int) {
[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.h324 Parser &Self; member
326 DestroyTemplateIdAnnotationsRAIIObj(Parser &Self) : Self(Self) {} in DestroyTemplateIdAnnotationsRAIIObj()
1136 Parser *Self; variable
1146 : Self(Self) { in Self() function
1160 if (Self) { in Exit()
1174 Parser &Self; variable
1180 MultiParseScope(Parser &Self) : Self(Self) {} in MultiParseScope() argument
1323 Parser *Self;
1334 Parser *Self; member
1385 Parser *Self; member
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp245 : Self(P), Class(C) {} in LateParsedClass()
248 Self->DeallocateParsedClasses(Class); in ~LateParsedClass()
260 Self->ParseLexedMethodDefs(*Class); in ParseLexedMethodDefs()
264 Self->ParseLexedAttributes(*Class); in ParseLexedAttributes()
268 Self->ParseLexedPragmas(*Class); in ParseLexedPragmas()
276 Self->ParseLexedMethodDef(*this); in ParseLexedMethodDefs()
288 Self->ParseLexedPragma(*this); in ParseLexedPragmas()
1137 : TentativeParsingAction(Self), Self(Self), EndKind(EndKind) { in UnannotatedTentativeParsingAction()
1140 TentativeParsingAction Inner(Self); in UnannotatedTentativeParsingAction()
1157 Self.Tok = Toks.front(); in RevertAnnotations()
[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()
H A DThreadSafety.cpp1066 Expr *MutexExp, til::LiteralPtr *Self,
1328 til::SExpr *Self) { in getMutexIDs() argument
1563 til::LiteralPtr *Self = nullptr,
1653 til::LiteralPtr *Self, in warnIfMutexHeld() argument
1805 assert(!Self); in handleCall()
1814 Self = Placeholder.first; in handleCall()
1831 A, Exp, D, Self); in handleCall()
1842 Analyzer->getMutexIDs(AssertLocks, A, Exp, D, Self); in handleCall()
1853 Analyzer->getMutexIDs(AssertLocks, A, Exp, D, Self); in handleCall()
1864 Analyzer->getMutexIDs(AssertLocks, A, Exp, D, Self); in handleCall()
[all …]
/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/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/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/clang/include/clang/AST/
H A DExternalASTSource.h527 LazyVector *Self;
529 iterator(LazyVector *Self, int Position)
530 : iterator::iterator_adaptor_base(Position), Self(Self) {}
539 return Self->Loaded.end()[this->I];
540 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 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]
/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/sys/contrib/device-tree/Bindings/iio/adc/
H A Dnxp,imx93-adc.yaml18 also has Self-test logic and Software-initiated calibration.
34 - description: Self-testing Interrupts.
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h170 Self, enumerator
279 case OpenACCClauseKind::Self:
/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Dtesla.yaml7 title: Tesla Full Self Driving(FSD) platforms

12345