Home
last modified time | relevance | path

Searched refs:ConstString (Results 1 – 25 of 410) sorted by relevance

12345678910>>...17

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DConstString.h40 class ConstString {
45 ConstString() = default;
47 explicit ConstString(llvm::StringRef s);
57 explicit ConstString(const char *cstr);
109 bool operator==(ConstString rhs) const {
166 bool operator<(ConstString rhs) const;
241 static bool Equals(ConstString lhs, ConstString rhs,
265 static int Compare(ConstString lhs, ConstString rhs,
402 ConstString s; in FromStringPoolPointer()
411 Stream &operator<<(Stream &s, ConstString str);
[all …]
H A DFileSpec.h223 const ConstString &GetDirectory() const { return m_directory; } in GetDirectory()
229 void SetDirectory(ConstString directory);
240 const ConstString &GetFilename() const { return m_filename; } in GetFilename()
246 void SetFilename(ConstString filename);
317 ConstString GetPathAsConstString(bool denormalize = true) const;
342 ConstString GetFileNameStrippingExtension() const;
423 ConstString m_directory;
426 ConstString m_filename;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DConstString.cpp163 ConstString::MemoryStats stats; in GetMemoryStats()
205 ConstString::ConstString(const char *cstr) in ConstString() function in ConstString
208 ConstString::ConstString(const char *cstr, size_t cstr_len) in ConstString() function in ConstString
211 ConstString::ConstString(llvm::StringRef s) in ConstString() function in ConstString
214 bool ConstString::operator<(ConstString rhs) const { in operator <()
237 size_t ConstString::GetLength() const { in GetLength()
241 bool ConstString::Equals(ConstString lhs, ConstString rhs, in Equals()
258 int ConstString::Compare(ConstString lhs, ConstString rhs, in Compare()
315 bool ConstString::GetMangledCounterpart(ConstString &counterpart) const { in GetMangledCounterpart()
329 ConstString::MemoryStats ConstString::GetMemoryStats() { in GetMemoryStats()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DMangled.h62 explicit Mangled(ConstString name);
129 ConstString GetDemangledName() const;
135 ConstString GetDisplayDemangledName() const;
137 void SetDemangledName(ConstString name) { m_demangled = name; } in SetDemangledName()
139 void SetMangledName(ConstString name) { m_mangled = name; } in SetMangledName()
145 ConstString &GetMangledName() { return m_mangled; } in GetMangledName()
151 ConstString GetMangledName() const { return m_mangled; } in GetMangledName()
162 ConstString GetName(NamePreference preference = ePreferDemangled) const;
171 bool NameMatches(ConstString name) const { in NameMatches()
195 void SetValue(ConstString name);
[all …]
H A DUniqueCStringMap.h29 Entry(ConstString cstr, const T &v) : cstring(cstr), value(v) {} in Entry()
31 ConstString cstring;
42 void Append(ConstString unique_cstr, const T &value) { in Append()
62 ConstString GetCStringAtIndexUnchecked(uint32_t idx) const { in GetCStringAtIndexUnchecked()
76 ConstString GetCStringAtIndex(uint32_t idx) const { in GetCStringAtIndex()
86 T Find(ConstString unique_cstr, T fail_value) const { in Find()
203 equal_range(ConstString unique_cstr) const { in equal_range()
214 bool operator()(const Entry &lhs, ConstString rhs) { in operator()
218 bool operator()(ConstString lhs, const Entry &rhs) { in operator()
222 bool operator()(ConstString lhs, ConstString rhs) { in operator()
[all …]
H A DValueObjectConstResult.h44 ConstString name, const DataExtractor &data,
49 ConstString name, const lldb::DataBufferSP &result_data_sp,
55 ConstString name, lldb::addr_t address,
59 Value &value, ConstString name,
72 ConstString GetTypeName() override;
74 ConstString GetDisplayTypeName() override;
87 ConstString name_const_str = ConstString()) override;
116 ConstString m_type_name;
131 const CompilerType &compiler_type, ConstString name,
136 const CompilerType &compiler_type, ConstString name,
[all …]
H A DModule.h127 ConstString object_name = ConstString(), lldb::offset_t object_offset = 0,
262 void FindSymbolsWithNameAndType(ConstString name,
334 void FindFunctions(ConstString name,
405 void FindGlobalVariables(ConstString name,
531 ConstString GetObjectName() const;
911 ConstString GetName() const { return m_name; } in GetName()
913 void SetName(ConstString name) { m_name = name; } in SetName()
915 ConstString GetLookupName() const { return m_lookup_name; } in GetLookupName()
928 ConstString function_name,
935 ConstString m_name;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.h46 virtual bool Match(ConstString class_name) = 0;
52 Prefix(ConstString p);
54 bool Match(ConstString class_name) override;
57 ConstString m_prefix;
61 Full(ConstString n);
63 bool Match(ConstString class_name) override;
66 ConstString m_name;
70 MatcherUP GetFullMatch(ConstString n) { return std::make_unique<Full>(n); } in GetFullMatch()
72 MatcherUP GetPrefixMatch(ConstString p) { in GetPrefixMatch()
H A DNSArray.cpp363 ConstString class_name(descriptor->GetClassName()); in NSArraySummaryProvider()
365 static const ConstString g_NSArrayI("__NSArrayI"); in NSArraySummaryProvider()
366 static const ConstString g_NSArrayM("__NSArrayM"); in NSArraySummaryProvider()
369 static const ConstString g_NSArray0("__NSArray0"); in NSArraySummaryProvider()
542 ConstString name) { in GetIndexOfChildWithName()
629 GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName()
718 ConstString name) { in GetIndexOfChildWithName()
747 ConstString name) { in GetIndexOfChildWithName()
748 static const ConstString g_zero("[0]"); in GetIndexOfChildWithName()
772 static const ConstString g_zero("[0]"); in GetChildAtIndex()
[all …]
H A DNSDictionary.cpp35 ConstString p) in Prefix()
39 ConstString class_name) { in Match()
47 ConstString class_name) { in Match()
114 size_t GetIndexOfChildWithName(ConstString name) override;
437 ConstString class_name(descriptor->GetClassName()); in NSDictionarySummaryProvider()
541 ConstString class_name(descriptor->GetClassName()); in NSDictionarySyntheticFrontEndCreator()
601 GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName()
738 GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName()
871 GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName()
985 GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h62 static bool GetSummaryFormat(ConstString type,
65 static void Add(ConstString type,
68 static bool Delete(ConstString type);
81 static bool GetCategory(ConstString category,
88 static void Add(ConstString category);
90 static bool Delete(ConstString category);
94 static void Clear(ConstString category);
96 static void Enable(ConstString category,
101 static void Disable(ConstString category);
H A DFormatManager.h53 EnableCategory(ConstString category_name,
58 void EnableCategory(ConstString category_name, in EnableCategory()
67 void DisableCategory(ConstString category_name) { in DisableCategory()
85 bool DeleteCategory(ConstString category_name) { in DeleteCategory()
103 return GetCategory(ConstString(category_name));
106 lldb::TypeCategoryImplSP GetCategory(ConstString category_name,
170 static ConstString GetTypeForCache(ValueObject &, lldb::DynamicValueType);
192 ConstString m_default_category_name;
193 ConstString m_system_category_name;
194 ConstString m_vectortypes_category_name;
H A DFormatCache.h48 typedef std::map<ConstString, Entry> CacheMap;
55 Entry &GetEntry(ConstString type);
60 template <typename ImplSP> bool Get(ConstString type, ImplSP &format_impl_sp);
61 void Set(ConstString type, lldb::TypeFormatImplSP &format_sp);
62 void Set(ConstString type, lldb::TypeSummaryImplSP &summary_sp);
63 void Set(ConstString type, lldb::SyntheticChildrenSP &synthetic_sp);
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h61 ConstString name;
437 ConstString GetName();
439 ConstString GetBaseName();
510 ConstString m_name;
591 ConstString GetName() const;
697 ConstString m_name;
724 ConstString GetName() const;
752 ConstString m_type_name;
766 ConstString GetName() const;
788 ConstString m_name;
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPathMappingList.h64 bool GetPathsAtIndex(uint32_t idx, ConstString &path,
65 ConstString &new_path) const;
72 bool Remove(ConstString path, bool notify);
78 bool RemapPath(ConstString path, ConstString &new_path) const;
145 typedef std::pair<ConstString, ConstString> pair;
150 iterator FindIteratorForPath(ConstString path);
152 const_iterator FindIteratorForPath(ConstString path) const;
H A DLanguage.h191 ConstString m_name;
195 MethodNameVariant(ConstString name, lldb::FunctionNameType type) in MethodNameVariant()
197 ConstString GetName() const { return m_name; } in GetName()
204 GetMethodNameVariants(ConstString method_name) const { in GetMethodNameVariants()
240 ConstString demangled) const;
267 virtual ConstString
269 if (ConstString demangled = mangled.GetDemangledName()) in GetDemangledFunctionNameWithoutArguments()
329 virtual std::vector<ConstString>
331 return std::vector<ConstString>(); in GenerateAlternateFunctionManglings()
334 virtual ConstString
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.h127 ConstString name, TypeFromParser type,
150 bool AddValueToStruct(const clang::NamedDecl *decl, ConstString name,
208 lldb::offset_t &offset, ConstString &name,
245 ConstString name, lldb::SymbolType symbol_type,
248 lldb::addr_t GetSymbolAddress(ConstString name,
291 virtual clang::NamedDecl *GetPersistentDecl(ConstString name);
366 ConstString
432 void LookupInModulesDeclVendor(NameSearchContext &context, ConstString name);
450 bool LookupLocalVariable(NameSearchContext &context, ConstString name,
485 ConstString name,
[all …]
H A DClangPersistentVariables.cpp41 ExecutionContextScope *exe_scope, ConstString name, in CreatePersistentVariable()
76 ConstString type_name) { in GetCompilerTypeFromPersistentDecl()
91 ConstString name, clang::NamedDecl *decl, in RegisterPersistentDecl()
100 ConstString(enumerator_decl->getNameAsString()).GetCString(), p)); in RegisterPersistentDecl()
106 ClangPersistentVariables::GetPersistentDecl(ConstString name) { in GetPersistentDecl()
127 ConstString
135 return ConstString(name); in GetNextPersistentVariableName()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DAssertFrameRecognizer.cpp21 std::vector<ConstString> symbols;
42 location.symbols.push_back(ConstString("__pthread_kill")); in GetAbortLocation()
46 location.symbols.push_back(ConstString("raise")); in GetAbortLocation()
47 location.symbols.push_back(ConstString("__GI_raise")); in GetAbortLocation()
48 location.symbols.push_back(ConstString("gsignal")); in GetAbortLocation()
49 location.symbols.push_back(ConstString("pthread_kill")); in GetAbortLocation()
75 location.symbols.push_back(ConstString("__assert_rtn")); in GetAssertLocation()
79 location.symbols.push_back(ConstString("__assert_fail")); in GetAssertLocation()
80 location.symbols.push_back(ConstString("__GI___assert_fail")); in GetAssertLocation()
164 ConstString func_name = sym_ctx.GetFunctionName(); in RecognizeFrame()
H A DStackFrameRecognizer.cpp51 StackFrameRecognizerSP recognizer, ConstString module, in AddRecognizer()
52 llvm::ArrayRef<ConstString> symbols, bool first_instruction_only) { in AddRecognizer()
62 ConstString(), module, std::vector<ConstString>(), in AddRecognizer()
68 llvm::ArrayRef<ConstString>, bool)> &callback) { in ForEach() argument
80 llvm::ArrayRef(ConstString(symbol_name)), true); in ForEach()
111 ConstString function_name = symctx.GetFunctionName(); in GetRecognizerForFrame()
115 ConstString module_name = module_sp->GetFileSpec().GetFilename(); in GetRecognizerForFrame()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h69 ConstString GetFunctionName() { return m_name; } in GetFunctionName()
104 lldb::addr_t FindSymbol(ConstString name, bool &missing_weak);
116 ConstString m_name; ///< The function's name
217 void CollectCandidateCNames(std::vector<ConstString> &C_names,
218 ConstString name);
220 void CollectCandidateCPlusPlusNames(std::vector<ConstString> &CPP_names,
224 lldb::addr_t FindInSymbols(const std::vector<ConstString> &names,
228 lldb::addr_t FindInRuntimes(const std::vector<ConstString> &names,
234 void ReportSymbolLookupError(ConstString name);
381 const ConstString m_name;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h33 MethodName(ConstString s) in MethodName()
47 ConstString GetFullName() const { return m_full; } in GetFullName()
86 ConstString m_full; // Full name:
136 ConstString demangled) const override;
138 ConstString
164 std::vector<ConstString>
165 GenerateAlternateFunctionManglings(const ConstString mangled) const override;
167 ConstString FindBestAlternateFunctionMangledName(
H A DLibCxxVariant.cpp151 *valobj_sp, {ConstString("__impl_"), ConstString("__impl")}); in LibcxxVariantSummaryProvider()
202 size_t GetIndexOfChildWithName(ConstString name) override { in GetIndexOfChildWithName()
219 m_backend, {ConstString("__impl_"), ConstString("__impl")}); in Update()
241 m_backend, {ConstString("__impl_"), ConstString("__impl")}); in GetChildAtIndex()
272 return head_value->Clone(ConstString("Value")); in GetChildAtIndex()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatCache.cpp54 FormatCache::Entry &FormatCache::GetEntry(ConstString type) { in GetEntry()
77 bool FormatCache::Get(ConstString type, ImplSP &format_impl_sp) { in Get()
93 FormatCache::Get<lldb::TypeFormatImplSP>(ConstString, lldb::TypeFormatImplSP &);
95 FormatCache::Get<lldb::TypeSummaryImplSP>(ConstString,
98 FormatCache::Get<lldb::SyntheticChildrenSP>(ConstString,
102 void FormatCache::Set(ConstString type, lldb::TypeFormatImplSP &format_sp) { in Set()
107 void FormatCache::Set(ConstString type, lldb::TypeSummaryImplSP &summary_sp) { in Set()
112 void FormatCache::Set(ConstString type, in Set()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterFallback.cpp16 ConstString(#name), empty_alt_name, reg_set, size, LLDB_INVALID_INDEX32, \
25 ConstString empty_alt_name; in GetRegisters_aarch64()
26 ConstString reg_set{"general purpose registers"}; in GetRegisters_aarch64()
40 ConstString empty_alt_name; in GetRegisters_msp430()
41 ConstString reg_set{"general purpose registers"}; in GetRegisters_msp430()
52 ConstString empty_alt_name; in GetRegisters_x86()
53 ConstString reg_set{"general purpose registers"}; in GetRegisters_x86()
65 ConstString empty_alt_name; in GetRegisters_x86_64()
66 ConstString reg_set{"general purpose registers"}; in GetRegisters_x86_64()

12345678910>>...17