Searched refs:None (Results 1 - 25 of 924) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DNone.h1 //===-- None.h - Simple null value for implicit construction ------*- C++ -*-=//
9 // This file provides None, an enumerator for use in implicit constructors
22 enum class NoneType { None = 1 }; member in class:llvm::NoneType
23 const NoneType None = NoneType::None; member in class:llvm::NoneType
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbol.i82 name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
83 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
84 type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''')
85 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
86 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this symbol.''')
87 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
88 instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this symbol.''')
89 external = property(IsExternal, None, doc='''A read only property that returns a boolean value that indicates if this symbol is externally visiable (exported) from the module that contains it.''')
90 synthetic = property(IsSynthetic, None, doc='''A read only property that returns a boolean value that indicates if this symbol was synthetically created from information in module that contains it.''')
H A DSBExecutionContext.i42 target = property(GetTarget, None, doc='''A read only property that returns the same result as GetTarget().''')
43 process = property(GetProcess, None, doc='''A read only property that returns the same result as GetProcess().''')
44 thread = property(GetThread, None, doc='''A read only property that returns the same result as GetThread().''')
45 frame = property(GetFrame, None, doc='''A read only property that returns the same result as GetFrame().''')
H A DSBError.i24 stdout = open(os.devnull, 'w') if not self.TraceOn() else None)
52 process = target.Launch(listener, None, None, None, None, None, None, 0, False, error)
112 value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
113 fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
114 success = property(Success, None, do
[all...]
H A DSBLineEntry.i91 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
92 line = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
93 column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
94 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this line entry.''')
95 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this line entry.''')
H A DSBFrame.i335 addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (PC) as a section offset address (lldb.SBAddress).''')
336 fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an unsigned integer.''')
337 sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an unsigned integer.''')
338 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
339 compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) for this stack frame.''')
340 function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) for this stack frame.''')
341 symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) for this stack frame.''')
342 block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) for this stack frame.''')
343 is_inlined = property(IsInlined, None, doc='''A read only property that returns an boolean that indicates if the block frame is an inlined function.''')
344 name = property(GetFunctionName, None, do
[all...]
H A DSBSection.i132 name = property(GetName, None, doc='''A read only property that returns the name of this section as a string.''')
133 addr = property(get_addr, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this section.''')
134 file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer that represents the starting "file" address for this section, or the address of the section in the object file in which it is defined.''')
135 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
136 file_offset = property(GetFileOffset, None, doc='''A read only property that returns the file offset in bytes of this section as an integer.''')
137 file_size = property(GetFileByteSize, None, doc='''A read only property that returns the file size in bytes of this section as an integer.''')
138 data = property(GetSectionData, None, doc='''A read only property that returns an lldb object that represents the bytes for this section (lldb.SBData) for this section.''')
139 type = property(GetSectionType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSectionType") that represents the type of this section (code, data, etc.).''')
140 target_byte_size = property(GetTargetByteSize, None, doc='''A read only property that returns the size of a target byte represented by this section as a number of host bytes.''')
H A DSBFunction.i121 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
122 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
123 block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
124 instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
125 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
126 name = property(GetName, None, doc='''A read only property that returns the name for this function as a string.''')
127 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
128 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
H A DSBDeclaration.i60 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
61 line = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
62 column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
H A DSBFileSpec.i96 return None
98 fullpath = property(__get_fullpath__, None, doc='''A read only property that returns the fullpath as a python string.''')
99 basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''')
100 dirname = property(GetDirectory, None, doc='''A read only property that returns the path directory name as a python string.''')
101 exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''')
H A DSBBlock.i37 otherwise, return None.") GetInlinedName;
132 return None
149 parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
150 first_child = property(GetFirstChild, None, doc='''A read only property that returns the same result as GetFirstChild().''')
151 call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declaration object that contains the inlined call site file, line and column.''')
152 sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
153 name = property(GetInlinedName, None, doc='''A read only property that returns the same result as GetInlinedName().''')
154 inlined_block = property(GetContainingInlinedBlock, None, doc='''A read only property that returns the same result as GetContainingInlinedBlock().''')
155 range = property(get_ranges_access_object, None, doc='''A read only property that allows item access to the address ranges for a block by integer (range = block.range[0]) and by lldb.SBAdddress (find the range that contains the specified lldb.SBAddress like "pc_range = lldb.frame.block.range[frame.addr]").''')
156 ranges = property(get_ranges_array, None, do
[all...]
H A DSBInstruction.i92 mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
93 operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
94 comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
95 addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
96 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes for this instruction as an integer.''')
97 is_branch = property(DoesBranch, None, doc='''A read only property that returns a boolean value that indicates if this instruction is a branch instruction.''')
H A DSBType.i50 name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
51 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
52 byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
53 bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
54 is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this member is a bitfield.''')
55 bitfield_bit_size = property(GetBitfieldSizeInBits, None, doc='''A read only property that returns the bitfield size in bits for this member as an integer, or zero if this member is not a bitfield.''')
331 return None
333 name = property(GetName, None, doc='''A read only property that returns the name for this type as a string.''')
334 size = property(GetByteSize, None, doc='''A read only property that returns size in bytes for this type as an integer.''')
335 is_pointer = property(IsPointerType, None, do
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DPNaCl.cpp19 ArrayRef<const char *> PNaClTargetInfo::getGCCRegNames() const { return None; }
22 return None;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DXRayInstr.cpp24 .Case("none", XRayInstrKind::None)
25 .Default(XRayInstrKind::None);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Linker/
H A DLinker.h29 None = 0, enumerator in enum:llvm::Linker::Flags
46 bool linkInModule(std::unique_ptr<Module> Src, unsigned Flags = Flags::None,
51 unsigned Flags = Flags::None,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DUserIDResolver.cpp21 auto iter_bool = cache.try_emplace(id, llvm::None);
26 return llvm::None;
33 return llvm::None;
37 return llvm::None;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DRichManglingContext.cpp31 assert(new_provider != None && "Only reset to a valid provider");
61 assert(m_provider != None && "Initialize a provider first");
71 case None:
78 assert(m_provider != None && "Initialize a provider first");
84 case None:
120 assert(m_provider != None && "Initialize a provider first");
132 case None:
138 assert(m_provider != None && "Initialize a provider first");
150 case None:
156 assert(m_provider != None
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeAnalyzer.h85 BitcodeAnalyzer(StringRef Buffer, Optional<StringRef> BlockInfoBuffer = None);
87 Error analyze(Optional<BCDumpOptions> O = None,
88 Optional<StringRef> CheckHash = None);
90 void printStats(BCDumpOptions O, Optional<StringRef> Filename = None);
95 Optional<BCDumpOptions> O = None,
96 Optional<StringRef> CheckHash = None);
/freebsd-11-stable/contrib/binutils/opcodes/
H A Di386-tbl.h7 { "mov", 2, 0xa0, None, Cpu64,
11 { "mov", 2, 0xa0, None, CpuNo64,
15 { "mov", 2, 0x88, None, 0,
19 { "mov", 2, 0xb0, None, 0,
27 { "mov", 2, 0xb0, None, Cpu64,
31 { "mov", 2, 0x8c, None, 0,
35 { "mov", 2, 0x8c, None, 0,
39 { "mov", 2, 0x8c, None, Cpu386,
43 { "mov", 2, 0x8c, None, Cpu386,
47 { "mov", 2, 0x8e, None,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DVFABIDemangling.cpp21 None, // Not found. member in class:__anon1658::ParseRet
93 /// parsing error. If nothing is parsed, it returns None.
107 return ParseRet::None;
120 /// parsing error. If nothing is parsed, it returns None.
127 if (Ret != ParseRet::None)
132 if (Ret != ParseRet::None)
137 if (Ret != ParseRet::None)
142 if (Ret != ParseRet::None)
145 return ParseRet::None;
156 /// parsing error. If nothing is parsed, it returns None
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DBitstreamRemarkSerializer.h108 Optional<const StringTable *> StrTab = None,
109 Optional<StringRef> Filename = None);
150 Optional<StringRef> ExternalFilename = None) override;
174 Optional<const StringTable *> StrTab = None,
175 Optional<StringRef> ExternalFilename = None)
176 : MetaSerializer(OS), TmpHelper(None), Helper(nullptr), StrTab(StrTab),
185 Optional<const StringTable *> StrTab = None,
186 Optional<StringRef> ExternalFilename = None)
187 : MetaSerializer(OS), TmpHelper(None), Helper(&Helper), StrTab(StrTab),
172 BitstreamMetaSerializer(raw_ostream &OS, BitstreamRemarkContainerType ContainerType, Optional<const StringTable *> StrTab = None, Optional<StringRef> ExternalFilename = None) argument
183 BitstreamMetaSerializer(raw_ostream &OS, BitstreamRemarkSerializerHelper &Helper, Optional<const StringTable *> StrTab = None, Optional<StringRef> ExternalFilename = None) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordHelpers.cpp22 return ClassOptions::None;
28 ClassOptions UdtOptions = ClassOptions::None;
44 return (UdtOptions & ClassOptions::ForwardReference) != ClassOptions::None;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeBuiltin.cpp35 return (Mods & ModifierOptions::Const) != ModifierOptions::None;
41 return (Mods & ModifierOptions::Unaligned) != ModifierOptions::None;
45 return (Mods & ModifierOptions::Volatile) != ModifierOptions::None;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCTargetOptions.h18 None, ///< No exception support member in class:llvm::ExceptionHandling
27 None, ///< No compression member in class:llvm::DebugCompressionType

Completed in 198 milliseconds

1234567891011>>