/netbsd-src/external/gpl3/gdb/dist/gnulib/import/m4/ |
H A D | gnulib-comp.m4 | 45 # Code from module absolute-header: 46 # Code from module accept: 47 # Code from module alloca: 48 # Code from module alloca-opt: 49 # Code from module arpa_inet: 50 # Code from module assure: 51 # Code from module at-internal: 52 # Code from module attribute: 53 # Code from module basename-lgpl: 54 # Code from module bind: [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | StmtDataCollectors.td | 2 code Code = [{ 12 code Code = [{ 19 code Code = [{ 24 code Code = [{ 29 code Code = [{ 34 code Code = [{ 43 code Code = [{ 69 code Code = [{ 74 code Code = [{ 81 code Code = [{ [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
H A D | Parser.cpp | 72 : Code(MatcherCode), StartOfLine(MatcherCode), Error(Error) { in CodeTokenizer() 78 : Code(MatcherCode), StartOfLine(MatcherCode), Error(Error), in CodeTokenizer() 114 if (CodeCompletionLocation && CodeCompletionLocation <= Code.data()) { in getNextToken() 121 if (Code.empty()) { in getNextToken() 127 switch (Code[0]) { in getNextToken() 129 Code = Code.drop_until([](char c) { return c == '\n'; }); in getNextToken() 133 Result.Text = Code.substr(0, 1); in getNextToken() 134 Code = Code.drop_front(); in getNextToken() 138 Result.Text = Code.substr(0, 1); in getNextToken() 139 Code = Code.drop_front(); in getNextToken() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
H A D | ASTWriterStmt.cpp | 36 serialization::StmtCode Code; member in clang::ASTStmtWriter 42 Code(serialization::STMT_NULL_PTR), AbbrevToUse(0) {} in ASTStmtWriter() 47 assert(Code != serialization::STMT_NULL_PTR && in Emit() 49 return Record.EmitStmt(Code, AbbrevToUse); in Emit() 78 Code = serialization::STMT_NULL; in VisitNullStmt() 88 Code = serialization::STMT_COMPOUND; in VisitCompoundStmt() 107 Code = serialization::STMT_CASE; in VisitCaseStmt() 113 Code = serialization::STMT_DEFAULT; in VisitDefaultStmt() 122 Code = serialization::STMT_LABEL; in VisitLabelStmt() 131 Code = serialization::STMT_ATTRIBUTED; in VisitAttributedStmt() [all …]
|
H A D | ASTWriterDecl.cpp | 39 serialization::DeclCode Code; member in clang::ASTDeclWriter 46 Code((serialization::DeclCode)0), AbbrevToUse(0) {} in ASTDeclWriter() 49 if (!Code) in Emit() 52 return Record.Emit(Code, AbbrevToUse); in Emit() 342 Code = serialization::DECL_PRAGMA_COMMENT; in VisitPragmaCommentDecl() 354 Code = serialization::DECL_PRAGMA_DETECT_MISMATCH; in VisitPragmaDetectMismatchDecl() 398 Code = serialization::DECL_TYPEDEF; in VisitTypedefDecl() 404 Code = serialization::DECL_TYPEALIAS; in VisitTypeAliasDecl() 471 Code = serialization::DECL_ENUM; in VisitEnumDecl() 506 Code = serialization::DECL_RECORD; in VisitRecordDecl() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/ |
H A D | Extract.cpp | 70 CodeRangeASTSelection Code, in initiate() argument 75 if (!Code.isInFunctionLikeBodyOfCode()) in initiate() 79 if (Code.size() == 1) { in initiate() 81 if (isSimpleExpression(dyn_cast<Expr>(Code[0]))) in initiate() 86 if (const auto *PRE = dyn_cast<ObjCPropertyRefExpr>(Code[0])) { in initiate() 93 return ExtractFunction(std::move(Code), DeclName); in initiate() 100 const Decl *ParentDecl = Code.getFunctionLikeNearestParent(); in createSourceReplacements() 104 SourceRange ExtractedRange(Code[0]->getBeginLoc(), in createSourceReplacements() 105 Code[Code.size() - 1]->getEndLoc()); in createSourceReplacements() 119 bool IsExpr = Code.size() == 1 && isa<Expr>(Code[0]); in createSourceReplacements() [all …]
|
/netbsd-src/external/ibm-public/postfix/dist/src/util/ |
H A D | ip_match.ref | 2 Code: 1.2.3.4 16 Code: 1.2.[3].4 24 Code: 1.2.[1..127;128..255].5 30 Code: 1.2.3.[4] 42 Code: 1.2.[3..11].5 49 Code: 1.2.[3;5;7;9;11].5 57 Code: [1;2].3.4.5 62 Code: [1;2].3.4.5
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
H A D | TestModuleFileExtension.cpp | 97 llvm::hash_code Code) const { in hashExtension() 99 Code = llvm::hash_combine(Code, BlockName); in hashExtension() 100 Code = llvm::hash_combine(Code, MajorVersion); in hashExtension() 101 Code = llvm::hash_combine(Code, MinorVersion); in hashExtension() 102 Code = llvm::hash_combine(Code, UserInfo); in hashExtension() 105 return Code; in hashExtension()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Testing/Support/ |
H A D | Annotations.cpp | 19 static void require(bool Assertion, const char *Msg, llvm::StringRef Code) { in require() argument 21 llvm::errs() << "Annotated testcase: " << Msg << "\n" << Code << "\n"; in require() 33 Code.reserve(Text.size()); in Annotations() 36 Points[Name.getValueOr("")].push_back(Code.size()); in Annotations() 41 OpenRanges.emplace_back(Name.getValueOr(""), Code.size()); in Annotations() 50 R.End = Code.size(); in Annotations() 61 Code.push_back(Text.front()); in Annotations() 71 "expected exactly one point", Code); in point() 85 "expected exactly one range", Code); in range()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 1374 inline bool isSignedIntSetCC(CondCode Code) { in isSignedIntSetCC() argument 1375 return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE; in isSignedIntSetCC() 1380 inline bool isUnsignedIntSetCC(CondCode Code) { in isUnsignedIntSetCC() argument 1381 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE; in isUnsignedIntSetCC() 1386 inline bool isIntEqualitySetCC(CondCode Code) { in isIntEqualitySetCC() argument 1387 return Code == SETEQ || Code == SETNE; in isIntEqualitySetCC()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Inclusions/ |
H A D | HeaderIncludes.cpp | 41 StringRef FileName, StringRef Code, const IncludeStyle &Style, in getOffsetAfterTokenSequence() argument 44 SourceManagerForFile VirtualSM(FileName, Code); in getOffsetAfterTokenSequence() 82 StringRef Code, in getOffsetAfterHeaderGuardsAndComments() argument 91 FileName, Code, Style, in getOffsetAfterHeaderGuardsAndComments() 158 unsigned getMaxHeaderInsertionOffset(StringRef FileName, StringRef Code, in getMaxHeaderInsertionOffset() argument 161 FileName, Code, Style, in getMaxHeaderInsertionOffset() 268 HeaderIncludes::HeaderIncludes(StringRef FileName, StringRef Code, in HeaderIncludes() argument 270 : FileName(FileName), Code(Code), FirstIncludeOffset(-1), in HeaderIncludes() 272 getOffsetAfterHeaderGuardsAndComments(FileName, Code, Style)), in HeaderIncludes() 275 FileName, Code.drop_front(MinInsertOffset), Style)), in HeaderIncludes() [all …]
|
/netbsd-src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
H A D | DotZLib.csproj | 94 SubType = "Code" 99 SubType = "Code" 104 SubType = "Code" 109 SubType = "Code" 114 SubType = "Code" 119 SubType = "Code" 124 SubType = "Code" 129 SubType = "Code" 134 SubType = "Code"
|
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/ |
H A D | DotZLib.csproj | 94 SubType = "Code" 99 SubType = "Code" 104 SubType = "Code" 109 SubType = "Code" 114 SubType = "Code" 119 SubType = "Code" 124 SubType = "Code" 129 SubType = "Code" 134 SubType = "Code"
|
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/ |
H A D | DotZLib.csproj | 94 SubType = "Code" 99 SubType = "Code" 104 SubType = "Code" 109 SubType = "Code" 114 SubType = "Code" 119 SubType = "Code" 124 SubType = "Code" 129 SubType = "Code" 134 SubType = "Code"
|
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/ |
H A D | DotZLib.csproj | 94 SubType = "Code" 99 SubType = "Code" 104 SubType = "Code" 109 SubType = "Code" 114 SubType = "Code" 119 SubType = "Code" 124 SubType = "Code" 129 SubType = "Code" 134 SubType = "Code"
|
/netbsd-src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/ |
H A D | DotZLib.csproj | 94 SubType = "Code" 99 SubType = "Code" 104 SubType = "Code" 109 SubType = "Code" 114 SubType = "Code" 119 SubType = "Code" 124 SubType = "Code" 129 SubType = "Code" 134 SubType = "Code"
|
/netbsd-src/external/bsd/flex/dist/doc/ |
H A D | flex.info-2 | 199 * -+: Code-Level And API Options. 209 * --array: Code-Level And API Options. 214 * --bison-bridge: Code-Level And API Options. 216 * --bison-locations: Code-Level And API Options. 218 * --c++: Code-Level And API Options. 239 * --main: Code-Level And API Options. 246 * --noline: Code-Level And API Options. 248 * --nounistd: Code-Level And API Options. 251 * --option-ansi-definitions: Code-Level And API Options. 253 * --option-ansi-prototypes: Code-Level And API Options. [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/ |
H A D | Parser.h | 207 static bool parseExpression(StringRef &Code, Sema *S, 210 static bool parseExpression(StringRef &Code, Sema *S, VariantValue *Value, in parseExpression() argument 212 return parseExpression(Code, S, nullptr, Value, Error); in parseExpression() 214 static bool parseExpression(StringRef &Code, VariantValue *Value, in parseExpression() argument 216 return parseExpression(Code, nullptr, Value, Error); in parseExpression() 231 completeExpression(StringRef &Code, unsigned CompletionOffset, Sema *S, 234 completeExpression(StringRef &Code, unsigned CompletionOffset, Sema *S) { in completeExpression() argument 235 return completeExpression(Code, CompletionOffset, S, nullptr); in completeExpression() 238 completeExpression(StringRef &Code, unsigned CompletionOffset) { in completeExpression() argument 239 return completeExpression(Code, CompletionOffset, nullptr); in completeExpression()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-format/ |
H A D | ClangFormat.cpp | 200 static bool fillRanges(MemoryBuffer *Code, in fillRanges() argument 209 FileID ID = createInMemoryFile("<irrelevant>", *Code, Sources, Files, in fillRanges() 246 if (Offsets[i] >= Code->getBufferSize()) { in fillRanges() 254 if (Offsets[i] + Lengths[i] > Code->getBufferSize()) { in fillRanges() 311 const std::unique_ptr<llvm::MemoryBuffer> &Code) { in emitReplacementWarnings() argument 318 const char *StartBuf = Code->getBufferStart(); in emitReplacementWarnings() 371 std::unique_ptr<llvm::MemoryBuffer> Code = std::move(CodeOrErr.get()); in format() local 372 if (Code->getBufferSize() == 0) in format() 375 StringRef BufStr = Code->getBuffer(); in format() 389 if (fillRanges(Code.get(), Ranges)) in format() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/Extract/ |
H A D | Extract.h | 28 CodeRangeASTSelection Code, 34 ExtractFunction(CodeRangeASTSelection Code, Optional<std::string> DeclName) in ExtractFunction() argument 35 : Code(std::move(Code)), in ExtractFunction() 41 CodeRangeASTSelection Code; variable
|
/netbsd-src/external/gpl3/autoconf/dist/ |
H A D | COPYING.EXCEPTION | 19 "Covered Code" is the source or object code of a version of Autoconf 22 "Normally Copied Code" for a version of Autoconf means all parts of 23 its Covered Code which that version can copy from its code (i.e., not 27 "Ineligible Code" is Covered Code that is not Normally Copied Code. 33 by modifying Autoconf you cause any Ineligible Code of the version you 34 received to become Normally Copied Code of your modified version, then
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
H A D | ByteCodeEmitter.cpp | 74 Func->setCode(NextLocalOffset, std::move(Code), std::move(SrcMap), in compileFunc() 88 const size_t Target = Code.size(); in emitLabel() 96 void *Location = Code.data() + Reloc - sizeof(int32_t); in emitLabel() 106 const int64_t Position = Code.size() + sizeof(Opcode) + sizeof(int32_t); in getOffset() 131 if (Code.size() + Size > std::numeric_limits<unsigned>::max()) { in emitOp() 135 Code.insert(Code.end(), Data, Data + Size); in emitOp() 142 SrcMap.emplace_back(Code.size(), SI); in emitOp()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/ |
H A D | AtomicChange.cpp | 89 bool violatesColumnLimit(llvm::StringRef Code, unsigned ColumnLimit, in violatesColumnLimit() argument 91 auto StartPos = Code.rfind('\n', Start); in violatesColumnLimit() 94 auto EndPos = Code.find("\n", End); in violatesColumnLimit() 96 EndPos = Code.size(); in violatesColumnLimit() 99 Code.substr(StartPos, EndPos - StartPos).split(Lines, '\n'); in violatesColumnLimit() 107 getRangesForFormating(llvm::StringRef Code, unsigned ColumnLimit, in getRangesForFormating() argument 123 R.getOffset() > 0 && R.getOffset() <= Code.size() && in getRangesForFormating() 124 Code[R.getOffset() - 1] == '\n') in getRangesForFormating() 131 violatesColumnLimit(Code, ColumnLimit, Start, End)) in getRangesForFormating() 144 createReplacementsForHeaders(llvm::StringRef FilePath, llvm::StringRef Code, in createReplacementsForHeaders() argument [all …]
|
/netbsd-src/external/bsd/byacc/dist/test/ |
H A D | btyacc_demo.y | 18 typedef int Code; typedef 45 Code *code; 211 extern void finish_fn_def(Decl *fn_decl, Code *block); 226 extern Code * build_expr_code(Expr *expr); 227 extern Code * build_if(Expr *cond_expr, Code *then_stmt, Code *else_stmt); 228 extern Code * code_append(Code *stmt_list, Code *stmt);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
H A D | StringMatcher.cpp | 61 StringRef Code = Matches[0]->second; in EmitStringMatcherForChar() local 63 std::pair<StringRef, StringRef> Split = Code.split('\n'); in EmitStringMatcherForChar() 66 Code = Split.second; in EmitStringMatcherForChar() 67 while (!Code.empty()) { in EmitStringMatcherForChar() 68 Split = Code.split('\n'); in EmitStringMatcherForChar() 70 Code = Split.second; in EmitStringMatcherForChar()
|