/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/ |
D | uninitialized_fill_n.pass.cpp | 40 struct Nasty struct 42 Nasty() : i_ ( counter_++ ) {} in Nasty() argument 43 Nasty * operator &() const { return NULL; } in operator &() argument 48 int Nasty::counter_ = 0; argument 78 char pool[N*sizeof(Nasty)] = {0}; in main() 79 Nasty* bp = (Nasty*)pool; in main() 81 Nasty::counter_ = 23; in main() 82 std::uninitialized_fill_n(bp, N, Nasty()); in main()
|
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/ |
D | uninitialized_fill.pass.cpp | 41 struct Nasty struct 43 Nasty() : i_ ( counter_++ ) {} in Nasty() function 44 Nasty * operator &() const { return NULL; } in operator &() argument 49 int Nasty::counter_ = 0; argument 77 char pool[N*sizeof(Nasty)] = {0}; in main() 78 Nasty* bp = (Nasty*)pool; in main() 80 Nasty::counter_ = 23; in main() 81 std::uninitialized_fill(bp, bp+N, Nasty()); in main()
|
/external/libcxx/test/std/containers/sequences/vector/vector.data/ |
D | data.pass.cpp | 20 struct Nasty { struct 21 Nasty() : i_(0) {} in Nasty() argument 22 Nasty(int i) : i_(i) {} in Nasty() argument 23 ~Nasty() {} in ~Nasty() argument 25 Nasty * operator&() const { assert(false); return nullptr; } in operator &() argument 42 std::vector<Nasty> v(100); in main() argument 58 std::vector<Nasty, min_allocator<Nasty>> v(100); in main()
|
D | data_const.pass.cpp | 20 struct Nasty { struct 21 Nasty() : i_(0) {} in Nasty() argument 22 Nasty(int i) : i_(i) {} in Nasty() function 23 ~Nasty() {} in ~Nasty() argument 25 Nasty * operator&() const { assert(false); return nullptr; } in operator &() argument 42 std::vector<Nasty> v(100); in main() argument 58 std::vector<Nasty, min_allocator<Nasty>> v(100); in main()
|
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ |
D | uninitialized_copy.pass.cpp | 41 struct Nasty struct 43 Nasty() : i_ ( counter_++ ) {} in Nasty() argument 44 Nasty * operator &() const { return NULL; } in operator &() argument 49 int Nasty::counter_ = 0; argument 79 char pool[sizeof(Nasty)*N] = {0}; in main() 80 Nasty * p = (Nasty *) pool; in main() 81 Nasty arr[N]; in main()
|
D | uninitialized_copy_n.pass.cpp | 41 struct Nasty struct 43 Nasty() : i_ ( counter_++ ) {} in Nasty() argument 44 Nasty * operator &() const { return NULL; } in operator &() argument 49 int Nasty::counter_ = 0; argument 79 char pool[sizeof(Nasty)*N] = {0}; in main() 80 Nasty * p = (Nasty *) pool; in main() 81 Nasty arr[N]; in main()
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_callbacks.py | 148 class Nasty: class 151 CFUNCTYPE(None)(lambda x=Nasty(): None)
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_callbacks.py | 142 class Nasty: class 145 CFUNCTYPE(None)(lambda x=Nasty(): None)
|
/external/python/cpython2/Lib/test/ |
D | test_exceptions.py | 497 class Nasty(str): class 501 e = ValueError(Nasty("msg"))
|
D | test_descr.py | 4346 class Nasty(str): class 4353 C.__name__ = Nasty("abc")
|
/external/freetype/ |
D | vms_make.com | 1151 $! Nasty hack to get the FreeType includes to work
|
/external/harfbuzz_ng/ |
D | CMakeLists.txt | 657 # Nasty issue: We need to make drive letters lower case,
|
/external/python/cpython3/Doc/howto/ |
D | sockets.rst | 241 to determine the length, the second to get the data part of the message. Nasty.
|
/external/python/cpython2/Doc/howto/ |
D | sockets.rst | 244 to determine the length, the second to get the data part of the message. Nasty.
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 4089 class Nasty(str): class 4096 C.__name__ = Nasty("abc")
|