/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
H A D | list.rst | 39 :doc:`abseil-cleanup-ctad <abseil/cleanup-ctad>`, "Yes" 40 :doc:`abseil-duration-addition <abseil/duration-addition>`, "Yes" 41 :doc:`abseil-duration-comparison <abseil/duration-comparison>`, "Yes" 42 :doc:`abseil-duration-conversion-cast <abseil/duration-conversion-cast>`, "Yes" 43 :doc:`abseil-duration-division <abseil/duration-division>`, "Yes" 44 :doc:`abseil-duration-factory-float <abseil/duration-factory-float>`, "Yes" 45 :doc:`abseil-duration-factory-scale <abseil/duration-factory-scale>`, "Yes" 46 :doc:`abseil-duration-subtraction <abseil/duration-subtraction>`, "Yes" 47 :doc:`abseil-duration-unnecessary-conversion <abseil/duration-unnecessary-conversion>`, "Yes" 48 :doc [all...] |
/llvm-project/mlir/test/mlir-tblgen/ |
H A D | openmp-ops.td | 13 // RUN: mlir-tblgen -gen-op-doc -I %S/../../include -I %t %s | FileCheck %s --check-prefix=DOC 151 // DOC-LABEL: omp::OpAddArguments 152 // DOC: _Operation with clauses - arguments added_ 153 // DOC: operation ::= `omp.op_add_arguments` 154 // DOC: `reqsimple` `(` $req_simple_val `:` type($req_simple_val) `)` 155 // DOC: `req_added` `(` $req_added `:` type($req_added) `)` 156 // DOC: oilist( 157 // DOC: `optsimple` `(` $opt_simple_val `:` type($opt_simple_val) `)` 158 // DOC [all...] |
/llvm-project/llvm/docs/ |
H A D | UserGuides.rst | 85 :doc:`HowToBuildOnARM` 88 :doc:`HowToBuildWithPGO` 91 :doc:`HowToCrossCompileLLVM` 99 :doc:`CoverageMappingFormat` 102 :doc:`CFIVerify` 108 :doc:`BuildingADistribution` 112 :doc:`CMake` 116 :doc:`Docker` 119 :doc:`Support Library <SupportLibrary>` 123 :doc [all...] |
H A D | Reference.rst | 67 :doc:`HowToUseAttributes` 77 :doc:`LLVM Command Guide <CommandGuide/index>` 81 :doc:`Bugpoint` 85 :doc:`OptBisect` 88 :doc:`SymbolizerMarkupFormat` 91 :doc:`The Microsoft PDB File Format <PDB/index>` 98 :doc:`GarbageCollection` 102 :doc:`Statepoints` 110 :doc:`LibFuzzer` 113 :doc [all...] |
H A D | GettingStartedTutorials.rst | 17 :doc:`GettingStarted` 22 :doc:`tutorial/index` 26 :doc:`ProgrammersManual` 30 :doc:`Frontend/PerformanceTips` 34 :doc:`GettingStartedVS` 38 :doc:`CompilerWriterInfo` 41 :doc:`MyFirstTypoFix`
|
/llvm-project/llvm/unittests/BinaryFormat/ |
H A D | MsgPackDocumentTest.cpp | 16 Document Doc; in TEST() local 18 DocNode Int1 = Doc.getNode(1), Int2 = Doc.getNode(2); in TEST() 19 DocNode Str1 = Doc.getNode("ab"), Str2 = Doc.getNode("ab"); in TEST() 26 Document Doc; in TEST() local 27 bool Ok = Doc.readFromBlob(StringRef("\xd0\x00", 2), /*Multi=*/false); in TEST() 29 ASSERT_EQ(Doc.getRoot().getKind(), Type::Int); in TEST() 30 ASSERT_EQ(Doc.getRoot().getInt(), 0); in TEST() 34 Document Doc; in TEST() local 37 Doc.readFromBlob(StringRef("\xC4\x4\x1\x2\x3\x4", 6), /*Multi=*/false); in TEST() 39 ASSERT_EQ(Doc.getRoot().getKind(), Type::Binary); in TEST() [all …]
|
/llvm-project/clang-tools-extra/docs/ |
H A D | ReleaseNotes.rst | 82 Improvements to clang-doc
|
H A D | clang-doc.rst | 2 Clang-Doc 10 :program:`clang-doc` is a tool for generating C and C++ documentation from 22 :program:`clang-doc` is a `LibTooling 32 $ clang-doc File1.cpp File2.cpp ... FileN.cpp 38 $ clang-doc --executor=all-TUs compile_commands.json 44 $ clang-doc --executor=all-TUs --filter=File[0-9]+.cpp compile_commands.json 49 :program:`clang-doc` produces a directory of documentation. One file is produced 57 $ clang-doc --output=output/directory/ compile_commands.json 62 Configuration for :program:`clang-doc` is currently limited to command-line options. 69 :program:`clang-doc` offers the following options: [all …]
|
/llvm-project/llvm/lib/ObjectYAML/ |
H A D | yaml2obj.cpp | 27 yaml::YamlObjectFile Doc; in convertYAML() 28 YIn >> Doc; in convertYAML() local 34 if (Doc.Arch) in convertYAML() 35 return yaml2archive(*Doc.Arch, Out, ErrHandler); in convertYAML() 36 if (Doc.Elf) in convertYAML() 37 return yaml2elf(*Doc.Elf, Out, ErrHandler, MaxSize); in convertYAML() 38 if (Doc.Coff) in convertYAML() 39 return yaml2coff(*Doc.Coff, Out, ErrHandler); in convertYAML() 40 if (Doc.Goff) in convertYAML() 41 return yaml2goff(*Doc in convertYAML() [all...] |
H A D | OffloadEmitter.cpp | 20 bool yaml2offload(Binary &Doc, raw_ostream &Out, ErrorHandler EH) { 21 for (const auto &Member : Doc.Members) { in yaml2offload() argument 44 if (Doc.Version) in yaml2offload() 45 TheHeader->Version = *Doc.Version; in yaml2offload() 46 if (Doc.Size) in yaml2offload() 47 TheHeader->Size = *Doc.Size; in yaml2offload() 48 if (Doc.EntryOffset) in yaml2offload() 49 TheHeader->EntryOffset = *Doc.EntryOffset; in yaml2offload() 50 if (Doc.EntrySize) in yaml2offload() 51 TheHeader->EntrySize = *Doc in yaml2offload() [all...] |
H A D | ELFEmitter.cpp | 207 ELFYAML::Object &Doc; 327 static bool writeELF(raw_ostream &OS, ELFYAML::Object &Doc, 344 : Doc(D), ErrHandler(EH) { 348 if (Doc.Header.SectionHeaderStringTable) { in ELFState() 349 SectionHeaderStringTableName = *Doc.Header.SectionHeaderStringTable; in ELFState() 350 if (*Doc.Header.SectionHeaderStringTable == ".strtab") in ELFState() 352 else if (*Doc.Header.SectionHeaderStringTable == ".dynstr") in ELFState() 357 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState() 360 Doc.Chunks.insert( in ELFState() 361 Doc in ELFState() 210 ELFYAML::Object &Doc; global() member in __anon934faf2d0111::ELFState 2039 writeELF(raw_ostream & OS,ELFYAML::Object & Doc,yaml::ErrorHandler EH,uint64_t MaxSize) writeELF() argument 2107 yaml2elf(llvm::ELFYAML::Object & Doc,raw_ostream & Out,ErrorHandler EH,uint64_t MaxSize) yaml2elf() argument [all...] |
/llvm-project/lldb/bindings/interface/ |
H A D | SBFrameExtensions.i | 70 …addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (… 71 …fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an u… 72 …sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an u… 73 …module = property(GetModule, None, doc='''A read only property that returns an lldb object that re… 74 …compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb obj… 75 …function = property(GetFunction, None, doc='''A read only property that returns an lldb object tha… 76 …symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that re… 77 …block = property(GetBlock, None, doc='''A read only property that returns an lldb object that repr… 78 …is_inlined = property(IsInlined, None, doc='''A read only property that returns an boolean that in… 79 …name = property(GetFunctionName, None, doc='''A read only property that retuns the name for the fu… [all …]
|
H A D | SBValueExtensions.i | 64 children = property(get_value_child_list, None, doc='''A read only property that returns a list() of lldb.SBValue objects for the children of the value.''') 65 child = property(get_child_access_object, None, doc='''A read only property that returns an object that can access children of a variable by index (child_value = value.children[12]).''') 66 member = property(get_member_access_object, None, doc='''A read only property that returns an object that can access child members by name.''') 67 name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''') 68 type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''') 69 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''') 70 is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value that indicates whether this value is currently lexically in scope.''') 71 format = property(GetName, SetFormat, doc='''A read/write property that gets/sets the format used for lldb.SBValue().GetValue() for this value. See enumerations that start with "lldb.eFormat".''') 72 value = property(GetValue, SetValueFromCString, doc='''A read/write property that gets/sets value from a string.''') 73 value_type = property(GetValueType, None, doc [all...] |
H A D | SBTypeExtensions.i | 10 …name = property(GetName, None, doc='''A read only property that returns the name for this member a… 11 …type = property(GetType, None, doc='''A read only property that returns an lldb object that repres… 12 …byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in … 13 …bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bi… 14 …is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this mem… 15 …bitfield_bit_size = property(GetBitfieldSizeInBits, None, doc='''A read only property that returns… 56 …module = property(GetModule, None, doc='''A read only property that returns the module in which ty… 57 …name = property(GetName, None, doc='''A read only property that returns the name for this type as … 58 …size = property(GetByteSize, None, doc='''A read only property that returns size in bytes for this… 59 …is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean valu… [all …]
|
H A D | SBDataExtensions.i | 137 …uint8 = property(_make_helper_uint8, None, doc='''A read only property that returns an array-like … 138 …uint16 = property(_make_helper_uint16, None, doc='''A read only property that returns an array-lik… 139 …uint32 = property(_make_helper_uint32, None, doc='''A read only property that returns an array-lik… 140 …uint64 = property(_make_helper_uint64, None, doc='''A read only property that returns an array-lik… 141 …sint8 = property(_make_helper_sint8, None, doc='''A read only property that returns an array-like … 142 …sint16 = property(_make_helper_sint16, None, doc='''A read only property that returns an array-lik… 143 …sint32 = property(_make_helper_sint32, None, doc='''A read only property that returns an array-lik… 144 …sint64 = property(_make_helper_sint64, None, doc='''A read only property that returns an array-lik… 145 …float = property(_make_helper_float, None, doc='''A read only property that returns an array-like … 146 …double = property(_make_helper_double, None, doc='''A read only property that returns an array-lik… [all …]
|
H A D | SBThreadExtensions.i | 62 id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''') 63 idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as an integer. Thread index ID values start at 1 and increment as threads come and go and can be used to uniquely identify threads.''') 64 return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb object that represents the return value from the last stop (lldb.SBValue) if we just stopped due to stepping out of a function.''') 65 process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that owns this thread.''') 66 num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''') 67 frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of lldb.SBFrame objects for all frames in this thread.''') 68 frame = property(get_frames_access_object, None, doc='''A read only property that returns an object that can be used to access frames as an array ("frame_12 = lldb.thread.frame[12]").''') 69 name = property(GetName, None, doc='''A read only property that returns the name of this thread as a string.''') 70 queue = property(GetQueueName, None, doc='''A read only property that returns the dispatch queue name of this thread as a string.''') 71 queue_id = property(GetQueueID, None, doc [all...] |
H A D | SBSectionExtensions.i | 22 …name = property(GetName, None, doc='''A read only property that returns the name of this section a… 23 …addr = property(get_addr, None, doc='''A read only property that returns an lldb object that repre… 24 …file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer tha… 25 …size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of t… 26 …file_offset = property(GetFileOffset, None, doc='''A read only property that returns the file offs… 27 …file_size = property(GetFileByteSize, None, doc='''A read only property that returns the file size… 28 …data = property(GetSectionData, None, doc='''A read only property that returns an lldb object that… 29 …type = property(GetSectionType, None, doc='''A read only property that returns an lldb enumeration… 30 …target_byte_size = property(GetTargetByteSize, None, doc='''A read only property that returns the … 31 …alignment = property(GetAlignment, None, doc='''A read only property that returns the alignment of…
|
H A D | SBProcessExtensions.i | 85 …threads = property(get_process_thread_list, None, doc='''A read only property that returns a list(… 86 …thread = property(get_threads_access_object, None, doc='''A read only property that returns an obj… 87 …is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean val… 88 …is_running = property(__get_is_running__, None, doc='''A read only property that returns a boolean… 89 …is_stopped = property(__get_is_stopped__, None, doc='''A read only property that returns a boolean… 90 …id = property(GetProcessID, None, doc='''A read only property that returns the process ID as an in… 91 …target = property(GetTarget, None, doc='''A read only property that an lldb object that represents… 92 …num_threads = property(GetNumThreads, None, doc='''A read only property that returns the number of… 93 …selected_thread = property(GetSelectedThread, SetSelectedThread, doc='''A read/write property that… 94 …state = property(GetState, None, doc='''A read only property that returns an lldb enumeration valu… [all …]
|
H A D | SBTargetExtensions.i | 178 modules = property(get_modules_array, None, doc='''A read only property that returns a list() of lldb.SBModule objects contained in this target. This list is a list all modules that the target currently is tracking (the main executable and all dependent shared libraries).''') 179 module = property(get_modules_access_object, None, doc=r'''A read only property that returns an object that implements python operator overloading with the square brackets().\n target.module[<int>] allows array access to any modules.\n target.module[<str>] allows access to modules by basename, full path, or uuid string value.\n target.module[uuid.UUID()] allows module access by UUID.\n target.module[re] allows module access using a regular expression that matches the module full path.''') 180 process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that this target owns.''') 181 executable = property(GetExecutable, None, doc='''A read only property that returns an lldb object that represents the main executable module (lldb.SBModule) for this target.''') 182 debugger = property(GetDebugger, None, doc='''A read only property that returns an lldb object that represents the debugger (lldb.SBDebugger) that owns this target.''') 183 num_breakpoints = property(GetNumBreakpoints, None, doc='''A read only property that returns the number of breakpoints that this target has as an integer.''') 184 breakpoints = property(get_target_bkpts, None, doc='''A read only property that returns a list() of lldb.SBBreakpoint objects for all breakpoints in this target.''') 185 breakpoint = property(get_bkpts_access_object, None, doc='''A read only property that returns an object that can be used to access breakpoints as an array ("bkpt_12 = lldb.target.bkpt[12]").''') 186 num_watchpoints = property(GetNumWatchpoints, None, doc='''A read only property that returns the number of watchpoints that this target has as an integer.''') 187 watchpoints = property(get_target_watchpoints, None, doc [all...] |
H A D | SBSymbolExtensions.i | 17 …name = property(GetName, None, doc='''A read only property that returns the name for this symbol a… 18 …mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (lin… 19 …type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value … 20 …addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object tha… 21 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t… 22 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s… 23 …instructions = property(get_instructions_from_current_target, None, doc='''A read only property th… 24 …external = property(IsExternal, None, doc='''A read only property that returns a boolean value tha… 25 …synthetic = property(IsSynthetic, None, doc='''A read only property that returns a boolean value t…
|
H A D | SBFunctionExtensions.i | 14 …addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object tha… 15 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t… 16 …block = property(GetBlock, None, doc='''A read only property that returns an lldb object that repr… 17 …instructions = property(get_instructions_from_current_target, None, doc='''A read only property th… 18 …mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (lin… 19 …name = property(GetName, None, doc='''A read only property that returns the name for this function… 20 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s… 21 …type = property(GetType, None, doc='''A read only property that returns an lldb object that repres…
|
/llvm-project/libc/config/ |
H A D | config.json | 5 "doc": "The implementation used for errno, acceptable values are LIBC_ERRNO_MODE_DEFAULT, LIBC_ERRNO_MODE_UNDEFINED, LIBC_ERRNO_MODE_THREAD_LOCAL, LIBC_ERRNO_MODE_SHARED, LIBC_ERRNO_MODE_EXTERNAL, and LIBC_ERRNO_MODE_SYSTEM." string 11 "doc": "Disable printing floating point values in printf and friends." 15 "doc": "Disable index mode in the printf format string." 19 "doc": "Disable handling of %n in printf format string." 23 "doc": "Use large table for better printf long double performance." 27 "doc": "Use dyadic float for faster and smaller but less accurate printf doubles." string 31 "doc": "Use the same mode for double and long double in printf." string 35 "doc": "Disable printing fixed point values in printf and friends." 39 "doc": "Disable handling of %m to print strerror in printf and friends." 45 "doc" 9 "doc": "Disable index mode in the printf format string." global() string 13 "doc": "Disable handling of %n in printf format string." global() string 17 "doc": "Use large table for better printf long double performance." global() string 21 "doc": "Disable printing fixed point values in printf and friends." global() string 37 "doc": "Read more than a byte at a time to perform byte-string operations like strlen." global() string 41 "doc": "Inserts prefetch for write instructions (PREFETCHW) for memset on x86 to recover performance when hardware prefetcher is disabled." global() string 47 "doc": "Keep frame pointer in functions for better debugging experience." global() string 51 "doc": "Enable -fstack-protector-strong to defend against stack smashing attack." global() string 57 "doc": "Automatically adjust timeout to CLOCK_MONOTONIC (default to true). POSIX API may require CLOCK_REALTIME, which can be unstable and leading to unexpected behavior. Thi global() string 61 "doc": "Default number of spins before blocking if a mutex is in contention (default to 100)." global() string 65 "doc": "Default number of spins before blocking if a rwlock is in contention (default to 100)." global() string 71 "doc": "Default size for the constinit freelist buffer used for the freelist malloc implementation (default 1o 1GB)." global() string 77 "doc": "Configures optimizations for math functions. Values accepted are LIBC_MATH_SKIP_ACCURATE_PASS, LIBC_MATH_SMALL_TABLES, LIBC_MATH_NO_ERRNO, LIBC_MATH_NO_EXCEPT, and LI global() string [all...] |
/llvm-project/clang-tools-extra/clang-doc/tool/ |
H A D | CMakeLists.txt | 3 add_clang_tool(clang-doc 7 clang_target_link_libraries(clang-doc 16 target_link_libraries(clang-doc 24 clang-doc-default-stylesheet.css 28 set(resource_dir "${LLVM_RUNTIME_OUTPUT_INTDIR}/../share/clang-doc") 45 DESTINATION "${CMAKE_INSTALL_DATADIR}/clang-doc" 46 COMPONENT clang-doc) 50 add_custom_target(copy-clang-doc-assets 52 COMMENT "Copying Clang-Doc Assets" 54 set_target_properties(copy-clang-doc [all...] |
/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | yaml2obj.h | 69 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH); 70 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 71 bool yaml2goff(GOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 72 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH, 74 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH); 75 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out, 77 bool yaml2offload(OffloadYAML::Binary &Doc, raw_ostream &Out, ErrorHandler EH); 78 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 79 bool yaml2xcoff(XCOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 80 bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out,
|
/llvm-project/llvm/unittests/Support/ |
H A D | JSONTest.cpp | 254 llvm::Expected<Value> Doc = parse(R"( in TEST() local 264 EXPECT_TRUE(!!Doc); in TEST() 266 Object *O = Doc->getAsObject(); in TEST() 354 llvm::Expected<Value> Doc = parse(T.Str); in TEST() local 355 EXPECT_TRUE(!!Doc) << T.Desc; in TEST() 356 EXPECT_EQ(Doc->getAsInteger(), T.AsInt) << T.Desc; in TEST() 357 EXPECT_EQ(Doc->getAsNumber(), T.AsNumber) << T.Desc; in TEST() 358 EXPECT_EQ(T.Val, *Doc) << T.Desc; in TEST() 359 EXPECT_EQ(T.Str, s(*Doc)) << T.Desc; in TEST() 376 llvm::Expected<Value> Doc in TEST() local 385 llvm::Expected<Value> Doc = parse(Str); TEST() local 395 llvm::Expected<Value> Doc = parse(Str); TEST() local 405 llvm::Expected<Value> Doc = parse(Str); TEST() local 415 llvm::Expected<Value> Doc = parse(Str); TEST() local 427 llvm::Expected<Value> Doc = parse(Str); TEST() local 438 llvm::Expected<Value> Doc = parse(Str); TEST() local [all...] |