Home
last modified time | relevance | path

Searched refs:type_name (Results 1 – 25 of 65) sorted by relevance

123

/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBTypeCategory.cpp300 SBTypeCategory::AddTypeFormat (SBTypeNameSpecifier type_name, in AddTypeFormat() argument
306 if (!type_name.IsValid()) in AddTypeFormat()
312 if (type_name.IsRegex()) in AddTypeFormat()
313 …FormatsContainer()->Add(lldb::RegularExpressionSP(new RegularExpression(type_name.GetName())), for… in AddTypeFormat()
315 … m_opaque_sp->GetTypeFormatsContainer()->Add(ConstString(type_name.GetName()), format.GetSP()); in AddTypeFormat()
321 SBTypeCategory::DeleteTypeFormat (SBTypeNameSpecifier type_name) in DeleteTypeFormat() argument
326 if (!type_name.IsValid()) in DeleteTypeFormat()
329 if (type_name.IsRegex()) in DeleteTypeFormat()
330 … return m_opaque_sp->GetRegexTypeFormatsContainer()->Delete(ConstString(type_name.GetName())); in DeleteTypeFormat()
332 return m_opaque_sp->GetTypeFormatsContainer()->Delete(ConstString(type_name.GetName())); in DeleteTypeFormat()
[all …]
HDSBDebugger.cpp1340 SBDebugger::GetFormatForType (SBTypeNameSpecifier type_name) in GetFormatForType() argument
1344 return default_category_sb.GetFormatForType(type_name); in GetFormatForType()
1350 SBDebugger::GetSummaryForType (SBTypeNameSpecifier type_name) in GetSummaryForType() argument
1352 if (type_name.IsValid() == false) in GetSummaryForType()
1354 return SBTypeSummary(DataVisualization::GetSummaryForType(type_name.GetSP())); in GetSummaryForType()
1359 SBDebugger::GetFilterForType (SBTypeNameSpecifier type_name) in GetFilterForType() argument
1361 if (type_name.IsValid() == false) in GetFilterForType()
1363 return SBTypeFilter(DataVisualization::GetFilterForType(type_name.GetSP())); in GetFilterForType()
1368 SBDebugger::GetSyntheticForType (SBTypeNameSpecifier type_name) in GetSyntheticForType() argument
1370 if (type_name.IsValid() == false) in GetSyntheticForType()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDCF.cpp70 ConstString type_name(valobj.GetTypeName()); in CFBagSummaryProvider() local
71 if (type_name == ConstString("__CFBag") || type_name == ConstString("const struct __CFBag")) in CFBagSummaryProvider()
134 ConstString type_name(valobj.GetTypeName()); in CFBitVectorSummaryProvider() local
135type_name == ConstString("__CFMutableBitVector") || type_name == ConstString("__CFBitVector") || t… in CFBitVectorSummaryProvider()
264 ConstString type_name(valobj.GetTypeName()); in CFBinaryHeapSummaryProvider() local
265 …if (type_name == ConstString("__CFBinaryHeap") || type_name == ConstString("const struct __CFBinar… in CFBinaryHeapSummaryProvider()
HDTypeCategory.cpp250 TypeCategoryImpl::AnyMatches(ConstString type_name, in AnyMatches() argument
269 if (GetTypeFormatsContainer()->Get(type_name, format_sp)) in AnyMatches()
280 if (GetRegexTypeFormatsContainer()->Get(type_name, format_sp)) in AnyMatches()
292 if (GetTypeSummariesContainer()->Get(type_name, summary_sp)) in AnyMatches()
303 if (GetRegexTypeSummariesContainer()->Get(type_name, summary_sp)) in AnyMatches()
315 if (GetTypeFiltersContainer()->Get(type_name, filter_sp)) in AnyMatches()
326 if (GetRegexTypeFiltersContainer()->Get(type_name, filter_sp)) in AnyMatches()
339 if (GetTypeSyntheticsContainer()->Get(type_name, synth_sp)) in AnyMatches()
350 if (GetRegexTypeSyntheticsContainer()->Get(type_name, synth_sp)) in AnyMatches()
363 if (GetTypeValidatorsContainer()->Get(type_name, validator_sp)) in AnyMatches()
[all …]
HDFormatManager.cpp175 ConstString type_name(clang_type.GetConstTypeName()); in GetPossibleMatches() local
179 sstring.Printf("%s:%d",type_name.AsCString(),valobj.GetBitfieldBitSize()); in GetPossibleMatches()
184 entries.push_back({type_name,reason,did_strip_ptr,did_strip_ref,did_strip_typedef}); in GetPossibleMatches()
187 if (display_type_name != type_name) in GetPossibleMatches()
899 ConstString type_name, in AddFormat() argument
906 …exTypeFormatsContainer()->Add(RegularExpressionSP(new RegularExpression(type_name.AsCString())),fo… in AddFormat()
908 category_sp->GetTypeFormatsContainer()->Add(type_name, format_sp); in AddFormat()
915 ConstString type_name, in AddStringSummary() argument
923 …TypeSummariesContainer()->Add(RegularExpressionSP(new RegularExpression(type_name.AsCString())),su… in AddStringSummary()
925 category_sp->GetTypeSummariesContainer()->Add(type_name, summary_sp); in AddStringSummary()
[all …]
HDValueObjectPrinter.cpp270 ConstString type_name; in PrintTypeIfNeeded() local
272 type_name = m_valobj->GetDisplayTypeName(); in PrintTypeIfNeeded()
274 type_name = m_valobj->GetQualifiedTypeName(); in PrintTypeIfNeeded()
275 if (type_name) in PrintTypeIfNeeded()
276 m_stream->Printf("(%s) ", type_name.GetCString()); in PrintTypeIfNeeded()
HDTypeFormat.cpp163 TypeFormatImpl_EnumType::TypeFormatImpl_EnumType (ConstString type_name, in TypeFormatImpl_EnumType() argument
166 m_enum_type(type_name), in TypeFormatImpl_EnumType()
HDDataVisualization.cpp115 DataVisualization::AnyMatches (ConstString type_name, in AnyMatches() argument
121 return GetFormatManager().AnyMatches(type_name, in AnyMatches()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDCPPLanguageRuntime.cpp38 Add (ConstString& type_name, in Add() argument
41 m_impl.Insert(type_name.AsCString(), type_equivalent); in Add()
45 FindExactMatches (ConstString& type_name, in FindExactMatches() argument
51 for (ImplData match = m_impl.FindFirstValueForName(type_name.AsCString()); in FindExactMatches()
68 FindPartialMatches (ConstString& type_name, in FindPartialMatches() argument
74 const char* type_name_cstr = type_name.AsCString(); in FindPartialMatches()
209 CPPLanguageRuntime::FindEquivalentNames(ConstString type_name, std::vector<ConstString>& equivalent… in FindEquivalentNames() argument
211 uint32_t count = GetEquivalentsMap().FindExactMatches(type_name, equivalents); in FindEquivalentNames()
215 …&& (strchr(type_name.AsCString(), '<') != NULL // we should only have partial matches when templa… in FindEquivalentNames()
216 …&& strchr(type_name.AsCString(), '>') != NULL); // angle brackets in the type_name before trying t… in FindEquivalentNames()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTContext.cpp837 ClangASTContext::GetBuiltinTypeForDWARFEncodingAndBitSize (const char *type_name, uint32_t dw_ate, … in GetBuiltinTypeForDWARFEncodingAndBitSize() argument
868 if (type_name) in GetBuiltinTypeForDWARFEncodingAndBitSize()
870 if (::strstr(type_name, "complex")) in GetBuiltinTypeForDWARFEncodingAndBitSize()
893 … if (streq(type_name, "float") && QualTypeMatchesBitSize (bit_size, ast, ast->FloatTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
895 … if (streq(type_name, "double") && QualTypeMatchesBitSize (bit_size, ast, ast->DoubleTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
897 … if (streq(type_name, "long double") && QualTypeMatchesBitSize (bit_size, ast, ast->LongDoubleTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
909 if (type_name) in GetBuiltinTypeForDWARFEncodingAndBitSize()
911 if (streq(type_name, "wchar_t") && in GetBuiltinTypeForDWARFEncodingAndBitSize()
915 if (streq(type_name, "void") && in GetBuiltinTypeForDWARFEncodingAndBitSize()
918 if (strstr(type_name, "long long") && in GetBuiltinTypeForDWARFEncodingAndBitSize()
[all …]
HDType.cpp160 const ConstString &type_name = GetName(); in GetDescription() local
161 if (type_name) in GetDescription()
163 *s << ", name = \"" << type_name << '"'; in GetDescription()
165 if (qualified_type_name != type_name) in GetDescription()
888 TypeAndOrName::SetName (const ConstString &type_name) in SetName() argument
890 m_type_name = type_name; in SetName()
/NextBSD/crypto/heimdal/lib/gssapi/krb5/
HDadd_cred.c147 char *type_name = NULL; in _gsskrb5_add_cred() local
179 kret = asprintf(&type_name, "%s:%s", type, name); in _gsskrb5_add_cred()
180 if (kret < 0 || type_name == NULL) { in _gsskrb5_add_cred()
185 kret = krb5_cc_resolve(context, type_name, in _gsskrb5_add_cred()
187 free(type_name); in _gsskrb5_add_cred()
/NextBSD/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_grammar.y172 %type <l_decl> type_name
228 | DT_CTX_DTYPE type_name { $$ = (dt_node_t *)$2; }
261 DT_KEY_XLATOR type_name DT_TOK_LT type_name
265 | DT_KEY_XLATOR type_name DT_TOK_LT type_name
414 | DT_TOK_OFFSETOF DT_TOK_LPAR type_name DT_TOK_COMMA
418 | DT_TOK_OFFSETOF DT_TOK_LPAR type_name DT_TOK_COMMA
422 | DT_TOK_OFFSETOF DT_TOK_LPAR type_name DT_TOK_COMMA
426 | DT_TOK_XLATE DT_TOK_LT type_name DT_TOK_GT
438 | DT_TOK_SIZEOF DT_TOK_LPAR type_name DT_TOK_RPAR {
456 | DT_TOK_LPAR type_name DT_TOK_RPAR cast_expression {
[all …]
/NextBSD/contrib/jansson/src/
HDpack_unpack.c47 #define type_name(x) type_names[json_typeof(x)] macro
369 type_name(root)); in unpack_object()
471 set_error(s, "<validation>", "Expected array, got %s", type_name(root)); in unpack_array()
548 type_name(root)); in unpack()
585 type_name(root)); in unpack()
600 type_name(root)); in unpack()
615 type_name(root)); in unpack()
630 type_name(root)); in unpack()
645 type_name(root)); in unpack()
675 type_name(root)); in unpack()
/NextBSD/contrib/gcclibs/libiberty/
HDcp-demint.c133 const char *type_name) in cplus_demangle_fill_builtin_type() argument
138 if (p == NULL || type_name == NULL) in cplus_demangle_fill_builtin_type()
140 len = strlen (type_name); in cplus_demangle_fill_builtin_type()
144 && strcmp (type_name, cplus_demangle_builtin_types[i].name) == 0) in cplus_demangle_fill_builtin_type()
/NextBSD/contrib/binutils/libiberty/
HDcp-demint.c133 const char *type_name) in cplus_demangle_fill_builtin_type() argument
138 if (p == NULL || type_name == NULL) in cplus_demangle_fill_builtin_type()
140 len = strlen (type_name); in cplus_demangle_fill_builtin_type()
144 && strcmp (type_name, cplus_demangle_builtin_types[i].name) == 0) in cplus_demangle_fill_builtin_type()
/NextBSD/sys/dev/pci/
HDpci_iov_schema.c67 const char *type_name; member
75 .type_name = "bool",
80 .type_name = "string",
85 .type_name = "uint8_t",
91 .type_name = "uint16_t",
97 .type_name = "uint32_t",
103 .type_name = "uint64_t",
109 .type_name = "unicast-mac",
123 if (strcmp(type, validator->type_name) == 0) in pci_iov_schema_find_validator()
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectType.cpp266 … const char *type_name = options->m_target_types.GetStringAtIndex(i); in IOHandlerInputComplete() local
267 CommandObjectTypeSummaryAdd::AddSummary(ConstString(type_name), in IOHandlerInputComplete()
349 AddSummary(ConstString type_name,
561 … const char *type_name = options->m_target_types.GetStringAtIndex(i); in IOHandlerInputComplete() local
562 ConstString const_type_name(type_name); in IOHandlerInputComplete()
634 AddSynth(ConstString type_name,
1612 const char *type_name = command.GetArgumentAtIndex(i); in Execute_ScriptSummary() local
1613 CommandObjectTypeSummaryAdd::AddSummary(ConstString(type_name), in Execute_ScriptSummary()
1849 FixArrayTypeNameWithRegex (ConstString &type_name) in FixArrayTypeNameWithRegex() argument
1851 llvm::StringRef type_name_ref(type_name.GetStringRef()); in FixArrayTypeNameWithRegex()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDClangASTContext.h167 const char *type_name,
226 GetTypeForIdentifier (const ConstString &type_name) in GetTypeForIdentifier() argument
230 if (type_name.GetLength()) in GetTypeForIdentifier()
235 clang::IdentifierInfo &myIdent = ast->Idents.get(type_name.GetCString()); in GetTypeForIdentifier()
253 GetOrCreateStructForIdentifier (const ConstString &type_name,
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDClangFunction.cpp176 std::string type_name; in CompileFunction() local
180type_name = function_clang_type.GetFunctionArgumentTypeAtIndex(i).GetTypeName().AsCString(""); in CompileFunction()
187 type_name = clang_qual_type.GetTypeName().AsCString(""); in CompileFunction()
196 m_wrapper_function_text.append (type_name); in CompileFunction()
202 args_buffer.append (type_name); in CompileFunction()
/NextBSD/contrib/ncurses/ncurses/tinfo/
HDparse_entry.c404 const char *type_name; in _nc_parse_entry() local
407 type_name = "boolean"; in _nc_parse_entry()
410 type_name = "string"; in _nc_parse_entry()
413 type_name = "numeric"; in _nc_parse_entry()
416 type_name = "unknown"; in _nc_parse_entry()
420 type_name, _nc_curr_token.tk_name); in _nc_parse_entry()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDModule.h492 const ConstString &type_name,
499 const ConstString &type_name,
526 const ConstString &type_name,
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDwin32_crashrpt.c339 char *type_name = convert_wbcs_to_ansi(type_name_wbcs); in format_value() local
344 type_name, (DWORD_PTR *)value_addr); in format_value()
347 type_name, *(DWORD_PTR *)value_addr); in format_value()
350 type_name, *(DWORD_PTR *)value_addr); in format_value()
352 free(type_name); in format_value()
HDskel.c39 type_name = 4 enumerator
240 if (skel_char_type[(unsigned char) c] == type_name) in parse()
338 if (data >= end || skel_char_type[(unsigned char) *data] != type_name) in implicit_atom()
459 if (skel_char_type[(unsigned char) skel->data[0]] != type_name) in use_implicit()
/NextBSD/crypto/heimdal/lib/roken/
HDresolve.c599 rk_dns_lookup(const char *domain, const char *type_name) in rk_dns_lookup() argument
603 type = rk_dns_string_to_type(type_name); in rk_dns_lookup()
607 type_name); in rk_dns_lookup()
871 rk_dns_lookup(const char *domain, const char *type_name) in rk_dns_lookup() argument
880 type = rk_dns_string_to_type(type_name); in rk_dns_lookup()
884 type_name); in rk_dns_lookup()
919 rk_dns_lookup(const char *domain, const char *type_name) in rk_dns_lookup() argument

123