Searched refs:name_cstr (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangPersistentVariables.cpp67 char name_cstr[256]; local
68 ::snprintf (name_cstr, sizeof(name_cstr), "$%u", m_next_persistent_variable_id++);
69 ConstString name(name_cstr);
H A DIRDynamicChecks.cpp539 const char* name_cstr = name_str.c_str(); local
542 log->Printf("Found call to %s: %s\n", name_cstr, PrintValue(call_inst).c_str());
547 if (!strcmp(name_cstr, "objc_msgSend"))
554 if (!strcmp(name_cstr, "objc_msgSend_stret"))
561 if (!strcmp(name_cstr, "objc_msgSend_fpret"))
568 if (!strcmp(name_cstr, "objc_msgSendSuper"))
575 if (!strcmp(name_cstr, "objc_msgSendSuper_stret"))
H A DIRForTarget.cpp222 const char *name_cstr = name.GetCString(); local
223 if (name_cstr && strncmp(name_cstr, "_ZNKSbIcE", strlen("_ZNKSbIcE")) == 0)
226 alternate_mangling.append (name_cstr + strlen("_ZNKSbIcE"));
1650 lldb_private::ConstString name_cstr(name.str().c_str());
1651 lldb::addr_t class_ptr = m_decl_map->GetSymbolAddress(name_cstr, lldb::eSymbolTypeObjCClass);
1654 log->Printf("Found reference to Objective-C class %s (0x%llx)", name_cstr.AsCString(), (unsigned long long)class_ptr);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DTypeList.cpp187 GetTypeScopeAndBasename(const char* name_cstr, std::string &scope, std::string &basename, bool *exact_ptr) argument
191 if (name_cstr && name_cstr[0])
193 const char *basename_cstr = name_cstr;
205 if (basename_cstr > name_cstr)
207 scope.assign (name_cstr, basename_cstr - name_cstr);
H A DType.cpp738 Type::GetTypeScopeAndBasename (const char* &name_cstr, argument
747 if (name_cstr && name_cstr[0])
749 llvm::StringRef name_strref(name_cstr);
752 name_cstr += 7;
757 name_cstr += 6;
762 name_cstr += 6;
767 name_cstr += 5;
772 name_cstr += 8;
775 const char *basename_cstr = name_cstr;
[all...]
H A DSymtab.cpp1114 const char *name_cstr = name.GetCString(); local
1159 for (match = m_basename_to_index.FindFirstValueForName(name_cstr);
1176 for (match = m_method_to_index.FindFirstValueForName(name_cstr);
1193 for (match = m_selector_to_index.FindFirstValueForName(name_cstr);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectFrame.cpp402 const char *name_cstr = NULL; local
424 for (idx = 0; (name_cstr = command.GetArgumentAtIndex(idx)) != NULL; ++idx)
429 RegularExpression regex (name_cstr);
430 if (regex.Compile(name_cstr))
465 result.GetErrorStream().Printf ("error: no variables matched the regular expression '%s'.\n", name_cstr);
474 result.GetErrorStream().Printf ("error: unkown regex error when compiling '%s'\n", name_cstr);
483 valobj_sp = frame->GetValueForVariableExpressionPath (name_cstr,
501 options.SetRootValueObjectName(valobj_sp->GetParent() ? name_cstr : NULL);
510 result.GetErrorStream().Printf ("error: unable to find any variable expression path that matches '%s'\n", name_cstr);
577 options.SetRootValueObjectName(name_cstr);
[all...]
H A DCommandObjectTarget.cpp1780 const char *name_cstr,
1783 if (module && name_cstr && name_cstr[0])
1791 ConstString name(name_cstr);
1833 const char *name_cstr,
1844 ConstString name(name_cstr);
1777 LookupTypeInModule(CommandInterpreter &interpreter, Stream &strm, Module *module, const char *name_cstr, bool name_is_regex) argument
1830 LookupTypeHere(CommandInterpreter &interpreter, Stream &strm, const SymbolContext &sym_ctx, const char *name_cstr, bool name_is_regex) argument
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp31 const char *name_cstr,
44 if (!m_regex.Compile (name_cstr))
49 log->Warning ("function name regexp: \"%s\" did not compile.", name_cstr);
54 AddNameLookup (ConstString(name_cstr), name_type_mask);
30 BreakpointResolverName(Breakpoint *bkpt, const char *name_cstr, uint32_t name_type_mask, Breakpoint::MatchType type, bool skip_prologue) argument
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeSynthetic.h415 const char* name_cstr = name.GetCString(); local
426 if (!::strcmp(name_cstr, expr_cstr))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DModule.cpp1599 const char *name_cstr = name.GetCString(); local
1607 if (CPPLanguageRuntime::IsCPPMangledName (name_cstr))
1609 else if (ObjCLanguageRuntime::IsPossibleObjCMethodName (name_cstr))
1613 if (ObjCLanguageRuntime::IsPossibleObjCSelector(name_cstr))
1620 if (CPPLanguageRuntime::StripNamespacesFromVariableName (name_cstr, base_name_start, base_name_end))
1656 if (!CPPLanguageRuntime::StripNamespacesFromVariableName (name_cstr, base_name_start, base_name_end))
1667 if (!ObjCLanguageRuntime::IsPossibleObjCSelector(name_cstr))
1678 base_name_start != name_cstr &&
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBModule.cpp517 SBModule::FindFirstType (const char *name_cstr) argument
521 if (name_cstr && module_sp)
525 ConstString name(name_cstr);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp250 const char *name_cstr = GetRootNameForDisplay(""); local
251 m_stream->Printf ("%s =", name_cstr);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DType.h253 GetTypeScopeAndBasename (const char* &name_cstr,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp3167 const char *name_cstr = name.GetCString(); local
3171 if (!CPPLanguageRuntime::StripNamespacesFromVariableName(name_cstr, base_name_start, base_name_end))
3172 base_name_start = name_cstr;
3613 const char *name_cstr = name.GetCString(); local
3637 num_matches = m_apple_names_ap->FindByName (name_cstr, die_offsets);
3659 die_offset, name_cstr);
3669 num_matches = m_apple_names_ap->FindByName (name_cstr, die_offsets);
3695 die_offset, name_cstr);
3708 num_matches = m_apple_names_ap->FindByName (name_cstr, die_offsets);
3777 die_offset, name_cstr);
3998 const char *name_cstr = name.GetCString(); local
4106 const char *name_cstr = name.GetCString(); local
4852 const char *name_cstr = type_name.GetCString(); local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp802 const char* name_cstr = name.c_str(); local
805 if (CommandExists(name_cstr))
813 if (UserCommandExists(name_cstr))

Completed in 101 milliseconds