/external/deqp/framework/delibs/decpp/ |
D | deAppendList.hpp | 52 class AppendList class 55 AppendList (size_t blockSize); 56 ~AppendList (void); 65 AppendList (const AppendList<ElementType>&); 66 AppendList<ElementType>& operator= (const AppendList<ElementType>&); 164 AppendList<ElementType>::AppendList (size_t blockSize) in AppendList() function in de::AppendList 173 AppendList<ElementType>::~AppendList (void) in ~AppendList() 195 void AppendList<ElementType>::clear (void) in clear() 224 void AppendList<ElementType>::append (const ElementType& value) in append() 272 typename AppendList<ElementType>::const_iterator AppendList<ElementType>::begin (void) const in begin() [all …]
|
D | deAppendList.cpp | 60 AppendList<TestElem> testList; 118 for (AppendList<TestElem>::const_iterator elemIter = sharedState.testList.begin(); in runAppendListTest() 171 de::AppendList<ObjCountElem> testList (numElementsHint); in runClearTest()
|
/external/llvm-project/lldb/source/API/ |
D | SBStringList.cpp | 73 void SBStringList::AppendList(const char **strv, int strc) { in AppendList() function in SBStringList 74 LLDB_RECORD_METHOD(void, SBStringList, AppendList, (const char **, int), strv, in AppendList() 79 m_opaque_up->AppendList(strv, strc); in AppendList() 85 void SBStringList::AppendList(const SBStringList &strings) { in AppendList() function in SBStringList 86 LLDB_RECORD_METHOD(void, SBStringList, AppendList, in AppendList() 92 m_opaque_up->AppendList(*(strings.m_opaque_up)); in AppendList() 96 void SBStringList::AppendList(const StringList &strings) { in AppendList() function in SBStringList 99 m_opaque_up->AppendList(strings); in AppendList() 151 LLDB_REGISTER_METHOD(void, SBStringList, AppendList, (const char **, int)); in RegisterMethods() 152 LLDB_REGISTER_METHOD(void, SBStringList, AppendList, in RegisterMethods()
|
D | SBCommandInterpreter.cpp | 312 matches.AppendList(temp_matches_list); in HandleCompletionWithDescriptions() 314 descriptions.AppendList(temp_descriptions_list); in HandleCompletionWithDescriptions()
|
D | SBBreakpointLocation.cpp | 300 commands.AppendList(command_list); in GetCommandLineCommands()
|
D | SBBreakpointName.cpp | 505 commands.AppendList(command_list); in GetCommandLineCommands()
|
D | SBBreakpoint.cpp | 523 commands.AppendList(command_list); in GetCommandLineCommands()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBStringList.h | 32 void AppendList(const char **strv, int strc); 34 void AppendList(const lldb::SBStringList &strings); 53 void AppendList(const lldb_private::StringList &strings);
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_stringlist.py | 11 obj.AppendList(None, 0) 12 obj.AppendList(lldb.SBStringList())
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBStringList.i | 30 AppendList (const char **strv, int strc); 33 AppendList (const lldb::SBStringList &strings);
|
/external/llvm-project/lldb/unittests/Utility/ |
D | StringListTest.cpp | 120 s.AppendList(nullptr, 0); in TEST() 127 s.AppendList(items, 3); in TEST() 135 TEST(StringListTest, AppendList) { in TEST() argument 144 s.AppendList(other); in TEST() 156 s.AppendList(empty); in TEST() 157 s.AppendList(other); in TEST()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | StringList.h | 47 void AppendList(const char **strv, int strc); 49 void AppendList(StringList strings);
|
/external/llvm-project/lldb/source/Utility/ |
D | StringList.cpp | 56 void StringList::AppendList(const char **strv, int strc) { in AppendList() function in StringList 63 void StringList::AppendList(StringList strings) { in AppendList() function in StringList 216 AppendList(strings); in operator <<()
|
/external/llvm-project/lldb/test/API/python_api/sbenvironment/ |
D | TestSBEnvironment.py | 122 entries.AppendList(["X=x", "Y=y"], 2) 131 entries.AppendList(["X=y", "Y=x"], 2)
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/ |
D | TestBreakpointLocations.py | 104 str_list.AppendList(commands, len(commands)) 116 loc_list.AppendList(commands, len(commands))
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkAllocationCallbackUtil.hpp | 146 typedef de::AppendList<AllocationCallbackRecord>::const_iterator RecordIterator; 153 typedef de::AppendList<AllocationCallbackRecord> Records;
|
D | vkDebugReportUtil.hpp | 89 using MessageList = de::AppendList<DebugReportMessage>;
|
/external/libchrome/dbus/ |
D | values_util_unittest.cc | 599 TEST(ValuesUtilTest, AppendList) { in TEST() argument
|