HomeSort by relevance Sort by last modified time
    Searched refs:outer (Results 51 - 75 of 261) sorted by null

1 23 4 5 6 7 8 91011

  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppstanzaparser.h 58 ParseHandler(XmppStanzaParser * outer) : outer_(outer) {}
  /external/clang/test/FixIt/
typo.cpp 100 namespace outer { namespace
101 namespace inner { // expected-note{{'outer::inner' declared here}} \
102 // expected-note{{namespace 'outer::inner' defined here}} \
108 using namespace outr::inner; // expected-error{{no namespace named 'inner' in namespace 'outr'; did you mean 'outer::inner'?}}
111 outr::inner::i = 3; // expected-error{{no member named 'inner' in namespace 'outr'; did you mean 'outer::inner'?}}
112 outer::innr::i = 4; // expected-error{{no member named 'innr' in namespace 'outer'; did you mean 'inner'?}}
  /external/eigen/Eigen/src/Core/
Assign.h 138 outer = Index / Derived1::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::assign_DefaultTraversal_CompleteUnrolling::__anon7260
144 dst.copyCoeffByOuterInner(outer, inner, src);
158 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, int outer)
160 dst.copyCoeffByOuterInner(outer, Index, src);
161 assign_DefaultTraversal_InnerUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src, outer);
199 outer = Index / Derived1::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::assign_innervec_CompleteUnrolling::__anon7261
206 dst.template copyPacketByOuterInner<Derived2, Aligned, JointAlignment>(outer, inner, src);
221 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, int outer)
223 dst.template copyPacketByOuterInner<Derived2, Aligned, Aligned>(outer, Index, src);
225 Index+packet_traits<typename Derived1::Scalar>::size, Stop>::run(dst, src, outer);
    [all...]
Stride.h 22 * It holds two values: the inner stride and the outer stride.
27 * The outer stride is the pointer increment between two consecutive rows of a row-major matrix or
34 * \param _OuterStrideAtCompileTime the outer stride, or Dynamic if you want to specify it at runtime.
69 : m_outer(other.outer()), m_inner(other.inner())
72 /** \returns the outer stride */
73 inline Index outer() const { return m_outer.value(); } function in class:Eigen::Stride
94 /** \brief Convenience specialization of Stride to specify only an outer stride
Assign_MKL.h 94 for(Index outer = 0; outer < outerSize; ++outer) {
95 const Scalar *src_ptr = src.IsRowMajor ? &(src.nestedExpression().coeffRef(outer,0)) :
96 &(src.nestedExpression().coeffRef(0, outer));
97 Scalar *dst_ptr = dst.IsRowMajor ? &(dst.coeffRef(outer,0)) : &(dst.coeffRef(0, outer));
  /external/eigen/Eigen/src/SparseCore/
SparseCwiseUnaryOp.h 41 EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryOpImpl& unaryOp, typename CwiseUnaryOpImpl::Index outer)
42 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
64 EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryOpImpl& unaryOp, typename CwiseUnaryOpImpl::Index outer)
65 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
105 EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryViewImpl& unaryOp, typename CwiseUnaryViewImpl::Index outer)
106 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
127 EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryViewImpl& unaryOp, typename CwiseUnaryViewImpl::Index outer)
128 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
SparseCwiseBinaryOp.h 76 EIGEN_STRONG_INLINE InnerIterator(const CwiseBinaryOpImpl& binOp, typename CwiseBinaryOpImpl::Index outer)
77 : Base(binOp.derived(),outer)
106 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer)
107 : m_lhsIter(xpr.lhs(),outer), m_rhsIter(xpr.rhs(),outer), m_functor(xpr.functor())
171 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer)
172 : m_lhsIter(xpr.lhs(),outer), m_rhsIter(xpr.rhs(),outer), m_functor(xpr.functor())
225 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer)
226 : m_rhs(xpr.rhs()), m_lhsIter(xpr.lhs(),outer), m_functor(xpr.functor()), m_outer(outer
    [all...]
SparseVector.h 122 inline void startVec(Index outer)
124 EIGEN_UNUSED_VARIABLE(outer);
125 eigen_assert(outer==0);
128 inline Scalar& insertBackByOuterInner(Index outer, Index inner)
130 EIGEN_UNUSED_VARIABLE(outer);
131 eigen_assert(outer==0);
143 Index outer = IsColVector ? col : row; local
144 eigen_assert(outer==0);
336 InnerIterator(const SparseVector& vec, Index outer=0)
339 EIGEN_UNUSED_VARIABLE(outer);
    [all...]
SparseView.h 61 InnerIterator(const SparseView& view, Index outer) :
62 IterBase(view.m_matrix, outer), m_view(view)
  /external/javassist/src/main/javassist/
CtNewNestedClass.java 40 private static void updateInnerEntry(int mod, String name, CtClass clazz, boolean outer) {
53 if (outName != null && outer)
  /external/skia/legacy/include/core/
SkPathEffect.h 73 and the the outer pathEffect (e.g. outer(inner(path)))
74 The reference counts for outer and inner are both incremented in the constructor,
77 SkComposePathEffect(SkPathEffect* outer, SkPathEffect* inner)
78 : INHERITED(outer, inner) {}
  /external/v8/test/mjsunit/compiler/
property-refs.js 31 return o.outer.x | o.outer.inner.y;
35 o.outer.x = x;
36 o.outer.inner.y = y;
41 outer: {
  /packages/apps/Camera/src/com/android/camera/ui/
PieItem.java 44 private int outer; field in class:PieItem
138 outer = outside;
167 return outer;
  /external/javassist/src/main/javassist/bytecode/
InnerClassesAttribute.java 162 * @param outer <code>outer_class_info_index</code>
166 public void append(String inner, String outer, String name, int flags) {
168 int o = constPool.addClassInfo(outer);
177 * @param outer <code>outer_class_info_index</code>
181 public void append(int inner, int outer, int name, int flags) {
192 ByteArray.write16bit(outer, newData, len + 2);
  /external/skia/legacy/src/core/
SkStrokerPriv.h 30 typedef void (*JoinProc)(SkPath* outer, SkPath* inner,
  /external/skia/src/core/
SkStrokerPriv.h 30 typedef void (*JoinProc)(SkPath* outer, SkPath* inner,
  /packages/providers/MediaProvider/tools/genfiles/
genfiles.sh 132 $ANDROID_HOST_OUT/bin/sqlite3 $1 "select audio_playlists._data, audio._data from audio_playlists left outer join audio_playlists_map on audio_playlists._id=audio_playlists_map.playlist_id left outer join audio on audio_playlists_map.audio_id=audio._id order by audio_playlists_map.playlist_id,audio_playlists_map.play_order;" | {
  /external/skia/include/core/
SkPathEffect.h 150 and the the outer pathEffect (e.g. outer(inner(path)))
151 The reference counts for outer and inner are both incremented in the constructor,
154 SkComposePathEffect(SkPathEffect* outer, SkPathEffect* inner)
155 : INHERITED(outer, inner) {}
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 341 outer: while (it.hasNext()) {
348 continue outer; local
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java 91 outer: for (;;) {
109 continue outer; local
140 outer: for (;;) {
158 continue outer; local
175 outer: for (;;) {
193 continue outer; local
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 117 // Find "outer", the descriptor of the top-level message in which
119 const Descriptor* outer = descriptor; local
120 while (outer->containing_type() != NULL) outer = outer->containing_type();
122 const string& outer_name = outer->full_name();
128 return outer->name() + DotsToUnderscores(inner_name);
  /external/v8/test/mjsunit/
debug-stepout-scope.js 252 with ({x: 'outer'}) {
261 with ({x: 'outer'}) {
271 with ({x: 'outer'}) {
282 with ({x: 'outer'}) {
294 with ({x: 'outer'}) {
303 with ({x: 'outer'}) {
316 with ({x: 'outer'}) {
326 with ({x: 'outer'}) {
337 with ({x: 'outer'}) {
350 with ({x: 'outer'}) {
    [all...]
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java 639 outer:
655 break outer;
661 break outer;
679 break outer;
683 break outer;
692 break outer;
696 break outer;
702 } // End of "outer" loop
758 outer:
774 break outer;
    [all...]
TimSort.java 672 outer:
688 break outer;
694 break outer;
712 break outer;
716 break outer;
725 break outer;
729 break outer;
735 } // End of "outer" loop
791 outer:
807 break outer; local
813 break outer; local
831 break outer; local
835 break outer; local
844 break outer; local
848 break outer; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.cpp 749 int RenderTableCell::borderHalfLeft(bool outer) const
753 return tableStyle->isLeftToRightDirection() ? borderHalfStart(outer) : borderHalfEnd(outer);
754 return tableStyle->isFlippedBlocksWritingMode() ? borderHalfAfter(outer) : borderHalfBefore(outer);
757 int RenderTableCell::borderHalfRight(bool outer) const
761 return tableStyle->isLeftToRightDirection() ? borderHalfEnd(outer) : borderHalfStart(outer);
762 return tableStyle->isFlippedBlocksWritingMode() ? borderHalfBefore(outer) : borderHalfAfter(outer);
    [all...]

Completed in 2290 milliseconds

1 23 4 5 6 7 8 91011