Home
last modified time | relevance | path

Searched refs:None (Results 1 – 25 of 740) sorted by relevance

12345678910>>...30

/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DCSymbolMap.inc12 SYMBOL(ATOMIC_BOOL_LOCK_FREE, None, <stdatomic.h>)
13 SYMBOL(ATOMIC_CHAR16_T_LOCK_FREE, None, <stdatomic.h>)
14 SYMBOL(ATOMIC_CHAR32_T_LOCK_FREE, None, <stdatomic.h>)
15 SYMBOL(ATOMIC_CHAR_LOCK_FREE, None, <stdatomic.h>)
16 SYMBOL(ATOMIC_FLAG_INIT, None, <stdatomic.h>)
17 SYMBOL(ATOMIC_INT_LOCK_FREE, None, <stdatomic.h>)
18 SYMBOL(ATOMIC_LLONG_LOCK_FREE, None, <stdatomic.h>)
19 SYMBOL(ATOMIC_LONG_LOGK_FREE, None, <stdatomic.h>)
20 SYMBOL(ATOMIC_POINTER_LOCK_FREE, None, <stdatomic.h>)
21 SYMBOL(ATOMIC_SHORT_LOCK_FREE, None, <stdatomic.h>)
[all …]
H A DStdSymbolMap.inc12 SYMBOL(ATOMIC_BOOL_LOCK_FREE, None, <atomic>)
13 SYMBOL(ATOMIC_CHAR16_T_LOCK_FREE, None, <atomic>)
14 SYMBOL(ATOMIC_CHAR32_T_LOCK_FREE, None, <atomic>)
15 SYMBOL(ATOMIC_CHAR8_T_LOCK_FREE, None, <atomic>)
16 SYMBOL(ATOMIC_CHAR_LOCK_FREE, None, <atomic>)
17 SYMBOL(ATOMIC_FLAG_INIT, None, <atomic>)
18 SYMBOL(ATOMIC_INT_LOCK_FREE, None, <atomic>)
19 SYMBOL(ATOMIC_LLONG_LOCK_FREE, None, <atomic>)
20 SYMBOL(ATOMIC_LONG_LOCK_FREE, None, <atomic>)
21 SYMBOL(ATOMIC_POINTER_LOCK_FREE, None, <atomic>)
[all …]
H A DCSpecialSymbolMap.inc8 SYMBOL(size_t, None, <stddef.h>)
9 SYMBOL(size_t, None, <stdio.h>)
10 SYMBOL(size_t, None, <stdlib.h>)
11 SYMBOL(size_t, None, <string.h>)
12 SYMBOL(size_t, None, <time.h>)
13 SYMBOL(size_t, None, <uchar.h>)
14 SYMBOL(size_t, None, <wchar.h>)
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBValueExtensions.i26 return None
51 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.''')
52 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]).''')
53 name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''')
54 type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
55 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''')
56 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.''')
59 value_type = property(GetValueType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eValueType") that represents the type of this value (local, argument, global, register, etc.).''')
60 changed = property(GetValueDidChange, None, doc='''A read only property that returns a boolean value that indicates if this value has changed since it was last updated.''')
61 data = property(GetData, None, do
[all...]
H A DSBFrameExtensions.i70 …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 DSBDataExtensions.i35 … def CreateDataFromInt (cls, value, size = None, target = None, ptr_size = None, endian = None):
42 lldbtarget = None
43 if target is None and lldbtarget is not None and lldbtarget.IsValid():
45 if ptr_size is None:
50 if endian is None:
55 if size is None:
72 return None
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…
[all …]
H A DSBTypeExtensions.i10 name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
11 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
12 byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
13 bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
14 is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this member is a bitfield.''')
15 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.''')
46 return None
56 module = property(GetModule, None, doc='''A read only property that returns the module in which type is defined.''')
57 name = property(GetName, None, doc='''A read only property that returns the name for this type as a string.''')
58 size = property(GetByteSize, None, do
[all...]
H A DSBThreadExtensions.i35 return None
48 id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''')
49 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.''')
50 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.''')
51 process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that owns this thread.''')
52 num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''')
53 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.''')
54 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]").''')
55 name = property(GetName, None, doc='''A read only property that returns the name of this thread as a string.''')
56 queue = property(GetQueueName, None, do
[all...]
H A DSBSectionExtensions.i22 name = property(GetName, None, doc='''A read only property that returns the name of this section as a string.''')
23 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.''')
24 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.''')
25 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
26 file_offset = property(GetFileOffset, None, doc='''A read only property that returns the file offset in bytes of this section as an integer.''')
27 file_size = property(GetFileByteSize, None, doc='''A read only property that returns the file size in bytes of this section as an integer.''')
28 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.''')
29 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.).''')
30 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.''')
31 alignment = property(GetAlignment, None, do
[all...]
H A DSBTargetExtensions.i76 return None
92 return None
131 return None
165 return None
178 …modules = property(get_modules_array, None, doc='''A read only property that returns a list() of l…
179 …module = property(get_modules_access_object, None, doc=r'''A read only property that returns an ob…
180 …process = property(GetProcess, None, doc='''A read only property that returns an lldb object that …
181 …executable = property(GetExecutable, None, doc='''A read only property that returns an lldb object…
182 …debugger = property(GetDebugger, None, doc='''A read only property that returns an lldb object tha…
183 …num_breakpoints = property(GetNumBreakpoints, None, doc='''A read only property that returns the n…
[all …]
H A DSBSymbolExtensions.i17 name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
18 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
19 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.''')
20 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
21 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.''')
22 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
23 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.''')
24 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.''')
25 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 DSBProcessExtensions.i60 return None
85 threads = property(get_process_thread_list, None, doc='''A read only property that returns a list() of lldb.SBThread objects for this process.''')
86 thread = property(get_threads_access_object, None, doc='''A read only property that returns an object that can access threads by thread index (thread = lldb.process.thread[12]).''')
87 is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently alive.''')
88 is_running = property(__get_is_running__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently running.''')
89 is_stopped = property(__get_is_stopped__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently stopped.''')
90 id = property(GetProcessID, None, doc='''A read only property that returns the process ID as an integer.''')
91 target = property(GetTarget, None, doc='''A read only property that an lldb object that represents the target (lldb.SBTarget) that owns this process.''')
92 num_threads = property(GetNumThreads, None, doc='''A read only property that returns the number of threads in this process as an integer.''')
94 state = property(GetState, None, do
[all...]
H A DSBFunctionExtensions.i14 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
15 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.''')
16 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.''')
17 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.''')
18 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
19 name = property(GetName, None, doc='''A read only property that returns the name for this function as a string.''')
20 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
21 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 DSBTypeCategoryExtensions.i39 return None
85 formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
86 format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
87 summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
88 summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.''')
89 filters = property(get_filters_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFilter objects contained in this category''')
90 filter = property(get_filters_access_object, None, doc=r'''A read only property that returns an object that you can use to look for filters by index or type name or regular expression.''')
91 synthetics = property(get_synthetics_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSynthetic objects contained in this category''')
92 synthetic = property(get_synthetics_access_object, None, doc=r'''A read only property that returns an object that you can use to look for synthetic children provider by index or type name or regular expression.''')
93 num_formats = property(GetNumFormats, None)
[all...]
H A DSBBlockExtensions.i31 return None
48 …parent = property(GetParent, None, doc='''A read only property that returns the same result as Get…
49 …first_child = property(GetFirstChild, None, doc='''A read only property that returns the same resu…
50 …call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declarat…
51 …sibling = property(GetSibling, None, doc='''A read only property that returns the same result as G…
52 …name = property(GetInlinedName, None, doc='''A read only property that returns the same result as …
53 …inlined_block = property(GetContainingInlinedBlock, None, doc='''A read only property that returns…
54 …range = property(get_ranges_access_object, None, doc='''A read only property that allows item acce…
55 …ranges = property(get_ranges_array, None, doc='''A read only property that returns a list() object…
56 …num_ranges = property(GetNumRanges, None, doc='''A read only property that returns the same result…
H A DSBAddressExtensions.i43 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) that this address resides within.''')
44 compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) that this address resides within.''')
45 line_entry = property(GetLineEntry, None, doc='''A read only property that returns an lldb object that represents the line entry (lldb.SBLineEntry) that this address resides within.''')
46 function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) that this address resides within.''')
47 block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) that this address resides within.''')
48 symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) that this address resides within.''')
49 offset = property(GetOffset, None, doc='''A read only property that returns the section offset in bytes as an integer.''')
50 section = property(GetSection, None, doc='''A read only property that returns an lldb object that represents the section (lldb.SBSection) that this address resides within.''')
51 file_addr = property(GetFileAddress, None, doc='''A read only property that returns file address for the section as an integer. This is the address that represents the address as it is found in the object file that defines it.''')
H A DSBModuleExtensions.i104 return None
155 return None
196 return None
218 symbols = property(get_symbols_array, None, doc='''A read only property that returns a list() of lldb.SBSymbol objects contained in this module.''')
219 symbol = property(get_symbols_access_object, None, doc='''A read only property that can be used to access symbols by index ("symbol = module.symbol[0]"), name ("symbols = module.symbol['main']"), or using a regular expression ("symbols = module.symbol[re.compile(...)]"). The return value is a single lldb.SBSymbol object for array access, and a list() of lldb.SBSymbol objects for name and regular expression access''')
220 sections = property(get_sections_array, None, doc='''A read only property that returns a list() of lldb.SBSection objects contained in this module.''')
221 compile_units = property(get_compile_units_array, None, doc='''A read only property that returns a list() of lldb.SBCompileUnit objects contained in this module.''')
222 section = property(get_sections_access_object, None, doc='''A read only property that can be used to access symbols by index ("section = module.section[0]"), name ("sections = module.section[\'main\']"), or using a regular expression ("sections = module.section[re.compile(...)]"). The return value is a single lldb.SBSection object for array access, and a list() of lldb.SBSection objects for name and regular expression access''')
223 section = property(get_sections_access_object, None, doc='''A read only property that can be used to access compile units by index ("compile_unit = module.compile_unit[0]"), name ("compile_unit = module.compile_unit[\'main.cpp\']"), or using a regular expression ("compile_unit = module.compile_unit[re.compile(...)]"). The return value is a single lldb.SBCompileUnit object for array access or by full or partial path, and a list() of lldb.SBCompileUnit objects regular expressions.''')
228 uuid = property(get_uuid, None, do
[all...]
H A DSBInstructionExtensions.i25 mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
26 operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
27 comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
28 addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
29 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes for this instruction as an integer.''')
30 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 DSBErrorExtensions.i9 value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
10 fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
11 success = property(Success, None, doc='''A read only property that returns the same result as Success().''')
12 description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
13 type = property(GetType, None, doc='''A read only property that returns the same result as GetType().''')
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DPointerAuthOptions.h36 None, enumerator
53 None, enumerator
76 PointerAuthSchema() : TheKind(Kind::None) {} in PointerAuthSchema()
110 bool isEnabled() const { return getKind() != Kind::None; } in isEnabled()
113 assert(getKind() != Kind::None); in isAddressDiscriminated()
118 assert(getKind() != Kind::None); in isIsaPointer()
123 assert(getKind() != Kind::None); in authenticatesNullValues()
128 return getOtherDiscrimination() != Discrimination::None; in hasOtherDiscrimination()
132 assert(getKind() != Kind::None); in getOtherDiscrimination()
143 case Kind::None: in getKey()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.cpp50 IndexType E = (end() != IndexType::None) ? end() : start(); in contains()
51 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start(); in contains()
62 if (AS < start() || start() == IndexType::None) in merge()
64 if (end() < AE || end() == IndexType::None) { in merge()
120 if (AE == IndexType::None) in addsub()
126 assert(AE != IndexType::None); in addsub()
133 if (BE == IndexType::None) in addsub()
164 assert(getIndex(&In) == IndexType::None && "Instruction already in map"); in InstrIndexMap()
168 Last = B.empty() ? IndexType::None : unsigned(Idx)-1; in InstrIndexMap()
181 return IndexType::None; in getIndex()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DRichManglingContext.cpp37 assert(new_provider != None && "Only reset to a valid provider"); in ResetProvider()
67 assert(m_provider != None && "Initialize a provider first"); in IsCtorOrDtor()
77 case None: in IsCtorOrDtor()
113 assert(m_provider != None && "Initialize a provider first"); in ParseFunctionBaseName()
123 case None: in ParseFunctionBaseName()
130 assert(m_provider != None && "Initialize a provider first"); in ParseFunctionDeclContextName()
140 case None: in ParseFunctionDeclContextName()
147 assert(m_provider != None && "Initialize a provider first"); in ParseFullName()
158 case None: in ParseFullName()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h214 None = 0x0000, enumerator
231 None = 0x00000000, enumerator
257 None = 0x00, enumerator
265 None = 0x00, enumerator
273 None = 0, enumerator
292 None = 0x0000, enumerator
312 None = 0x0000, enumerator
323 None = 0, enumerator
373 None = 0x00000000, enumerator
409 None = 0x00, enumerator
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp133 ClassOptions::None; in hasConstructor()
140 ModifierOptions::None; in isConstType()
148 ClassOptions::None; in hasAssignmentOperator()
156 ClassOptions::None; in hasCastOperator()
164 ClassOptions::None; in hasNestedTypes()
172 ClassOptions::None; in hasOverloadedOperator()
181 return (Tag->Options & ClassOptions::Intrinsic) != ClassOptions::None; in isIntrinsic()
188 return (Tag->Options & ClassOptions::Nested) != ClassOptions::None; in isNested()
195 return (Tag->Options & ClassOptions::Packed) != ClassOptions::None; in isPacked()
204 return (Tag->Options & ClassOptions::Scoped) != ClassOptions::None; in isScoped()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dvarmod-no-match.mk45 .if ${:U word :None:Ntwo:Nthree} != ""
50 .if ${:U two :None:Ntwo:Nthree} != ""
68 .if ${:U word :None:Ntwo:Nthree}
73 .if ${:U two :None:Ntwo:Nthree}
85 .if !empty(:U word :None:Ntwo:Nthree)
90 .if !empty(:U two :None:Ntwo:Nthree)

12345678910>>...30