HomeSort by relevance Sort by last modified time
    Searched refs:GetCString (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/lldb/scripts/Python/interface/
SBError.i 68 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/
DWARFDebugMacinfoEntry.h 38 GetCString() const;
NameToDIE.cpp 35 m_map.Append(name.GetCString(), die_offset);
41 return m_map.GetValues (name.GetCString(), info_array);
UniqueDWARFASTType.h 148 m_collection[name.GetCString()].Append (entry);
160 const char *unique_name_cstr = name.GetCString();
DWARFDebugMacinfoEntry.cpp 30 DWARFDebugMacinfoEntry::GetCString() const
  /external/lldb/include/lldb/Expression/
ASTDumper.h 33 const char *GetCString();
  /external/lldb/test/python_api/default-constructor/
sb_error.py 9 obj.GetCString()
  /external/lldb/source/Target/
ObjCLanguageRuntime.cpp 261 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(), selector.GetCString())
    [all...]
PathMappingList.cpp 160 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...]
SectionLoadList.cpp 115 module_sp->GetFileSpec().GetFilename().GetCString(),
116 section->GetName().GetCString(),
117 curr_module_sp->GetFileSpec().GetFilename().GetCString(),
118 ats_pos->second->GetName().GetCString());
  /external/lldb/test/api/multithreaded/
test_listener_resume.cpp 41 + error.GetCString());
  /external/lldb/include/lldb/DataFormatters/
FormatClasses.h 63 m_type.m_type_name.assign(type->GetName().GetCString());
74 m_type.m_type_name.assign(type.GetConstTypeName().GetCString());
  /external/lldb/source/Expression/
ClangPersistentVariables.cpp 77 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());
ClangExpressionDeclMap.cpp 335 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(), context.m_decl_context->getDeclKindName())
    [all...]
  /external/lldb/source/Core/
Mangled.cpp 156 if (cstring_is_mangled(name.GetCString()))
192 m_mangled.GetCString());
195 const char *mangled_cstr = m_mangled.GetCString();
  /external/lldb/include/lldb/API/
SBError.h 29 GetCString () const;
  /external/lldb/include/lldb/Interpreter/
Property.h 58 return m_description.GetCString();
  /external/lldb/source/Commands/
CommandCompletions.cpp 516 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/
ClangASTContext.cpp 616 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(), eBasicTypeUnsignedShort)
    [all...]
  /external/lldb/source/Breakpoint/
BreakpointResolverName.cpp 127 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/
TypeCategory.cpp 202 *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();
Cocoa.cpp 52 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/
OptionValueEnumeration.cpp 72 const EnumerationMapEntry *enumerator_entry = m_enumerations.FindFirstValueForName (const_enumerator_name.GetCString());
120 m_enumerations.Append (const_enumerator_name.GetCString(), enumerator_info);
  /external/lldb/include/lldb/Core/
ConstString.h 268 GetCString () const
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIXLog.h 55 m_pluginname = pluginName.GetCString();

Completed in 991 milliseconds

1 2 3 4 5 6