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

1 2 3

  /external/lldb/source/Host/macosx/cfcpp/
CFCMutableDictionary.h 38 bool AddValue(CFStringRef key, const void *value, bool can_create = false);
39 bool SetValue(CFStringRef key, const void *value, bool can_create = false);
40 bool AddValueSInt8(CFStringRef key, int8_t value, bool can_create = false);
41 bool SetValueSInt8(CFStringRef key, int8_t value, bool can_create = false);
42 bool AddValueSInt16(CFStringRef key, int16_t value, bool can_create = false);
43 bool SetValueSInt16(CFStringRef key, int16_t value, bool can_create = false);
44 bool AddValueSInt32(CFStringRef key, int32_t value, bool can_create = false);
45 bool SetValueSInt32(CFStringRef key, int32_t value, bool can_create = false);
46 bool AddValueSInt64(CFStringRef key, int64_t value, bool can_create = false);
47 bool SetValueSInt64(CFStringRef key, int64_t value, bool can_create = false)
    [all...]
CFCMutableArray.h 31 bool AppendValue(const void *value, bool can_create = true); // Appends value and optionally creates a CFCMutableArray if this class doesn't contain one
34 bool can_create = true);
36 bool can_create = true);
CFCMutableDictionary.cpp 106 CFCMutableDictionary::Dictionary(bool can_create)
109 if (can_create && dict == NULL)
118 CFCMutableDictionary::AddValue(CFStringRef key, const void *value, bool can_create)
120 CFMutableDictionaryRef dict = Dictionary(can_create);
131 CFCMutableDictionary::SetValue(CFStringRef key, const void *value, bool can_create)
133 CFMutableDictionaryRef dict = Dictionary(can_create);
144 CFCMutableDictionary::AddValueSInt8(CFStringRef key, int8_t value, bool can_create)
146 CFMutableDictionaryRef dict = Dictionary(can_create);
161 CFCMutableDictionary::SetValueSInt8(CFStringRef key, int8_t value, bool can_create)
163 CFMutableDictionaryRef dict = Dictionary(can_create);
    [all...]
CFCMutableSet.h 35 const void * AddValue(const void *value, bool can_create);
CFCMutableArray.cpp 108 CFCMutableArray::AppendValue(const void *value, bool can_create)
113 if (can_create == false)
128 CFCMutableArray::AppendCStringAsCFString (const char *s, CFStringEncoding encoding, bool can_create)
133 if (can_create == false)
148 CFCMutableArray::AppendFileSystemRepresentationAsCFString (const char *s, bool can_create)
153 if (can_create == false)
CFCMutableSet.cpp 81 CFCMutableSet::AddValue(const void *value, bool can_create)
86 if (can_create == false)
  /external/libpcap/
pcap-can-linux.h 35 pcap_t* can_create(const char *device, char *ebuf, int *is_ours);
  /external/lldb/source/Utility/
KQueue.h 47 GetFD (bool can_create);
KQueue.cpp 21 KQueue::GetFD (bool can_create)
23 if (!IsValid () && can_create)
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_security_helper.cc 22 CanCreate can_create,
52 return (policy->*can_create)(child_id, file);
  /external/lldb/source/Core/
ValueObjectConstResultChild.cpp 57 ValueObjectConstResultChild::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create)
59 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create);
ValueObjectConstResultImpl.cpp 149 ValueObjectConstResultImpl::GetSyntheticChildAtOffset (uint32_t offset, const ClangASTType& type, bool can_create)
155 return m_impl_backend->ValueObject::GetSyntheticChildAtOffset(offset, type, can_create);
160 return DerefOnTarget()->GetSyntheticChildAtOffset(offset, type, can_create);
162 return m_impl_backend->ValueObject::GetSyntheticChildAtOffset(offset, type, can_create);
ValueObjectSyntheticFilter.cpp 195 ValueObjectSynthetic::GetChildAtIndex (size_t idx, bool can_create)
203 if (can_create && m_synth_filter_ap.get() != NULL)
219 ValueObjectSynthetic::GetChildMemberWithName (const ConstString &name, bool can_create)
228 return GetChildAtIndex(index, can_create);
  /external/lldb/include/lldb/Symbol/
Block.h 268 /// @param[in] can_create
278 GetBlockVariableList (bool can_create);
289 /// @param[in] can_create
307 AppendBlockVariables (bool can_create,
316 /// @param[in] can_create
341 AppendVariables (bool can_create,
CompileUnit.h 281 /// @param[in] can_create
294 GetVariableList (bool can_create);
  /external/lldb/include/lldb/Core/
ValueObjectConstResultChild.h 54 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create);
ValueObjectSyntheticFilter.h 55 GetChildAtIndex (size_t idx, bool can_create);
58 GetChildMemberWithName (const ConstString &name, bool can_create);
ValueObjectConstResultImpl.h 45 GetSyntheticChildAtOffset (uint32_t offset, const ClangASTType& type, bool can_create);
ValueObject.h 753 GetChildAtIndex (size_t idx, bool can_create);
773 GetChildMemberWithName (const ConstString &name, bool can_create);
851 GetSyntheticArrayMember (size_t index, bool can_create);
854 GetSyntheticArrayMemberFromPointer (size_t index, bool can_create);
857 GetSyntheticArrayMemberFromArray (size_t index, bool can_create);
860 GetSyntheticBitFieldChild (uint32_t from, uint32_t to, bool can_create);
863 GetSyntheticExpressionPathChild(const char* expression, bool can_create);
866 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create);
    [all...]
ValueObjectRegister.h 103 GetChildMemberWithName (const ConstString &name, bool can_create);
  /external/lldb/include/lldb/API/
SBBlock.h 115 AppendVariables (bool can_create, bool get_parent_variables, lldb_private::VariableList *var_list);
  /external/lldb/source/Plugins/Process/Utility/
DynamicRegisterInfo.h 60 GetRegisterSetIndexByName (lldb_private::ConstString &set_name, bool can_create);
  /external/lldb/include/lldb/DataFormatters/
FormatManager.h 117 bool can_create = true)
126 bool can_create = true);
  /external/lldb/source/Symbol/
Block.cpp 471 Block::GetBlockVariableList (bool can_create)
475 if (m_variable_list_sp.get() == NULL && can_create)
488 Block::AppendBlockVariables (bool can_create,
494 VariableList *block_var_list = GetBlockVariableList (can_create).get();
510 num_variables_added += child_block->AppendBlockVariables (can_create,
523 bool can_create,
530 VariableListSP variable_list_sp(GetBlockVariableList(can_create));
546 num_variables_added += parent_block->AppendVariables (can_create, get_parent_variables, stop_if_block_is_inlined_function, variable_list);
  /external/lldb/include/lldb/Target/
StackFrameList.h 37 GetNumFrames (bool can_create = true);

Completed in 1023 milliseconds

1 2 3