Searched refs:Code (Results 26 - 50 of 177) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.cpp41 m_idx_offset = abbrevDeclaration.Code();
42 else if (prev_abbr_code + 1 != abbrevDeclaration.Code()) {
46 prev_abbr_code = abbrevDeclaration.Code();
59 if (pos->Code() == abbrCode)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCXCOFFStreamer.cpp68 SmallString<256> Code; local
69 raw_svector_ostream VecOS(Code);
76 DF->getContents().append(Code.begin(), Code.end());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp89 bool violatesColumnLimit(llvm::StringRef Code, unsigned ColumnLimit, argument
91 auto StartPos = Code.rfind('\n', Start);
94 auto EndPos = Code.find("\n", End);
96 EndPos = Code.size();
99 Code.substr(StartPos, EndPos - StartPos).split(Lines, '\n');
107 getRangesForFormating(llvm::StringRef Code, unsigned ColumnLimit, argument
123 R.getOffset() > 0 && R.getOffset() <= Code.size() &&
124 Code[R.getOffset() - 1] == '\n')
131 violatesColumnLimit(Code, ColumnLimit, Start, End))
144 createReplacementsForHeaders(llvm::StringRef FilePath, llvm::StringRef Code, argument
295 applyAtomicChanges(llvm::StringRef FilePath, llvm::StringRef Code, llvm::ArrayRef<AtomicChange> Changes, const ApplyChangesSpec &Spec) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DAnnotations.h28 /// StringRef Code = Example.code(); // annotations stripped.
65 llvm::StringRef code() const { return Code; }
80 std::string Code; member in class:llvm::Annotations
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCWin64EH.h1 //===- MCWin64EH.h - Machine Code Win64 EH support --------------*- C++ -*-===//
33 static WinEH::Instruction PushMachFrame(MCSymbol *L, bool Code) { argument
34 return WinEH::Instruction(UOP_PushMachFrame, L, -1, Code ? 1 : 0);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/
H A DHeaderIncludes.h52 HeaderIncludes(llvm::StringRef FileName, llvm::StringRef Code,
97 std::string Code; member in class:clang::tooling::HeaderIncludes
/freebsd-11-stable/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp183 static bool fillRanges(MemoryBuffer *Code, argument
192 FileID ID = createInMemoryFile("<irrelevant>", Code, Sources, Files,
229 if (Offsets[i] >= Code->getBufferSize()) {
237 if (Offsets[i] + Lengths[i] > Code->getBufferSize()) {
294 const std::unique_ptr<llvm::MemoryBuffer> &Code) {
301 const char *StartBuf = Code->getBufferStart();
354 std::unique_ptr<llvm::MemoryBuffer> Code = std::move(CodeOrErr.get()); local
355 if (Code->getBufferSize() == 0)
358 StringRef BufStr = Code->getBuffer();
372 if (fillRanges(Code
293 emitReplacementWarnings(const Replacements &Replaces, StringRef AssumedFileName, const std::unique_ptr<llvm::MemoryBuffer> &Code) argument
450 std::unique_ptr<llvm::MemoryBuffer> Code; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp98 unsigned Code = MaybeCode.get(); local
108 return Code;
113 unsigned Code; local
115 Code = CodeOp.getLiteralValue();
125 Code = MaybeCode.get();
202 return Code;
212 uint32_t Code = MaybeCode.get();
223 return Code;
231 unsigned Code; local
233 Code
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamError.cpp23 : Code(C) {
H A DCompression.cpp31 static StringRef convertZlibCodeToString(int Code) { argument
32 switch (Code) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp213 void const* Code,
219 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size);
225 void const* Code,
232 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info);
211 op_write_native_code(const char* Name, uint64_t Addr, void const* Code, const unsigned int Size) argument
224 op_write_debug_line_info( void const* Code, size_t NumEntries, struct debug_line_info const* Info) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp1882 std::string replaceCRLF(const std::string &Code) { argument
1887 Pos = Code.find("\r\n", LastPos);
1893 NewCode += Code.substr(LastPos);
1896 NewCode += Code.substr(LastPos, Pos - LastPos) + "\n";
1913 StringRef Code, tooling::Replacements &Replaces,
1977 replaceCRLF(Code.substr(IncludesBeginOffset, IncludesBlockSize)))
1997 tooling::Replacements sortCppIncludes(const FormatStyle &Style, StringRef Code,
2021 auto Pos = Code.find('\n', SearchFrom);
2023 Code.substr(Prev, (Pos != StringRef::npos ? Pos : Code
1910 sortCppIncludes(const FormatStyle &Style, const SmallVectorImpl<IncludeDirective> &Includes, ArrayRef<tooling::Range> Ranges, StringRef FileName, StringRef Code, tooling::Replacements &Replaces, unsigned *Cursor) argument
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A DMakefile.am151 SYS_INCLUDES = -IWIN32-Code -IWIN32-Code/nmake
256 WIN32-Code/nmake/evconfig-private.h \
257 WIN32-Code/nmake/event2/event-config.h \
258 WIN32-Code/tree.h \
H A DMakefile.nmake23 CFLAGS=/IWIN32-Code /IWIN32-Code/nmake /Iinclude /Icompat /DHAVE_CONFIG_H /I. $(SSL_CFLAGS)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h268 uint32_t Code; ///< Abbreviation code member in struct:llvm::DWARFDebugNames::Abbrev
272 Abbrev(uint32_t Code, dwarf::Tag Tag, argument
274 : Code(Code), Tag(Tag), Attributes(std::move(Attributes)) {}
336 static unsigned getHashValue(uint32_t Code) { argument
337 return DenseMapInfo<uint32_t>::getHashValue(Code);
340 return getHashValue(Abbr.Code);
343 return LHS == RHS.Code;
346 return LHS.Code == RHS.Code;
[all...]
H A DDWARFAbbreviationDeclaration.h88 uint32_t getCode() const { return Code; }
171 uint32_t Code;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp40 serialization::DeclCode Code; member in class:clang::ASTDeclWriter
47 Code((serialization::DeclCode)0), AbbrevToUse(0) {}
50 if (!Code)
53 return Record.Emit(Code, AbbrevToUse);
341 Code = serialization::DECL_PRAGMA_COMMENT;
353 Code = serialization::DECL_PRAGMA_DETECT_MISMATCH;
397 Code = serialization::DECL_TYPEDEF;
403 Code = serialization::DECL_TYPEALIAS;
470 Code = serialization::DECL_ENUM;
505 Code
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CrossTU/
H A DCrossTranslationUnit.h56 IndexError(index_error_code C) : Code(C), LineNo(0) {}
58 : Code(C), FileName(std::move(FileName)), LineNo(LineNo) {}
61 : Code(C), FileName(std::move(FileName)),
66 index_error_code getCode() const { return Code; }
73 index_error_code Code; member in class:clang::cross_tu::IndexError
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp27 Code = 0;
44 Code = Data.getULEB128(OffsetPtr);
45 if (Code == 0) {
159 // Add the byte size of ULEB that for the abbrev Code so we can start
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd7_private.h77 UInt32 Code; member in struct:__anon15
108 #define Ppmd7z_RangeDec_IsFinishedOK(p) ((p)->Code == 0)
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h58 BinOp(LExpr *LHS, LExpr *RHS, Opcode Code) : LExpr(Code), LHS(LHS), RHS(RHS) {} argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoring.cpp86 StringRef Code = SM.getBufferData(ID); local
95 format::formatReplacements(Code, CurReplaces, *CurStyle);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DLZMA.cpp37 static const char *convertLZMACodeToString(lzma_ret Code) {
38 switch (Code) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DFunction.h121 Code = std::move(NewCode);
142 std::vector<char> Code; member in class:clang::interp::Function
/freebsd-11-stable/sys/dev/acpica/Osd/
H A DOsdDebug.c79 fatal->Type, fatal->Code, fatal->Argument);

Completed in 611 milliseconds

12345678