Home
last modified time | relevance | path

Searched refs:my_ptr (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dmodernize-make-shared.rst12 auto my_ptr = std::shared_ptr<MyPair>(new MyPair(1, 2));
16 auto my_ptr = std::make_shared<MyPair>(1, 2);
23 my_ptr.reset(new MyPair(1, 2));
27 my_ptr = std::make_shared<MyPair>(1, 2);
Dmodernize-make-unique.rst12 auto my_ptr = std::unique_ptr<MyPair>(new MyPair(1, 2));
16 auto my_ptr = std::make_unique<MyPair>(1, 2);
23 my_ptr.reset(new MyPair(1, 2));
27 my_ptr = std::make_unique<MyPair>(1, 2);
/external/llvm-project/lldb/test/API/functionalities/ptr_refs/
Dmain.c11 const char *my_ptr = strdup("hello"); in main() local
13 r->p = my_ptr; in main()
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-make-unique-cxx11.cpp7 auto my_ptr = std::unique_ptr<int>(new int(1)); in f() local
Dmodernize-make-unique-inaccessible-ctors.cpp56 auto my_ptr = std::unique_ptr<int>(new int(1)); in f() local
/external/llvm-project/lldb/test/API/commands/command/nested_alias/
Dmain.cpp5 void* my_ptr[] = { in main() local
/external/llvm-project/lldb/docs/use/
Dmap.rst683 <b>(lldb)</b> watchpoint set expression -- my_ptr
685 <b>(lldb)</b> wa s e -- my_ptr
/external/flatbuffers/docs/source/
DCppUsage.md252 pointer type (`my_ptr<T>`), or by specifying `naked` as the type to get `T *`