Searched refs:GetCString (Results 1 - 25 of 137) sorted by relevance

123456

/external/lldb/scripts/Python/interface/
H A DSBError.i68 GetCString () const;
116 __swig_getmethods__["description"] = GetCString
117 if _newclass: description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfoEntry.h38 GetCString() const;
H A DNameToDIE.cpp35 m_map.Append(name.GetCString(), die_offset);
41 return m_map.GetValues (name.GetCString(), info_array);
H A DUniqueDWARFASTType.h148 m_collection[name.GetCString()].Append (entry);
160 const char *unique_name_cstr = name.GetCString();
H A DDWARFDebugMacinfoEntry.cpp30 DWARFDebugMacinfoEntry::GetCString() const function in class:DWARFDebugMacinfoEntry
/external/lldb/test/python_api/default-constructor/
H A Dsb_error.py9 obj.GetCString()
/external/lldb/source/Target/
H A DObjCLanguageRuntime.cpp261 const char *full = m_full.GetCString();
296 const char *full = m_full.GetCString();
304 if (!m_class && strchr (m_class_category.GetCString(), '(') == NULL)
325 const char *full = m_full.GetCString();
345 const char *full = m_full.GetCString();
372 strm.Printf("[%s %s]", GetClassName().GetCString(), GetSelector().GetCString());
403 GetClassName().GetCString(),
404 GetSelector().GetCString());
412 strm.Printf("+[%s %s]", class_name.GetCString(), selecto
[all...]
H A DPathMappingList.cpp160 index, m_pairs[index].first.GetCString(), m_pairs[index].second.GetCString());
166 m_pairs[pair_index].first.GetCString(), m_pairs[pair_index].second.GetCString());
183 const char *path_cstr = path.GetCString();
193 if (::strncmp (pos->first.GetCString(), path_cstr, prefixLen) == 0)
195 std::string new_path_str (pos->second.GetCString());
196 new_path_str.append(path.GetCString() + prefixLen);
215 if (::strncmp (pos->first.GetCString(), path, prefix_len) == 0)
217 new_path = pos->second.GetCString();
[all...]
H A DSectionLoadList.cpp115 module_sp->GetFileSpec().GetFilename().GetCString(),
116 section->GetName().GetCString(),
117 curr_module_sp->GetFileSpec().GetFilename().GetCString(),
118 ats_pos->second->GetName().GetCString());
/external/lldb/include/lldb/Expression/
H A DASTDumper.h33 const char *GetCString();
/external/lldb/test/api/multithreaded/
H A Dtest_listener_resume.cpp41 + error.GetCString());
/external/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h63 m_type.m_type_name.assign(type->GetName().GetCString());
74 m_type.m_type_name.assign(type.GetConstTypeName().GetCString());
/external/lldb/source/Expression/
H A DClangPersistentVariables.cpp77 m_persistent_types.insert(std::pair<const char*, clang::TypeDecl*>(name.GetCString(), type_decl));
83 PersistentTypeMap::const_iterator i = m_persistent_types.find(name.GetCString());
H A DClangExpressionDeclMap.cpp335 name.GetCString(),
336 var_sp->GetName().GetCString());
554 if (!strncmp(name.GetCString(), "_ZN", 3) &&
555 strncmp(name.GetCString(), "_ZNK", 4))
558 fixed_scratch.append(name.GetCString() + 3);
562 log->Printf("Failed to find symbols given non-const name %s; trying %s", name.GetCString(), fixed_name.GetCString());
814 log->Printf("ClangExpressionDeclMap::FindExternalVisibleDecls[%u] for '%s' in a NULL DeclContext", current_id, name.GetCString());
816 log->Printf("ClangExpressionDeclMap::FindExternalVisibleDecls[%u] for '%s' in '%s'", current_id, name.GetCString(), context_named_decl->getNameAsString().c_str());
818 log->Printf("ClangExpressionDeclMap::FindExternalVisibleDecls[%u] for '%s' in a '%s'", current_id, name.GetCString(), contex
[all...]
/external/lldb/source/Core/
H A DMangled.cpp156 if (cstring_is_mangled(name.GetCString()))
192 m_mangled.GetCString());
195 const char *mangled_cstr = m_mangled.GetCString();
/external/lldb/include/lldb/Interpreter/
H A DProperty.h58 return m_description.GetCString();
/external/lldb/source/Commands/
H A DCommandCompletions.cpp516 m_file_name = partial_spec.GetFilename().GetCString();
517 m_dir_name = partial_spec.GetDirectory().GetCString();
542 const char *sfile_file_name = sfile_spec.GetFilename().GetCString();
543 const char *sfile_dir_name = sfile_spec.GetFilename().GetCString();
561 const char *cur_file_name = context.comp_unit->GetFilename().GetCString();
562 const char *cur_dir_name = context.comp_unit->GetDirectory().GetCString();
589 m_matches.AppendString (m_matching_files.GetFileSpecAtIndex(i).GetFilename().GetCString());
690 m_matches.AppendString((*pos).GetCString());
709 m_file_name = partial_spec.GetFilename().GetCString();
710 m_dir_name = partial_spec.GetDirectory().GetCString();
[all...]
/external/lldb/source/Symbol/
H A DClangASTContext.cpp616 g_type_map.Append(ConstString("void").GetCString(), eBasicTypeVoid);
619 g_type_map.Append(ConstString("char").GetCString(), eBasicTypeChar);
620 g_type_map.Append(ConstString("signed char").GetCString(), eBasicTypeSignedChar);
621 g_type_map.Append(ConstString("unsigned char").GetCString(), eBasicTypeUnsignedChar);
622 g_type_map.Append(ConstString("wchar_t").GetCString(), eBasicTypeWChar);
623 g_type_map.Append(ConstString("signed wchar_t").GetCString(), eBasicTypeSignedWChar);
624 g_type_map.Append(ConstString("unsigned wchar_t").GetCString(), eBasicTypeUnsignedWChar);
626 g_type_map.Append(ConstString("short").GetCString(), eBasicTypeShort);
627 g_type_map.Append(ConstString("short int").GetCString(), eBasicTypeShort);
628 g_type_map.Append(ConstString("unsigned short").GetCString(), eBasicTypeUnsignedShor
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp127 ObjCLanguageRuntime::MethodName objc_method(name.GetCString(), false);
164 if (full_name && ::strstr(full_name.GetCString(), name.GetCString()) == NULL)
339 s->Printf("name = '%s'", m_lookups[0].name.GetCString());
345 s->Printf ("'%s', ", m_lookups[i].name.GetCString());
347 s->Printf ("'%s'}", m_lookups[num_names - 1].name.GetCString());
/external/lldb/source/DataFormatters/
H A DTypeCategory.cpp202 *matching_category = m_name.GetCString();
213 *matching_category = m_name.GetCString();
224 *matching_category = m_name.GetCString();
235 *matching_category = m_name.GetCString();
247 *matching_category = m_name.GetCString();
258 *matching_category = m_name.GetCString();
H A DCocoa.cpp52 const char* class_name = descriptor->GetClassName().GetCString();
99 const char* class_name = descriptor->GetClassName().GetCString();
143 const char* class_name = descriptor->GetClassName().GetCString();
189 const char* class_name = descriptor->GetClassName().GetCString();
238 const char* class_name = descriptor->GetClassName().GetCString();
316 const char* class_name = descriptor->GetClassName().GetCString();
441 const char* class_name = descriptor->GetClassName().GetCString();
509 const char* class_name = descriptor->GetClassName().GetCString();
/external/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp72 const EnumerationMapEntry *enumerator_entry = m_enumerations.FindFirstValueForName (const_enumerator_name.GetCString());
120 m_enumerations.Append (const_enumerator_name.GetCString(), enumerator_info);
H A DOptionValueDictionary.cpp51 strm.Indent(pos->first.GetCString());
93 strm.Printf("%s=", pos->first.GetCString());
199 error.SetErrorStringWithFormat("no value found named '%s', aborting remove operation", key.GetCString());
313 error.SetErrorStringWithFormat("dictionary does not contain a value for the key name '%s'", key.GetCString());
431 strm.Printf("%s=", pos->first.GetCString());
/external/lldb/include/lldb/API/
H A DSBError.h29 GetCString () const;
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIXLog.h55 m_pluginname = pluginName.GetCString();

Completed in 657 milliseconds

123456