Searched defs:make (Results 51 - 75 of 125) sorted by relevance

12345

/external/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/
H A Dctor_rqueue_alloc.pass.cpp25 make(int n) function
55 test<MoveOnly> q(make<C>(5), test_allocator<MoveOnly>(4));
/external/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
H A Dctor_container_alloc.pass.cpp22 make(int n) function
48 C d = make<C>(5);
H A Dctor_copy_alloc.pass.cpp22 make(int n) function
48 test<int> q(make<C>(5), test_allocator<int>(4));
H A Dctor_rcontainer_alloc.pass.cpp25 make(int n) function
55 test<MoveOnly> q(make<C>(5), test_allocator<MoveOnly>(4));
H A Dctor_rqueue_alloc.pass.cpp25 make(int n) function
55 test<MoveOnly> q(make<C>(5), test_allocator<MoveOnly>(4));
/external/libcxx/test/containers/sequences/deque/deque.capacity/
H A Dresize_size.pass.cpp21 make(int size, int start = 0 ) function
62 C c1 = make<C>(N, start);
H A Dresize_size_value.pass.cpp21 make(int size, int start = 0 ) function
62 C c1 = make<C>(N, start);
H A Dshrink_to_fit.pass.cpp21 make(int size, int start = 0 ) function
55 C c1 = make<C>(N, start);
/external/libcxx/test/containers/sequences/deque/deque.cons/
H A Dassign_size_value.pass.cpp22 make(int size, int start = 0 ) function
61 C c1 = make<C>(N, start);
H A Dassign_iter_iter.pass.cpp23 make(int size, int start = 0 ) function
59 C c1 = make<C>(N, start);
60 C c2 = make<C>(M);
82 C c1 = make<C>(N, start);
83 C c2 = make<C>(M);
/external/libcxx/test/containers/sequences/deque/deque.modifiers/
H A Demplace.pass.cpp24 make(int size, int start = 0 ) function
68 C c1 = make<C>(N, start);
76 C c1 = make<C>(N, start);
84 C c1 = make<C>(N, start);
H A Demplace_back.pass.cpp24 make(int size, int start = 0 ) function
61 C c1 = make<C>(N, start);
H A Demplace_front.pass.cpp24 make(int size, int start = 0 ) function
61 C c1 = make<C>(N, start);
H A Dpop_back.pass.cpp21 make(int size, int start = 0 ) function
61 C c1 = make<C>(N, start);
H A Dpop_front.pass.cpp21 make(int size, int start = 0 ) function
61 C c1 = make<C>(N, start);
H A Dpush_front.pass.cpp21 make(int size, int start = 0 ) function
61 C c1 = make<C>(N, start);
H A Dpush_front_rvalue.pass.cpp24 make(int size, int start = 0 ) function
64 C c1 = make<C>(N, start);
/external/libcxx/test/containers/sequences/deque/deque.special/
H A Dcopy.pass.cpp26 make(int size, int start = 0 ) function
54 C c1 = make<C>(N, start);
55 C c2 = make<C>(N);
H A Dcopy_backward.pass.cpp26 make(int size, int start = 0 ) function
53 C c1 = make<C>(N, start);
54 C c2 = make<C>(N);
H A Dmove.pass.cpp26 make(int size, int start = 0 ) function
53 C c1 = make<C>(N, start);
54 C c2 = make<C>(N);
H A Dmove_backward.pass.cpp26 make(int size, int start = 0 ) function
53 C c1 = make<C>(N, start);
54 C c2 = make<C>(N);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalItem.java40 public static LocalItem make(CstString name, CstString signature) { method in class:LocalItem
/external/javassist/src/main/javassist/
H A DCtNewConstructor.java25 * An instance of this class does not make any sense.
64 public static CtConstructor make(String src, CtClass declaring) method in class:CtNewConstructor
94 public static CtConstructor make(CtClass[] parameters, method in class:CtNewConstructor
180 return make(parameters, exceptions, PASS_NONE,
195 public static CtConstructor make(CtClass[] parameters, method in class:CtNewConstructor
199 return make(parameters, exceptions, PASS_PARAMS,
266 * CtConstructor c = CtNewConstructor.make(argTypes, null,
307 public static CtConstructor make(CtClass[] parameters, method in class:CtNewConstructor
/external/javassist/src/main/javassist/compiler/ast/
H A DExpr.java43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) { method in class:Expr
47 public static Expr make(int op, ASTree oprand1) { method in class:Expr
H A DStmnt.java41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) { method in class:Stmnt
45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) { method in class:Stmnt

Completed in 152 milliseconds

12345