Searched refs:Code (Results 51 - 75 of 177) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.h39 // fragment \p Code. Assumes that \p Code starts at \p FirstStartColumn,
40 // that the next lines of \p Code should start at \p NextStartColumn, and
41 // that \p Code should end at \p LastStartColumn if it ends in newline.
43 Environment(StringRef Code, StringRef FileName,
H A DTokenAnalyzer.cpp36 Environment::Environment(StringRef Code, StringRef FileName, argument
40 : VirtualSM(new SourceManagerForFile(FileName, Code)), SM(VirtualSM->get()),
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DTestModuleFileExtension.h58 llvm::hash_code hashExtension(llvm::hash_code Code) const override;
H A DSerializedDiagnosticReader.cpp121 unsigned Code; local
123 Code = Res.get();
127 if (Code >= static_cast<unsigned>(llvm::bitc::FIRST_APPLICATION_ABBREV)) {
129 BlockOrRecordID = Code;
132 switch (static_cast<llvm::bitc::FixedAbbrevIDs>(Code)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.h25 dw_uleb128_t Code() const { return m_code; } function in class:DWARFAbbreviationDeclaration
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordWriter.h88 uint64_t Emit(unsigned Code, unsigned Abbrev = 0) { argument
91 Writer->Stream.EmitRecord(Code, *Record, Abbrev);
97 uint64_t EmitStmt(unsigned Code, unsigned Abbrev = 0) { argument
100 Writer->Stream.EmitRecord(Code, *Record, Abbrev);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCWasmStreamer.cpp177 SmallString<256> Code; local
178 raw_svector_ostream VecOS(Code);
191 DF->getContents().append(Code.begin(), Code.end());
H A DMCELFStreamer.cpp69 SmallString<256> Code; local
70 raw_svector_ostream VecOS(Code);
74 DF->getContents().append(Code.begin(), Code.end());
516 SmallString<256> Code; local
517 raw_svector_ostream VecOS(Code);
565 CEIF->getContents().append(Code.begin(), Code.end());
593 DF->getContents().append(Code.begin(), Code
[all...]
H A DMCWinCOFFStreamer.cpp56 SmallString<256> Code; local
57 raw_svector_ostream VecOS(Code);
66 DF->getContents().append(Code.begin(), Code.end());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h292 /// known to exist at the end of the record. If Code is specified, then
297 StringRef Blob, Optional<unsigned> Code) {
307 if (Code) {
312 EmitAbbreviatedLiteral(Op, Code.getValue());
317 EmitAbbreviatedField(Op, Code.getValue());
410 void EmitRecord(unsigned Code, const Container &Vals, unsigned Abbrev = 0) {
416 EmitVBR(Code, 6);
423 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), StringRef(), Code);
296 EmitRecordWithAbbrevImpl(unsigned Abbrev, ArrayRef<uintty> Vals, StringRef Blob, Optional<unsigned> Code) argument
H A DBitstreamReader.h407 unsigned Code = MaybeCode.get(); local
409 if (Code == bitc::END_BLOCK) {
416 if (Code == bitc::ENTER_SUBBLOCK) {
423 if (Code == bitc::DEFINE_ABBREV &&
432 return BitstreamEntry::getRecord(Code);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp31 // Support Code for the Semantic Actions.
480 // Parser Code
803 case tgtok::Code: Lex.Lex(); return CodeRecTy::get();
918 UnOpInit::UnaryOp Code; local
925 Code = UnOpInit::CAST;
937 Code = UnOpInit::HEAD;
941 Code = UnOpInit::TAIL;
945 Code = UnOpInit::SIZE;
950 Code = UnOpInit::EMPTY;
973 Code
1095 BinOpInit::BinaryOp Code; local
1413 TernOpInit::TernaryOp Code; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h2275 tooling::Replacements sortIncludes(const FormatStyle &Style, StringRef Code,
2284 formatReplacements(StringRef Code, const tooling::Replacements &Replaces,
2293 /// correct block in the \p Code.
2296 /// from \p Code if it exists.
2301 cleanupAroundReplacements(StringRef Code, const tooling::Replacements &Replaces,
2316 /// Reformats the given \p Ranges in \p Code.
2327 tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
2335 tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
2340 /// Code.
2342 /// Returns the ``Replacements`` that clean up all \p Ranges in \p Code
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp155 const Twine &Code, const Twine &FileName,
157 return runToolOnCodeWithArgs(std::move(ToolAction), Code,
181 std::unique_ptr<FrontendAction> ToolAction, const Twine &Code,
199 std::unique_ptr<FrontendAction> ToolAction, const Twine &Code,
213 Code.toNullTerminatedStringRef(CodeStorage)));
221 return runToolOnCodeWithArgs(std::move(ToolAction), Code, OverlayFileSystem,
613 buildASTFromCode(StringRef Code, StringRef FileName, argument
615 return buildASTFromCodeWithArgs(Code, std::vector<std::string>(), FileName,
620 StringRef Code, const std::vector<std::string> &Args, StringRef FileName,
638 llvm::MemoryBuffer::getMemBufferCopy(Code));
154 runToolOnCode(std::unique_ptr<FrontendAction> ToolAction, const Twine &Code, const Twine &FileName, std::shared_ptr<PCHContainerOperations> PCHContainerOps) argument
180 runToolOnCodeWithArgs( std::unique_ptr<FrontendAction> ToolAction, const Twine &Code, llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, const std::vector<std::string> &Args, const Twine &FileName, const Twine &ToolName, std::shared_ptr<PCHContainerOperations> PCHContainerOps) argument
198 runToolOnCodeWithArgs( std::unique_ptr<FrontendAction> ToolAction, const Twine &Code, const std::vector<std::string> &Args, const Twine &FileName, const Twine &ToolName, std::shared_ptr<PCHContainerOperations> PCHContainerOps, const FileContentMappings &VirtualMappedFiles) argument
619 buildASTFromCodeWithArgs( StringRef Code, const std::vector<std::string> &Args, StringRef FileName, StringRef ToolName, std::shared_ptr<PCHContainerOperations> PCHContainerOps, ArgumentsAdjuster Adjuster, const FileContentMappings &VirtualMappedFiles) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DTooling.h148 /// Runs (and deletes) the tool on 'Code' with the -fsyntax-only flag.
151 /// \param Code C++ code.
152 /// \param FileName The file name which 'Code' will be mapped as.
157 bool runToolOnCode(std::unique_ptr<FrontendAction> ToolAction, const Twine &Code,
166 /// Runs (and deletes) the tool on 'Code' with the -fsyntax-only flag and
170 /// \param Code C++ code.
172 /// \param FileName The file name which 'Code' will be mapped as.
180 std::unique_ptr<FrontendAction> ToolAction, const Twine &Code,
189 std::unique_ptr<FrontendAction> ToolAction, const Twine &Code,
196 /// Builds an AST for 'Code'
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp497 static bool canDecodeBlob(unsigned Code, unsigned BlockID) { argument
498 return BlockID == bitc::METADATA_BLOCK_ID && Code == bitc::METADATA_STRINGS;
844 unsigned Code = MaybeCode.get(); local
847 if (BlockStats.CodeFreq.size() <= Code)
848 BlockStats.CodeFreq.resize(Code + 1);
849 BlockStats.CodeFreq[Code].NumInstances++;
850 BlockStats.CodeFreq[Code].TotalBits +=
853 BlockStats.CodeFreq[Code].NumAbbrev++;
860 GetCodeName(Code, BlockID, BlockInfo, CurStreamType);
864 O->OS << "UnknownCode" << Code;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp584 static void writeStringRecord(BitstreamWriter &Stream, unsigned Code, argument
588 // Code: [strchar x N]
596 Stream.EmitRecord(Code, Vals, AbbrevToUse);
873 unsigned Code = 0; local
876 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
877 case Type::HalfTyID: Code = bitc::TYPE_CODE_HALF; break;
878 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;
879 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break;
880 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break;
881 case Type::FP128TyID: Code
2341 unsigned Code = -1U; local
2605 unsigned Code = 0; local
3674 unsigned Code = local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd8_private.h68 UInt32 Code; member in struct:__anon19
123 #define Ppmd8_RangeDec_IsFinishedOK(p) ((p)->Code == 0)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCmpInstAnalysis.cpp42 Constant *llvm::getPredForICmpCode(unsigned Code, bool Sign, Type *OpTy, argument
44 switch (Code) {
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A DMakefile.nmake13 CFLAGS=/I.. /I../WIN32-Code /I../WIN32-Code/nmake /I../include /I../compat /DHAVE_CONFIG_H /DTINYTEST_LOCAL $(SSL_CFLAGS)
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.chillbadarg.ksh13 * When distributing Covered Code, include this CDDL HEADER in each
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h45 Code, member in class:llvm::SectionMemoryManager::AllocationPurpose
137 /// permissions when this method is called. Code sections cannot be executed
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeEmitter.h92 std::vector<char> Code; member in class:clang::interp::ByteCodeEmitter
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp181 Code, member in class:Command
191 Cmd = Command::Code;
198 Cmd = Command::Code;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h262 inline static const char *getCondCodeName(CondCode Code) { argument
263 switch (Code) {
284 inline static CondCode getInvertedCondCode(CondCode Code) { argument
287 return static_cast<CondCode>(static_cast<unsigned>(Code) ^ 0x1);
294 inline static unsigned getNZCVToSatisfyCondCode(CondCode Code) { argument
297 switch (Code) {

Completed in 213 milliseconds

12345678