Home
last modified time | relevance | path

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

12345678910>>...20

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp52 static ConstString g_name("objc"); in GetPluginNameStatic()
217 return ConstString(strm.GetString()); in GetFullNameWithoutCategory()
225 return ConstString(); in GetFullNameWithoutCategory()
243 ConstString name_sans_category = in GetMethodNameVariants()
375 ConstString("Rect"), objc_flags); in LoadObjCFormatters()
918 std::vector<ConstString>
921 std::vector<ConstString> result; in GetPossibleFormattersMatches()
983 ConstString name(key); in GetTypeScavenger()
1013 ConstString key_cs(key); in GetTypeScavenger()
1053 static ConstString g_CFBag("CFBag"); in GetFormatterPrefixSuffix()
[all …]
H A DObjCLanguage.h59 ConstString GetFullName() const { return m_full; } in GetFullName()
66 ConstString GetClassName();
68 ConstString GetClassNameWithCategory();
70 ConstString GetCategory();
72 ConstString GetSelector();
75 ConstString
77 ConstString m_class; // Class name: "NSString"
78 ConstString
80 ConstString m_category; // Category: "my_additions"
111 std::vector<ConstString>
[all …]
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.cpp321 static ConstString g_TypeHint("NSArray"); in NSArraySummaryProvider()
347 ConstString class_name(descriptor->GetClassName()); in NSArraySummaryProvider()
349 static const ConstString g_NSArrayI("__NSArrayI"); in NSArraySummaryProvider()
350 static const ConstString g_NSArrayM("__NSArrayM"); in NSArraySummaryProvider()
353 static const ConstString g_NSArray0("__NSArray0"); in NSArraySummaryProvider()
525 ConstString name) { in GetIndexOfChildWithName()
613 GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName()
703 ConstString name) { in GetIndexOfChildWithName()
732 ConstString name) { in GetIndexOfChildWithName()
733 static const ConstString g_zero("[0]"); in GetIndexOfChildWithName()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DConstString.h40 class ConstString {
45 ConstString() = default;
47 explicit ConstString(const llvm::StringRef &s);
57 explicit ConstString(const char *cstr);
125 bool operator==(ConstString rhs) const {
182 bool operator<(ConstString rhs) const;
252 static bool Equals(ConstString lhs, ConstString rhs,
276 static int Compare(ConstString lhs, ConstString rhs,
415 ConstString s; in FromStringPoolPointer()
424 Stream &operator<<(Stream &s, ConstString str);
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DPluginManager.h46 class ConstString; variable
87 RegisterPlugin(ConstString name, const char *description,
101 RegisterPlugin(ConstString name, const char *description,
146 ConstString name, const char *description,
336 ConstString name, const char *description,
345 GetTraceCreateCallback(ConstString plugin_name);
378 ConstString name, const char *description,
466 ConstString description, bool is_global_property);
473 ConstString description, bool is_global_property);
480 ConstString description, bool is_global_property);
[all …]
H A DMangled.h62 explicit Mangled(ConstString name);
136 ConstString GetDemangledName() const;
142 ConstString GetDisplayDemangledName() const;
144 void SetDemangledName(ConstString name) { m_demangled = name; } in SetDemangledName()
146 void SetMangledName(ConstString name) { m_mangled = name; } in SetMangledName()
152 ConstString &GetMangledName() { return m_mangled; } in GetMangledName()
158 ConstString GetMangledName() const { return m_mangled; } in GetMangledName()
178 bool NameMatches(ConstString name) const { in NameMatches()
208 void SetValue(ConstString name, bool is_mangled);
217 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()
98 const Entry *FindFirstValueForName(ConstString unique_cstr) const { in FindFirstValueForName()
189 equal_range(ConstString unique_cstr) const { in equal_range()
200 bool operator()(const Entry &lhs, ConstString rhs) { in operator()
204 bool operator()(ConstString lhs, const Entry &rhs) { in operator()
[all …]
H A DValueObjectConstResult.h43 ConstString name, const DataExtractor &data,
48 ConstString name, const lldb::DataBufferSP &result_data_sp,
54 ConstString name, lldb::addr_t address,
58 Value &value, ConstString name,
71 ConstString GetTypeName() override;
73 ConstString GetDisplayTypeName() override;
86 ConstString name_const_str = ConstString()) override;
115 ConstString m_type_name;
130 const CompilerType &compiler_type, ConstString name,
135 const CompilerType &compiler_type, ConstString name,
[all …]
H A DModule.h114 const ConstString *object_name = nullptr,
248 ConstString name,
251 void FindSymbolsWithNameAndType(ConstString name,
305 void FindFunctions(ConstString name,
368 void FindGlobalVariables(ConstString name,
447 void FindTypesInNamespace(ConstString type_name,
544 ConstString GetObjectName() const;
890 ConstString GetName() const { return m_name; } in GetName()
892 void SetName(ConstString name) { m_name = name; } in SetName()
908 ConstString m_name;
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp58 static ConstString g_name("cplusplus"); in GetPluginNameStatic()
325 return ConstString(); in substituteImpl()
328 return ConstString(); in substituteImpl()
333 return ConstString(Result); in substituteImpl()
401 const ConstString mangled_name, std::set<ConstString> &alternates) { in FindAlternateFunctionManglings()
431 if (ConstString char_fixup = in FindAlternateFunctionManglings()
436 if (ConstString long_fixup = in FindAlternateFunctionManglings()
442 if (ConstString ulong_fixup = in FindAlternateFunctionManglings()
446 if (ConstString ctor_fixup = in FindAlternateFunctionManglings()
489 ConstString( in LoadLibCxxFormatters()
[all …]
H A DLibCxxUnorderedMap.cpp42 size_t GetIndexOfChildWithName(ConstString name) override;
89 node_sp->GetChildMemberWithName(ConstString("__hash_"), true); in GetChildAtIndex()
172 ConstString("__p2_"), true); in Update()
174 llvm::SmallVector<ConstString, 3> next_path; in Update()
179 ConstString("__first_"), true); in Update()
180 next_path.append({ConstString("__p1_"), ConstString("__first_"), in Update()
181 ConstString("__next_")}); in Update()
187 ConstString("__value_"), true); in Update()
188 next_path.append({ConstString("__p1_"), ConstString("__value_"), in Update()
189 ConstString("__next_")}); in Update()
[all …]
H A DLibCxxVariant.cpp71 impl_sp->GetChildMemberWithName(ConstString("__index"), true)); in LibcxxVariantGetIndexValidity()
86 impl_sp->GetChildMemberWithName(ConstString("__index"), true)); in LibcxxVariantIndexValue()
96 impl_sp->GetChildMemberWithName(ConstString("__data"), true)); in LibcxxVariantGetNthHead()
104 current_level->GetChildMemberWithName(ConstString("__tail"), true)); in LibcxxVariantGetNthHead()
112 return current_level->GetChildMemberWithName(ConstString("__head"), true); in LibcxxVariantGetNthHead()
125 valobj_sp->GetChildMemberWithName(ConstString("__impl"), true)); in LibcxxVariantSummaryProvider()
176 size_t GetIndexOfChildWithName(ConstString name) override { in GetIndexOfChildWithName()
193 m_backend.GetChildMemberWithName(ConstString("__impl"), true)); in Update()
215 m_backend.GetChildMemberWithName(ConstString("__impl"), true)); in GetChildAtIndex()
240 nth_head->GetChildMemberWithName(ConstString("__value"), true)); in GetChildAtIndex()
[all …]
H A DLibCxxMap.cpp33 static ConstString g_left("__left_"); in left()
41 static ConstString g_right("__right_"); in right()
50 static ConstString g_parent("__parent_"); in parent()
216 static ConstString g___pair3_("__pair3_"); in CalculateNumChildren()
217 static ConstString g___first_("__first_"); in CalculateNumChildren()
251 static ConstString g_tree_("__tree_"); in GetDataType()
252 static ConstString g_pair3("__pair3_"); in GetDataType()
305 ConstString(), in GetValueOffset()
333 static ConstString g___cc("__cc"); in GetChildAtIndex()
334 static ConstString g___nc("__nc"); in GetChildAtIndex()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DPathMappingList.h35 void Append(ConstString path, ConstString replacement,
49 bool GetPathsAtIndex(uint32_t idx, ConstString &path,
50 ConstString &new_path) const;
52 void Insert(ConstString path, ConstString replacement,
57 bool Remove(ConstString path, bool notify);
59 bool Replace(ConstString path, ConstString replacement,
62 bool Replace(ConstString path, ConstString replacement,
64 bool RemapPath(ConstString path, ConstString &new_path) const;
107 uint32_t FindIndexForPath(ConstString path) const;
112 typedef std::pair<ConstString, ConstString> pair;
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DConstString.cpp206 ConstString::ConstString(const char *cstr) in ConstString() function in ConstString
209 ConstString::ConstString(const char *cstr, size_t cstr_len) in ConstString() function in ConstString
212 ConstString::ConstString(const llvm::StringRef &s) in ConstString() function in ConstString
215 bool ConstString::operator<(ConstString rhs) const { in operator <()
238 size_t ConstString::GetLength() const { in GetLength()
242 bool ConstString::Equals(ConstString lhs, ConstString rhs, in Equals()
259 int ConstString::Compare(ConstString lhs, ConstString rhs, in Compare()
316 bool ConstString::GetMangledCounterpart(ConstString &counterpart) const { in GetMangledCounterpart()
335 void llvm::format_provider<ConstString>::format(const ConstString &CS, in format()
341 void llvm::yaml::ScalarTraits<ConstString>::output(const ConstString &Val, in output()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DPluginManager.cpp194 ConstString name;
381 ConstString name, const char *description, in RegisterPlugin()
414 ConstString name, const char *description, in RegisterPlugin()
442 ConstString name, const char *description, in RegisterPlugin()
460 ConstString name) { in GetEmulateInstructionCreateCallbackForPluginName()
475 ConstString name, const char *description, in RegisterPlugin()
549 ConstString name, const char *description, in RegisterPlugin()
595 ConstString name, const char *description, in RegisterPlugin()
675 ConstString name) { in GetObjectFileCreateMemoryCallbackForPluginName()
1422 GetDebuggerPropertyForPluginsPtr(Debugger &, ConstString, ConstString,
[all …]
H A DMangled.cpp37 static ConstString GetDemangledNameWithoutArguments(ConstString mangled, in GetDemangledNameWithoutArguments()
57 return ConstString(shortname); in GetDemangledNameWithoutArguments()
95 SetValue(ConstString(name)); in Mangled()
124 return ConstString::Compare(a.GetName(ePreferMangled), in Compare()
130 void Mangled::SetValue(ConstString s, bool mangled) { in SetValue()
145 void Mangled::SetValue(ConstString name) { in SetValue()
287 ConstString Mangled::GetDemangledName() const { in GetDemangledName()
329 ConstString
338 ConstString demangled = GetDemangledName(); in NameMatches()
347 ConstString demangled = GetDemangledName(); in GetName()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DPathMappingList.cpp33 ConstString NormalizePath(ConstString path) { in NormalizePath()
36 return ConstString(FileSpec(path.GetStringRef()).GetPath()); in NormalizePath()
62 void PathMappingList::Append(ConstString path, in Append()
81 void PathMappingList::Insert(ConstString path, in Insert()
96 bool PathMappingList::Replace(ConstString path, in Replace()
146 bool PathMappingList::RemapPath(ConstString path, in RemapPath()
147 ConstString &new_path) const { in RemapPath()
227 bool PathMappingList::Replace(ConstString path, in Replace()
240 bool PathMappingList::Remove(ConstString path, bool notify) { in Remove()
266 PathMappingList::FindIteratorForPath(ConstString path) { in FindIteratorForPath()
[all …]
H A DAssertFrameRecognizer.cpp24 std::vector<ConstString> symbols;
45 location.symbols.push_back(ConstString("__pthread_kill")); in GetAbortLocation()
49 location.symbols.push_back(ConstString("raise")); in GetAbortLocation()
50 location.symbols.push_back(ConstString("__GI_raise")); in GetAbortLocation()
51 location.symbols.push_back(ConstString("gsignal")); in GetAbortLocation()
52 location.symbols.push_back(ConstString("pthread_kill")); in GetAbortLocation()
78 location.symbols.push_back(ConstString("__assert_rtn")); in GetAssertLocation()
82 location.symbols.push_back(ConstString("__assert_fail")); in GetAssertLocation()
83 location.symbols.push_back(ConstString("__GI___assert_fail")); in GetAssertLocation()
167 ConstString func_name = sym_ctx.GetFunctionName(); in RecognizeFrame()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h54 AnyMatches(ConstString type_name,
62 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,
131 AnyMatches(ConstString type_name,
170 static ConstString GetTypeForCache(ValueObject &, lldb::DynamicValueType);
193 ConstString m_default_category_name;
194 ConstString m_system_category_name;
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h38 ConstString name;
130 ConstString GetName();
146 ConstString GetQualifiedName();
215 ConstString m_name;
272 ConstString GetName() const;
379 ConstString m_name;
406 ConstString GetName() const;
432 ConstString m_type_name;
446 ConstString GetName() const;
468 ConstString m_name;
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.h87 ConstString m_kernel_name;
151 ConstString m_name;
163 ConstString m_name;
242 ConstString m_name;
245 ConstString m_name;
254 ConstString name, in RSScriptGroupBreakpointResolver()
284 FindScriptGroup(ConstString name) const { in FindScriptGroup()
286 if (ConstString::Compare(sg->m_name, name) == 0) in FindScriptGroup()
292 ConstString m_group_name;
402 bool IsKnownKernel(ConstString name) { in IsKnownKernel()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.h126 ConstString name, TypeFromParser type,
149 bool AddValueToStruct(const clang::NamedDecl *decl, ConstString name,
207 lldb::offset_t &offset, ConstString &name,
244 ConstString name, lldb::SymbolType symbol_type,
247 lldb::addr_t GetSymbolAddress(ConstString name,
290 virtual clang::NamedDecl *GetPersistentDecl(ConstString name);
365 ConstString
433 void LookupInModulesDeclVendor(NameSearchContext &context, ConstString name);
451 bool LookupLocalVariable(NameSearchContext &context, ConstString name,
486 ConstString name,
[all …]

12345678910>>...20