HomeSort by relevance Sort by last modified time
    Searched refs:outer (Results 226 - 250 of 1337) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/email/test/
test_email_renamed.py 186 # The outer message is a multipart
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email.py 209 # The outer message is a multipart
    [all...]
test_email_renamed.py 186 # The outer message is a multipart
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email.py 209 # The outer message is a multipart
    [all...]
test_email_renamed.py 186 # The outer message is a multipart
    [all...]
  /external/eigen/Eigen/src/Core/
Redux.h 111 outer = Start / Derived::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::redux_novec_unroller::__anon19236
120 return mat.coeffByOuterInner(outer, inner);
161 outer = index / int(Derived::InnerSizeAtCompileTime), enumerator in enum:Eigen::internal::redux_vec_unroller::__anon19238
171 return mat.template packetByOuterInner<alignment,PacketScalar>(outer, inner);
380 CoeffReturnType coeffByOuterInner(Index outer, Index inner) const
381 { return m_evaluator.coeff(IsRowMajor ? outer : inner, IsRowMajor ? inner : outer); }
384 PacketType packetByOuterInner(Index outer, Index inner) const
385 { return m_evaluator.template packet<LoadMode,PacketType>(IsRowMajor ? outer : inner, IsRowMajor ? inner : outer); }
    [all...]
  /external/skia/bench/
ShapesBench.cpp 189 const SkRRect* outer = nullptr; variable
191 case kRect_ShapesType: outer = &fRect; break;
192 case kOval_ShapesType: outer = &fOval; break;
193 case kRRect_ShapesType: outer = &fRRect; break;
202 std::cref(*outer), std::cref(*inner),
  /external/skia/src/core/
SkLineClipper.cpp 69 // returns true if outer contains inner, even if inner is empty.
70 // note: outer.contains(inner) always returns false if inner is empty.
71 static inline bool containsNoEmptyCheck(const SkRect& outer,
73 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
74 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
  /external/skqp/bench/
ShapesBench.cpp 189 const SkRRect* outer = nullptr; variable
191 case kRect_ShapesType: outer = &fRect; break;
192 case kOval_ShapesType: outer = &fOval; break;
193 case kRRect_ShapesType: outer = &fRRect; break;
202 std::cref(*outer), std::cref(*inner),
  /external/skqp/src/core/
SkLineClipper.cpp 69 // returns true if outer contains inner, even if inner is empty.
70 // note: outer.contains(inner) always returns false if inner is empty.
71 static inline bool containsNoEmptyCheck(const SkRect& outer,
73 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
74 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
  /external/deqp/modules/gles31/functional/
es31fTessellationTests.cpp 548 static string tessellationLevelsString (const float* inner, int numInner, const float* outer, int numOuter)
551 return "inner: " + elemsStr(inner, inner+numInner) + ", outer: " + elemsStr(outer, outer+numOuter);
554 static string tessellationLevelsString (const float* inner, const float* outer, TessPrimitiveType primType)
556 return tessellationLevelsString(inner, numInnerTessellationLevels(primType), outer, numOuterTessellationLevels(primType));
559 static string tessellationLevelsString (const float* inner, const float* outer)
561 return tessellationLevelsString(inner, 2, outer, 4);
599 //! A description of an outer edge of a triangle, quad or isolines.
600 //! An outer edge can be described by the index of a u/v/w coordinat
    [all...]
  /external/skia/src/pathops/
SkOpCoincidence.cpp 777 SkCoincidentSpans* outer = fHead; local
779 if (!outer) {
782 fTop = outer;
788 const SkOpPtT* ocs = outer->coinPtTStart();
792 const SkOpPtT* oos = outer->oppPtTStart();
800 SkCoincidentSpans* inner = outer;
815 const SkOpPtT* oce = outer->coinPtTEnd();
1230 SkCoincidentSpans* outer = fHead; local
    [all...]
  /external/skqp/src/pathops/
SkOpCoincidence.cpp 777 SkCoincidentSpans* outer = fHead; local
779 if (!outer) {
782 fTop = outer;
788 const SkOpPtT* ocs = outer->coinPtTStart();
792 const SkOpPtT* oos = outer->oppPtTStart();
800 SkCoincidentSpans* inner = outer;
815 const SkOpPtT* oce = outer->coinPtTEnd();
1230 SkCoincidentSpans* outer = fHead; local
    [all...]
  /external/v8/src/crankshaft/
lithium.cc 519 hydrogen_env = hydrogen_env->outer();
523 hydrogen_env = hydrogen_env->outer();
527 // In case an outer frame is a function frame we have to replay
532 // So we push return value on top of outer environment.
579 // Skip potential outer arguments adaptor frame.
580 HEnvironment* outer_hydrogen_env = hydrogen_env->outer();
583 outer_hydrogen_env = outer_hydrogen_env->outer();
585 LEnvironment* outer = CreateEnvironment( local
589 ast_id, 0, 0, 0, outer, hydrogen_env->entry(), zone());
592 LEnvironment* outer local
    [all...]
  /external/clang/test/CodeGenCXX/
x86_64-arguments.cpp 123 struct outer { struct in namespace:test6
129 int test(outer x) {
  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 232 InnerIterator(const sparse_dense_outer_product_evaluator &xprEval, Index outer)
234 m_outer(outer),
236 m_factor(get(xprEval.m_rhsXprImpl, outer, typename internal::traits<ActualRhs>::StorageKind() ))
239 EIGEN_STRONG_INLINE Index outer() const { return m_outer; } function in class:Eigen::internal::sparse_dense_outer_product_evaluator::InnerIterator
247 Scalar get(const RhsEval &rhs, Index outer, Dense = Dense()) const
249 return rhs.coeff(outer);
252 Scalar get(const RhsEval &rhs, Index outer, Sparse = Sparse())
254 typename RhsEval::InnerIterator it(rhs, outer);
285 // sparse * dense outer product
  /external/webrtc/webrtc/libjingle/xmpp/
xmppengineimpl.h 193 StanzaParseHandler(XmppEngineImpl* outer) : outer_(outer) {}
  /frameworks/base/core/java/com/android/internal/util/
StatLogger.java 157 final long outer = proto.start(fieldId); local
170 proto.end(outer);
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 21 SkPathEffect* outer = reinterpret_cast<SkPathEffect*>(outerHandle); local
23 SkPathEffect* effect = SkPathEffect::MakeCompose(sk_ref_sp(outer),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
except.h 124 struct eh_region_d *outer; variable in typeref:struct:eh_region_d
319 r = r->outer;
  /prebuilts/go/darwin-x86/src/go/ast/
scope.go 16 // in the scope and a link to the immediately surrounding (outer)
20 Outer *Scope
24 // NewScope creates a new scope nested in the outer scope.
25 func NewScope(outer *Scope) *Scope {
27 return &Scope{outer, make(map[string]*Object, n)}
31 // found in scope s, otherwise it returns nil. Outer scopes
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue20250.go 8 // due to propagation of addrtaken to outer variables for
  /prebuilts/go/linux-x86/src/go/ast/
scope.go 16 // in the scope and a link to the immediately surrounding (outer)
20 Outer *Scope
24 // NewScope creates a new scope nested in the outer scope.
25 func NewScope(outer *Scope) *Scope {
27 return &Scope{outer, make(map[string]*Object, n)}
31 // found in scope s, otherwise it returns nil. Outer scopes
  /prebuilts/go/linux-x86/test/fixedbugs/
issue20250.go 8 // due to propagation of addrtaken to outer variables for
  /test/vti/dashboard/src/main/webapp/css/
show_performance_digest.css 80 .outer-cell {

Completed in 1290 milliseconds

1 2 3 4 5 6 7 8 91011>>