/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/ |
D | MethodVisitorTee.java | 21 private final MethodVisitor mv1; field in MethodVisitorTee 24 public MethodVisitorTee(MethodVisitor mv1, MethodVisitor mv2) { in MethodVisitorTee() argument 25 this.mv1 = mv1; in MethodVisitorTee() 30 mv1.visitFrame(type, nLocal, local, nStack, stack); in visitFrame() 35 return AnnotationVisitorTee.getInstance(mv1.visitAnnotationDefault(), in visitAnnotationDefault() 40 return AnnotationVisitorTee.getInstance(mv1.visitAnnotation(desc, visible), in visitAnnotation() 47 … return AnnotationVisitorTee.getInstance(mv1.visitParameterAnnotation(parameter, desc, visible), in visitParameterAnnotation() 52 mv1.visitAttribute(attr); in visitAttribute() 57 mv1.visitCode(); in visitCode() 62 mv1.visitInsn(opcode); in visitInsn() [all …]
|
D | ClassVisitorTee.java | 69 MethodVisitor mv1 = cv1.visitMethod(access, name, desc, signature, exceptions); in visitMethod() local 71 if (mv1 == null) in visitMethod() 74 return mv1; in visitMethod() 75 return new MethodVisitorTee(mv1, mv2); in visitMethod()
|
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
D | try.emplace.pass.cpp | 73 Moveable mv1(3, 3.0); in main() local 76 r = m.try_emplace(i, std::move(mv1)); in main() 79 assert(!mv1.moved()); // was not moved from in main() 83 r = m.try_emplace(-1, std::move(mv1)); in main() 86 assert(mv1.moved()); // was moved from in main() 117 Moveable mv1(4, 4.0); in main() local 118 r = m.try_emplace(std::move(mvkey1), std::move(mv1)); in main() 121 assert(!mv1.moved()); // was not moved from in main() 126 r = m.try_emplace(std::move(mvkey2), std::move(mv1)); in main() 129 assert(mv1.moved()); // was moved from in main() [all …]
|
D | insert_or_assign.pass.cpp | 86 Moveable mv1(5, 5.0); in main() local 87 r = m.insert_or_assign(-1, std::move(mv1)); in main() 90 assert(mv1.moved()); // was moved from in main() 120 Moveable mv1(4, 4.0); in main() local 121 r = m.insert_or_assign(std::move(mvkey1), std::move(mv1)); in main() 125 assert(mv1.moved()); // was moved from in main() 148 Moveable mv1(3, 3.0); in main() local 149 r = m.insert_or_assign(it, 2, std::move(mv1)); in main() 151 assert(mv1.moved()); // was moved from in main() 172 Moveable mv1(4, 4.0); in main() local [all …]
|
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/ |
D | try.emplace.pass.cpp | 77 Moveable mv1(3, 3.0); in main() local 80 r = m.try_emplace(i, std::move(mv1)); in main() 83 assert(!mv1.moved()); // was not moved from in main() 87 r = m.try_emplace(-1, std::move(mv1)); in main() 90 assert(mv1.moved()); // was moved from in main() 121 Moveable mv1(4, 4.0); in main() local 122 r = m.try_emplace(std::move(mvkey1), std::move(mv1)); in main() 125 assert(!mv1.moved()); // was not moved from in main() 130 r = m.try_emplace(std::move(mvkey2), std::move(mv1)); in main() 133 assert(mv1.moved()); // was moved from in main() [all …]
|
D | insert_or_assign.pass.cpp | 88 Moveable mv1(5, 5.0); in main() local 89 r = m.insert_or_assign(-1, std::move(mv1)); in main() 92 assert(mv1.moved()); // was moved from in main() 122 Moveable mv1(4, 4.0); in main() local 123 r = m.insert_or_assign(std::move(mvkey1), std::move(mv1)); in main() 127 assert(mv1.moved()); // was moved from in main() 150 Moveable mv1(3, 3.0); in main() local 151 r = m.insert_or_assign(it, 2, std::move(mv1)); in main() 153 assert(mv1.moved()); // was moved from in main() 174 Moveable mv1(4, 4.0); in main() local [all …]
|
/external/eigen/test/ |
D | sparse_vector.cpp | 89 SparseMatrixType mv1; in sparse_vector() local 90 VERIFY_IS_APPROX((mv1=v1),v1); in sparse_vector() 91 VERIFY_IS_APPROX(mv1,(v1=mv1)); in sparse_vector() 92 VERIFY_IS_APPROX(mv1,(v1=mv1.transpose())); in sparse_vector()
|
/external/opencv3/modules/calib3d/src/ |
D | p3p.cpp | 60 double mu1, double mv1, double X1, double Y1, double Z1, in solve() argument 66 int n = solve(Rs, ts, mu0, mv0, X0, Y0, Z0, mu1, mv1, X1, Y1, Z1, mu2, mv2, X2, Y2, Z2); in solve() 97 double mu1, double mv1, double X1, double Y1, double Z1, in solve() argument 109 mv1 = inv_fy * mv1 - cy_fy; in solve() 110 norm = sqrt(mu1 * mu1 + mv1 * mv1 + 1); in solve() 111 mk1 = 1. / norm; mu1 *= mk1; mv1 *= mk1; in solve() 125 cosines[0] = mu1 * mu2 + mv1 * mv2 + mk1 * mk2; in solve() 127 cosines[2] = mu0 * mu1 + mv0 * mv1 + mk0 * mk1; in solve() 141 M_orig[1][1] = lengths[i][1] * mv1; in solve()
|
D | p3p.h | 16 double mu1, double mv1, double X1, double Y1, double Z1, 20 double mu1, double mv1, double X1, double Y1, double Z1,
|
/external/valgrind/memcheck/tests/ |
D | sh-mem-random.c | 116 U4 mv1 = 0, mv2 = 0, mv4 = 0, mv8 = 0, mv4f = 0, mv8f = 0; in do_test_at() local 139 mv1++; in do_test_at() 223 mv1, mv2, mv4, mv8, mv4f, mv8f); in do_test_at()
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_video.c | 305 case PIPE_MPEG12_MO_TYPE_FRAME: goto mv1; in nouveau_vpe_mb_mv_header() 327 case PIPE_MPEG12_MO_TYPE_FIELD: goto mv1; in nouveau_vpe_mb_mv_header() 349 mv1: in nouveau_vpe_mb_mv_header()
|
/external/guice/lib/build/ |
D | cglib-3.1.jar | META-INF/
META-INF/MANIFEST.MF
net/
net/sf/
net/ ... |
/external/guice/extensions/persist/lib/ |
D | cglib-nodep-3.0.jar | META-INF/MANIFEST.MF
LICENSE
NOTICE
net/sf/cglib/beans/BeanCopier$ ... |
/external/robolectric/v1/lib/test/ |
D | mockito-core-1.8.5.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/mockito/
org/ ... |
/external/dexmaker/lib/ |
D | mockito-core-1.9.1-SNAPSHOT.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/mockito/
org/ ... |