| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | Block.cpp | 371 VariableListSP Block::GetBlockVariableList(bool can_create) { in GetBlockVariableList() argument 373 if (m_variable_list_sp.get() == nullptr && can_create) { in GetBlockVariableList() 385 Block::AppendBlockVariables(bool can_create, bool get_child_block_variables, in AppendBlockVariables() argument 390 VariableList *block_var_list = GetBlockVariableList(can_create).get(); in AppendBlockVariables() 408 can_create, get_child_block_variables, in AppendBlockVariables() 416 uint32_t Block::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables() argument 421 VariableListSP variable_list_sp(GetBlockVariableList(can_create)); in AppendVariables() 441 can_create, get_parent_variables, stop_if_block_is_inlined_function, in AppendVariables()
|
| H A D | TypeSystem.cpp | 204 bool can_create) { in GetTypeSystemForLanguage() argument 219 if (!can_create) in GetTypeSystemForLanguage() 231 bool can_create) { in GetTypeSystemForLanguage() argument 247 if (!can_create) in GetTypeSystemForLanguage()
|
| H A D | CompileUnit.cpp | 234 VariableListSP CompileUnit::GetVariableList(bool can_create) { in GetVariableList() argument 235 if (m_variables.get() == nullptr && can_create) { in GetVariableList()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | ValueObjectSyntheticFilter.cpp | 227 bool can_create) { in GetChildAtIndex() argument 239 if (can_create && m_synth_filter_ap.get() != nullptr) { in GetChildAtIndex() 271 GetName().AsCString(), idx, can_create ? "yes" : "no", in GetChildAtIndex() 288 bool can_create) { in GetChildMemberWithName() argument 296 return GetChildAtIndex(index, can_create); in GetChildMemberWithName()
|
| H A D | ValueObjectConstResultCast.cpp | 38 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 40 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create, in GetSyntheticChildAtOffset()
|
| H A D | ValueObjectConstResultChild.cpp | 45 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 47 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create, in GetSyntheticChildAtOffset()
|
| H A D | ValueObjectConstResultImpl.cpp | 108 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 114 offset, type, can_create, name_const_str); in GetSyntheticChildAtOffset()
|
| H A D | ValueObjectConstResult.cpp | 244 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 246 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create, in GetSyntheticChildAtOffset()
|
| H A D | ValueObject.cpp | 460 ValueObjectSP ValueObject::GetChildAtIndex(size_t idx, bool can_create) { in GetChildAtIndex() argument 467 if (can_create && !m_children.HasChildAtIndex(idx)) { in GetChildAtIndex() 554 bool can_create) { in GetChildMemberWithName() argument 573 child_sp = GetChildAtIndex(*pos, can_create); in GetChildMemberWithName() 1742 bool can_create) { in GetSyntheticArrayMember() argument 1770 bool can_create) { in GetSyntheticBitFieldChild() argument 1805 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 1823 if (!can_create) in GetSyntheticChildAtOffset() 1845 bool can_create, in GetSyntheticBase() argument 1863 if (!can_create) in GetSyntheticBase() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | Block.h | 250 lldb::VariableListSP GetBlockVariableList(bool can_create); 277 uint32_t AppendBlockVariables(bool can_create, bool get_child_block_variables, 310 uint32_t AppendVariables(bool can_create, bool get_parent_variables,
|
| H A D | CompileUnit.h | 303 lldb::VariableListSP GetVariableList(bool can_create);
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_fs/ |
| H A D | editor.c | 277 can_create(svn_fs_root_t *txn_root, in can_create() function 347 SVN_ERR(can_create(root, fspath, scratch_pool)); in add_directory_cb() 380 SVN_ERR(can_create(root, fspath, scratch_pool)); in add_file_cb() 415 SVN_ERR(can_create(root, fspath, scratch_pool)); in add_symlink_cb() 573 SVN_ERR(can_create(root, dst_fspath, scratch_pool)); in copy_cb() 612 SVN_ERR(can_create(root, dst_fspath, scratch_pool)); in move_cb()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | ValueObject.h | 489 virtual lldb::ValueObjectSP GetChildAtIndex(size_t idx, bool can_create); 508 bool can_create); 586 lldb::ValueObjectSP GetSyntheticArrayMember(size_t index, bool can_create); 589 bool can_create); 592 bool can_create); 596 bool can_create, 600 GetSyntheticBase(uint32_t offset, const CompilerType &type, bool can_create,
|
| H A D | ValueObjectSyntheticFilter.h | 64 lldb::ValueObjectSP GetChildAtIndex(size_t idx, bool can_create) override; 67 bool can_create) override;
|
| H A D | ValueObjectConstResultCast.h | 54 uint32_t offset, const CompilerType &type, bool can_create,
|
| H A D | ValueObjectConstResultImpl.h | 55 bool can_create,
|
| H A D | ValueObjectConstResultChild.h | 61 uint32_t offset, const CompilerType &type, bool can_create,
|
| H A D | ValueObjectRegister.h | 108 bool can_create) override;
|
| H A D | ValueObjectConstResult.h | 94 uint32_t offset, const CompilerType &type, bool can_create,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| H A D | FormatManager.h | 110 bool can_create = true) { 117 bool can_create = true);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | StackFrame.cpp | 424 const bool can_create = true; in GetVariableList() local 427 frame_block->AppendBlockVariables(can_create, get_child_variables, in GetVariableList() 465 const bool can_create = true; in GetInScopeVariableList() local 469 can_create, get_parent_variables, stop_if_block_is_inlined_function, in GetInScopeVariableList() 1396 const bool can_create = true; in GetValueForOffset() local 1397 ValueObjectSP child_sp = parent->GetChildAtIndex(ci, can_create); in GetValueForOffset() 1439 const bool can_create = true; in GetValueForDereferincingOffset() local 1440 pointee = base->GetSyntheticArrayMember(index, can_create); in GetValueForDereferincingOffset() 1736 const bool can_create = true; in FindVariable() local 1741 can_create, get_parent_variables, stop_if_block_is_inlined_function, in FindVariable()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBBlock.cpp | 99 void SBBlock::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables() argument 103 m_opaque_ptr->AppendVariables(can_create, get_parent_variables, show_inline, in AppendVariables()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBBlock.h | 88 void AppendVariables(bool can_create, bool get_parent_variables,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | StackFrameList.h | 34 uint32_t GetNumFrames(bool can_create = true);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| H A D | DynamicRegisterInfo.h | 58 bool can_create);
|