| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaCast.cpp | 59 : Self(S), SrcExpr(src), DestType(destType), in CastOperation() 72 Sema &Self; member 110 Self.Context, Self.Context.ARCUnbridgedCastTy, CK_Dependent, in complete() 112 Self.CurFPFeatureOverrides()); in complete() 141 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange); in checkCastAlign() 145 assert(Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()); in checkObjCConversion() 148 if (Self.CheckObjCConversion(OpRange, DestType, src, CCK) == in checkObjCConversion() 159 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get()); in checkNonOverloadPlaceholders() 183 CheckNoDeref(Op.Self, Op.SrcExpr.get()->getType(), Op.ResultType, in ~CheckNoDerefRAII() 191 static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr, [all …]
|
| H A D | SemaExprCXX.cpp | 4726 Sema &Self, SourceLocation KeyLoc, ASTContext &C, in HasNoThrowOperator() argument 4737 LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName); in HasNoThrowOperator() 4738 if (Self.LookupQualifiedName(Res, RD)) { in HasNoThrowOperator() 4750 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in HasNoThrowOperator() 4760 static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT, in EvaluateUnaryTypeTrait() argument 4764 ASTContext &C = Self.Context; in EvaluateUnaryTypeTrait() 4989 CXXDestructorDecl *Destructor = Self.LookupDestructor(RD); in EvaluateUnaryTypeTrait() 5001 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait() 5043 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, in EvaluateUnaryTypeTrait() 5056 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, in EvaluateUnaryTypeTrait() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| H A D | ContinuousRangeMap.h | 112 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | CFG.h | 52 using Self = PredIterator<Ptr, USE_iterator>; 73 inline bool operator==(const Self& x) const { return It == x.It; } 74 inline bool operator!=(const Self& x) const { return !operator==(x); } 82 inline Self& operator++() { // Preincrement 88 inline Self operator++(int) { // Postincrement 89 Self tmp = *this; ++*this; return tmp; 151 using Self = SuccIterator<InstructionT, BlockT>; variable 161 Self It; 164 explicit SuccessorProxy(const Self &It) : It(It) {} in SuccessorProxy() 202 inline bool operator==(const Self &x) const { return Idx == x.Idx; } [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | RegionIterator.h | 106 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
| H A D | RAIIObjectsForParser.h | 370 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) in PoisonSEHIdentifiersRAIIObject() argument 371 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), in PoisonSEHIdentifiersRAIIObject() 372 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), in PoisonSEHIdentifiersRAIIObject() 373 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), in PoisonSEHIdentifiersRAIIObject() 374 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject() 375 Ident__exception_code(Self.Ident__exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject() 376 Ident__exception_info(Self.Ident__exception_info, NewValue), in PoisonSEHIdentifiersRAIIObject() 377 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject() 378 Ident___exception_code(Self.Ident___exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject() 379 Ident___exception_info(Self.Ident___exception_info, NewValue) { in PoisonSEHIdentifiersRAIIObject()
|
| H A D | Parser.h | 295 Parser &Self; member 297 DestroyTemplateIdAnnotationsRAIIObj(Parser &Self) : Self(Self) {} in DestroyTemplateIdAnnotationsRAIIObj() 298 ~DestroyTemplateIdAnnotationsRAIIObj() { Self.MaybeDestroyTemplateIds(); } in ~DestroyTemplateIdAnnotationsRAIIObj() 1081 Parser *Self; variable 1089 ParseScope(Parser *Self, unsigned ScopeFlags, bool EnteredScope = true, 1091 : Self(Self) { in Self() function 1093 Self->EnterScope(ScopeFlags); in Self() 1096 Self->incrementMSManglingNumber(); in Self() 1098 this->Self = nullptr; in Self() 1105 if (Self) { in Exit() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseCXXInlineMethods.cpp | 229 : Self(P), Class(C) {} in LateParsedClass() 232 Self->DeallocateParsedClasses(Class); in ~LateParsedClass() 236 Self->ParseLexedMethodDeclarations(*Class); in ParseLexedMethodDeclarations() 240 Self->ParseLexedMemberInitializers(*Class); in ParseLexedMemberInitializers() 244 Self->ParseLexedMethodDefs(*Class); in ParseLexedMethodDefs() 248 Self->ParseLexedAttributes(*Class); in ParseLexedAttributes() 252 Self->ParseLexedPragmas(*Class); in ParseLexedPragmas() 256 Self->ParseLexedMethodDeclaration(*this); in ParseLexedMethodDeclarations() 260 Self->ParseLexedMethodDef(*this); in ParseLexedMethodDefs() 264 Self->ParseLexedMemberInitializer(*this); in ParseLexedMemberInitializers() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | ConstructionContext.cpp | 32 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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | ModuleBuilder.cpp | 45 CodeGeneratorImpl &Self; member 47 HandlingTopLevelDeclRAII(CodeGeneratorImpl &Self, in HandlingTopLevelDeclRAII() 49 : Self(Self), EmitDeferred(EmitDeferred) { in HandlingTopLevelDeclRAII() 50 ++Self.HandlingTopLevelDecls; in HandlingTopLevelDeclRAII() 53 unsigned Level = --Self.HandlingTopLevelDecls; in ~HandlingTopLevelDeclRAII() 55 Self.EmitDeferredDecls(); in ~HandlingTopLevelDeclRAII()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | JITLinkGeneric.cpp | 25 void JITLinkerBase::linkPhase1(std::unique_ptr<JITLinkerBase> Self) { in linkPhase1() argument 84 auto &TmpSelf = *Self; in linkPhase1() 85 TmpSelf.linkPhase2(std::move(Self), AsyncLookupResult(), std::move(Layout)); in linkPhase1() 108 [S = std::move(Self), L = std::move(Layout)]( in linkPhase1() 116 void JITLinkerBase::linkPhase2(std::unique_ptr<JITLinkerBase> Self, in linkPhase2() argument 161 auto *UnownedSelf = Self.release(); in linkPhase2() 163 std::unique_ptr<JITLinkerBase> Self(UnownedSelf); in linkPhase2() local 164 UnownedSelf->linkPhase3(std::move(Self), std::move(Err)); in linkPhase2() 170 void JITLinkerBase::linkPhase3(std::unique_ptr<JITLinkerBase> Self, Error Err) { in linkPhase3() argument
|
| H A D | JITLinkGeneric.h | 69 void linkPhase1(std::unique_ptr<JITLinkerBase> Self); 77 void linkPhase2(std::unique_ptr<JITLinkerBase> Self, 83 void linkPhase3(std::unique_ptr<JITLinkerBase> Self, Error Err);
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| H A D | PreprocessingRecord.h | 436 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);
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyTraverse.h | 57 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()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/data/ |
| H A D | nist-data2 | 81 # 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | BitTracker.h | 229 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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | ExternalASTSource.h | 521 LazyVector *Self; 523 iterator(LazyVector *Self, int Position) 524 : iterator::iterator_adaptor_base(Position), Self(Self) {} 533 return Self->Loaded.end()[this->I]; 534 return Self->Local.begin()[this->I];
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| H A D | LLJIT.cpp | 389 static void registerAtExitHelper(void *Self, void (*F)(void *), void *Ctx, in registerAtExitHelper() argument 395 static_cast<GenericLLVMIRPlatformSupport *>(Self)->AtExitMgr.registerAtExit( in registerAtExitHelper() 399 static void runAtExitsHelper(void *Self, void *DSOHandle) { in runAtExitsHelper() argument 404 static_cast<GenericLLVMIRPlatformSupport *>(Self)->AtExitMgr.runAtExits( in runAtExitsHelper() 740 static void registerAtExitHelper(void *Self, void (*F)(void *), void *Ctx, in registerAtExitHelper() argument 742 static_cast<MachOPlatformSupport *>(Self)->AtExitMgr.registerAtExit( in registerAtExitHelper() 746 static void runAtExitsHelper(void *Self, void *DSOHandle) { in runAtExitsHelper() argument 747 static_cast<MachOPlatformSupport *>(Self)->AtExitMgr.runAtExits(DSOHandle); in runAtExitsHelper() 782 static void *dlopenHelper(void *Self, const char *Path, int Mode) { in dlopenHelper() argument 783 return static_cast<MachOPlatformSupport *>(Self)->jit_dlopen(Path, Mode); in dlopenHelper() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | InheritViz.cpp | 137 QualType Self = Context.getTypeDeclType(this); in viewInheritance() local 142 Self.getAsString(), "dot", FD, Filename)) { in viewInheritance() 152 Writer.WriteGraph(Self); in viewInheritance()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | ItaniumManglingCanonicalizer.cpp | 162 CanonicalizerAllocator &Self; member 164 return Self.makeNodeSimple<T>(std::forward<Args>(As)...); in make() 197 CanonicalizerAllocator &Self; member 199 Node *StdNamespace = Self.makeNode<itanium_demangle::NameType>("std"); in make() 202 return Self.makeNode<itanium_demangle::NestedName>(StdNamespace, Child); in make()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/ |
| H A D | evpciph_rc5.txt | 25 #Self generated. Bigger key. 48 #Self generated. Bigger key. 73 #Self generated. Bigger key.
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | motorola | 66 >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]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| H A D | ASTUnit.h | 408 ASTUnit &Self; variable 411 explicit ConcurrencyCheck(ASTUnit &Self) : Self(Self) { in ConcurrencyCheck() argument 412 Self.ConcurrencyCheckValue.start(); in ConcurrencyCheck() 416 Self.ConcurrencyCheckValue.finish(); in ~ConcurrencyCheck()
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| H A D | FuzzerUtilFuchsia.cpp | 227 zx_handle_t Self = _zx_process_self(); in CrashHandler() local 229 ExitOnErr(_zx_task_bind_exception_port(Self, Port.Handle, kFuzzingCrash, in CrashHandler() 247 ExitOnErr(_zx_object_get_child(Self, Packet.exception.tid, in CrashHandler()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
| H A D | DynamicLibrary.inc | 114 HMODULE Self = HMODULE(GetCurrentProcess()); 115 if (!GetProcessModules(Self, Bytes)) 127 if (!GetProcessModules(Self, Bytes, Handles.data()))
|