Home
last modified time | relevance | path

Searched refs:object_name (Results 1 – 13 of 13) sorted by relevance

/external/lldb/test/expression_command/formatters/
DTestFormatters.py84 object_name = self.res.GetOutput()
85 object_name = object_name[7:]
86 object_name = object_name[0:object_name.find(' =')]
91 self.expect("expression $" + object_name,
97 self.expect("expression --show-types -- $" + object_name,
109 self.expect("expression $" + object_name + '.a',
112 self.expect("expression *$" + object_name + '.b.i_ptr',
115 self.expect("expression $" + object_name,
121 self.expect("expression --show-types -- $" + object_name,
129 self.expect("expression $" + object_name,
[all …]
/external/lldb/source/Expression/
DClangUserExpression.cpp563 ConstString &object_name, in GetObjectPointer() argument
570 …rStringWithFormat("Couldn't load '%s' because the context is incomplete", object_name.AsCString()); in GetObjectPointer()
577 valobj_sp = frame_sp->GetValueForVariableExpressionPath(object_name.AsCString(), in GetObjectPointer()
594 …gWithFormat("Couldn't load '%s' because its value couldn't be evaluated", object_name.AsCString()); in GetObjectPointer()
625 ConstString object_name; in PrepareToExecuteJITExpression() local
629 object_name.SetCString("this"); in PrepareToExecuteJITExpression()
633 object_name.SetCString("self"); in PrepareToExecuteJITExpression()
643 object_ptr = GetObjectPointer(frame, object_name, object_ptr_error); in PrepareToExecuteJITExpression()
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
Drequireprovidesorter.py231 object_name = tokenutil.Search(token, Type.STRING_TEXT).string
246 tokens_map[object_name] = all_tokens
/external/lldb/source/Core/
DModule.cpp172 const ConstString *object_name, in Module() argument
203 if (object_name) in Module()
204 m_object_name = *object_name; in Module()
868 Module::SetFileSpecAndObjectName (const FileSpec &file, const ConstString &object_name) in SetFileSpecAndObjectName() argument
874 m_object_name = object_name; in SetFileSpecAndObjectName()
920 const char *object_name = m_object_name.GetCString(); in GetDescription() local
921 if (object_name) in GetDescription()
922 s->Printf("(%s)", object_name); in GetDescription()
1466 const ConstString &object_name = module_ref.GetObjectName(); in MatchesModuleSpec() local
1467 if (object_name) in MatchesModuleSpec()
[all …]
/external/lldb/source/Plugins/ObjectContainer/BSD-Archive/
DObjectContainerBSDArchive.cpp155 ObjectContainerBSDArchive::Archive::FindObject (const ConstString &object_name, const TimeValue &ob… in FindObject() argument
157 …dexMap::Entry *match = m_object_name_to_index_map.FindFirstValueForName (object_name.GetCString()); in FindObject()
306 ConstString object_name (module_sp->GetObjectName()); in CreateInstance() local
307 if (object_name) in CreateInstance()
DObjectContainerBSDArchive.h174 FindObject (const lldb_private::ConstString &object_name,
/external/lldb/include/lldb/Core/
DModule.h90 const ConstString *object_name = NULL,
823 const ConstString &object_name);
/external/lldb/source/Symbol/
DSymtab.cpp88 const char * object_name = NULL; in Dump() local
90 object_name = m_objfile->GetModule()->GetObjectName().GetCString(); in Dump()
95 object_name ? "(" : "", in Dump()
96 object_name ? object_name : "", in Dump()
97 object_name ? ")" : "", in Dump()
/external/kernel-headers/original/uapi/linux/
Dncp_fs.h90 void __user * object_name; /* a userspace data, in most cases user name */ member
/external/lldb/tools/debugserver/source/MacOSX/
DMachVMMemory.cpp354 mach_port_t object_name; in GetMemorySizes() local
356 …h_vm_region(task, &addr, &size, VM_REGION_TOP_INFO, (vm_region_info_t)&info, &count, &object_name); in GetMemorySizes()
371 …ion(task, &b_addr, &b_size, VM_REGION_BASIC_INFO, (vm_region_info_t)&b_info, &count, &object_name); in GetMemorySizes()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARFDebugMap.cpp66 ConstString object_name (oso_module->GetObjectName()); in GetFileRangeMap() local
186 const ConstString *object_name, in DebugMapModule() argument
189 Module (file_spec, arch, object_name, object_offset, object_mod_time_ptr), in DebugMapModule()
/external/v8/src/
Dbootstrapper.cc482 Handle<String> object_name = factory->Object_string(); in CreateEmptyFunction() local
485 Handle<JSFunction> object_fun = factory->NewFunction(object_name); in CreateEmptyFunction()
899 Handle<String> object_name = factory->Object_string(); in InitializeGlobal() local
901 global_object, object_name, isolate->object_function(), DONT_ENUM); in InitializeGlobal()
/external/lldb/source/Commands/
DCommandObjectTarget.cpp3391 const char *object_name = module->GetObjectName().GetCString(); in PrintModule() local
3392 if (object_name) in PrintModule()
3393 strm.Printf ("(%s)", object_name); in PrintModule()