/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | Operation.java | 38 protected Expression m_left; field in Operation 56 m_left.fixupVariables(vars, globalsSize); in fixupVariables() 70 if (null != m_left && m_left.canTraverseOutsideSubtree()) in canTraverseOutsideSubtree() 88 m_left = l; in setLeftRight() 109 XObject left = m_left.execute(xctxt, true); in execute() 138 return m_left; in getLeftOperand() 154 return m_left; in getExpression() 163 m_left = exp; in setExpression() 174 m_left.callVisitors(new LeftExprOwner(), visitor); in callVisitors() 204 if(!m_left.deepEquals(((Operation)expr).m_left)) in deepEquals()
|
D | And.java | 48 XObject expr1 = m_left.execute(xctxt); in execute() 72 return (m_left.bool(xctxt) && m_right.bool(xctxt)); in bool()
|
D | Or.java | 48 XObject expr1 = m_left.execute(xctxt); in execute() 72 return (m_left.bool(xctxt) || m_right.bool(xctxt)); in bool()
|
D | Mod.java | 64 return (m_left.num(xctxt) % m_right.num(xctxt)); in num()
|
D | Plus.java | 64 return (m_right.num(xctxt) + m_left.num(xctxt)); in num()
|
D | Mult.java | 63 return (m_left.num(xctxt) * m_right.num(xctxt)); in num()
|
D | Minus.java | 65 return (m_left.num(xctxt) - m_right.num(xctxt)); in num()
|
D | Div.java | 64 return (m_left.num(xctxt) / m_right.num(xctxt)); in num()
|
D | Equals.java | 65 XObject left = m_left.execute(xctxt, true); in bool()
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
D | Scaling.h | 79 m_left.resize(m); in compute() 81 m_left.setOnes(); in compute() 112 m_left(i) /= Dr(i); in compute() 152 return m_left; in LeftScaling() 181 VectorXd m_left; // Left scaling vector variable
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_thread_pool.cpp | 81 MapXf m_left(t_left.data(), 1500, 1147); in test_multithread_contraction() local 90 m_result = m_left * m_right; in test_multithread_contraction() 122 MapXf m_left(t_left.data(), 32, 500); in test_contraction_corner_cases() local 131 m_result = m_left.transpose() * m_right; in test_contraction_corner_cases() 146 new(&m_left) MapXf(t_left.data(), 32, 1); in test_contraction_corner_cases() 147 m_result = m_left.transpose() * m_right; in test_contraction_corner_cases() 163 new(&m_left) MapXf(t_left.data(), 32, 500); in test_contraction_corner_cases() 165 m_result = m_left.transpose() * m_right; in test_contraction_corner_cases() 181 new(&m_left) MapXf(t_left.data(), 32, 1); in test_contraction_corner_cases() 183 m_result = m_left.transpose() * m_right; in test_contraction_corner_cases()
|
D | cxx11_tensor_contraction.cpp | 367 MapXf m_left(t_left.data(), 1500, 248); in test_large_contraction() local 376 m_result = m_left * m_right; in test_large_contraction() 395 MapXf m_left(t_left.data(), 30, 50); in test_matrix_vector() local 404 m_result = m_left * m_right; in test_matrix_vector() 426 MapXf m_left(t_left.data(), 7, 13*17); in test_tensor_vector() local 428 …Eigen::Matrix<float, Dynamic, Dynamic, DataLayout> m_result = m_left.transpose() * m_right.transpo… in test_tensor_vector() 457 Map<Eigen::Matrix<float, Dynamic, Dynamic, DataLayout>> m_left(t_left.data(), 150, 93); in test_small_blocking_factors() local 459 Eigen::Matrix<float, Dynamic, Dynamic, DataLayout> m_result = m_left * m_right; in test_small_blocking_factors()
|
D | cxx11_tensor_of_complex.cpp | 80 MapXcf m_left(t_left.data(), 1500, 248); in test_contractions() local 90 m_result = m_left * m_right; in test_contractions()
|
D | cxx11_tensor_cuda.cu | 292 MapXf m_left(t_left.data(), 300, 93); in test_cuda_contraction() local 301 m_result = m_left * m_right; in test_cuda_contraction()
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | PostfixExpression.h | 60 : Node(BinaryOp), m_op_type(op_type), m_left(&left), m_right(&right) {} in BinaryOpNode() 64 const Node *Left() const { return m_left; } in Left() 65 Node *&Left() { return m_left; } in Left() 74 Node *m_left; variable
|
/external/pdfium/core/fxge/agg/ |
D | fx_agg_driver.cpp | 1056 : m_ren(&ren), m_left(left), m_top(top) {} in renderer_scanline_aa_offset() 1068 m_ren->blend_solid_hspan(x - m_left, y - m_top, (unsigned)span->len, in render() 1071 m_ren->blend_hline(x - m_left, y - m_top, (unsigned)(x - span->len - 1), in render() 1084 unsigned m_left, m_top; member in agg::renderer_scanline_aa_offset
|