/art/runtime/mirror/ |
object_test.cc | 347 ObjPtr<Array> outer = multi->AsObjectArray<Array>()->Get(k); local 348 EXPECT_OBJ_PTR_EQ(int_array_class.Get(), outer->GetClass()); 349 EXPECT_EQ(j, outer->GetLength()); [all...] |
/external/clang/test/CodeGenCXX/ |
x86_64-arguments.cpp | 123 struct outer { struct in namespace:test6 129 int test(outer x) {
|
/external/clang/test/SemaTemplate/ |
friend-template.cpp | 105 class outer { class in namespace:test5 109 class outer::foo {
|
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
esextcTessellationShaderTCTE.hpp | 76 * with inner and outer tessellation levels set to reasonably small 178 * point mode permutations, as well as over a number of inner/outer tessellation 234 glw::GLfloat outer[4]; member in struct:glcts::TessellationShaderTCTEgl_MaxPatchVertices_Position_PointSize::_run 263 memset(outer, 0, sizeof(outer)); 360 * of different inner/outer tessellation level configurations by reading
|
esextcTessellationShaderUtils.hpp | 163 /** Defines a set of tessellation inner+outer levels */ 167 float outer[4]; member in struct:glcts::_tessellation_levels 172 memset(outer, 0, sizeof(outer)); 188 * GL_MAX_TESS_GEN_LEVEL_EXT} will be used for inner/outer tesselelation 191 * outer tessellation levels (because otherwise no geometry will be generated 199 * - outer tessellation levels use different values (outer[0] != outer[1] != 200 * != outer[2] != outer[3]) [all...] |
/external/eigen/Eigen/src/Core/ |
Redux.h | 111 outer = Start / Derived::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::redux_novec_unroller::__anon20989 120 return mat.coeffByOuterInner(outer, inner); 161 outer = index / int(Derived::InnerSizeAtCompileTime), enumerator in enum:Eigen::internal::redux_vec_unroller::__anon20991 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/eigen/Eigen/src/SparseCore/ |
SparseBlock.h | 182 // update outer index pointers and innerNonZeros 329 /** \returns the \a outer -th column (resp. row) of the matrix \c *this if \c *this 333 typename SparseMatrixBase<Derived>::InnerVectorReturnType SparseMatrixBase<Derived>::innerVector(Index outer) 334 { return InnerVectorReturnType(derived(), outer); } 336 /** \returns the \a outer -th column (resp. row) of the matrix \c *this if \c *this 340 const typename SparseMatrixBase<Derived>::ConstInnerVectorReturnType SparseMatrixBase<Derived>::innerVector(Index outer) const 341 { return ConstInnerVectorReturnType(derived(), outer); } 343 /** \returns the \a outer -th column (resp. row) of the matrix \c *this if \c *this 356 /** \returns the \a outer -th column (resp. row) of the matrix \c *this if \c *this 511 EIGEN_STRONG_INLINE InnerVectorInnerIterator(const unary_evaluator& aEval, Index outer) 521 inline Index outer() const { return EvalIterator::outer() - (IsRowMajor ? m_block.startRow() : m_block.startCol()); } function in class:Eigen::internal::unary_evaluator::InnerVectorInnerIterator 555 inline Index outer() const { return 0; } function in class:Eigen::internal::unary_evaluator::OuterVectorInnerIterator [all...] |
SparseVector.h | 142 inline void startVec(Index outer) 144 EIGEN_UNUSED_VARIABLE(outer); 145 eigen_assert(outer==0); 148 inline Scalar& insertBackByOuterInner(Index outer, Index inner) 150 EIGEN_UNUSED_VARIABLE(outer); 151 eigen_assert(outer==0); 160 Scalar& insertBackByOuterInnerUnordered(Index outer, Index inner) 162 EIGEN_UNUSED_VARIABLE(outer); 163 eigen_assert(outer==0); 177 Index outer = IsColVector ? col : row local [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockSparseMatrix.h | 146 InnerIterator(const BlockSparseMatrixView& mat, Index outer) 147 : BlockSparseMatrixT::BlockInnerIterator(mat.m_spblockmat, outer) 417 // Browse each outer block and compute the structure 435 } // end current outer block 448 // Browse the outer block column by column (for column-major matrices) 475 } // end of this outer block 509 //Browse each outer block 530 // Save the pointer to the next outer block 643 * and the number of nonzero blocks per outer dimension 648 VectorXi nzblock_outer(m_outerBSize); // Number of nz blocks per outer vecto 694 StorageIndex outer = IsColMajor ? it->col() : it->row(); local [all...] |
/external/grpc-grpc-java/benchmarks/src/jmh/java/io/grpc/benchmarks/netty/ |
AbstractBenchmark.java | 142 outer: while (networkInterfaces.hasMoreElements()) { 154 break outer; local
|
/external/guava/guava/src/com/google/common/primitives/ |
Doubles.java | 175 outer: 179 continue outer; local
|
Ints.java | 190 outer: 194 continue outer; local
|
Longs.java | 157 outer: 161 continue outer; local
|
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
Ints.java | 189 outer: 193 continue outer; local
|
/external/guava/guava-tests/test/com/google/common/collect/ |
SynchronizedNavigableMapTest.java | 50 NavigableMap<K, V> outer = Synchronized.navigableMap(inner, mutex); local 51 return outer; 244 NavigableMap<String, String> outer = 246 return outer;
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
PatternStringUtils.java | 324 outer: for (int offset = 0; offset < input.length(); offset++) { 368 continue outer; local 379 continue outer; local
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
PatternStringUtils.java | 322 outer: for (int offset = 0; offset < input.length(); offset++) { 366 continue outer; local 377 continue outer; local
|
/external/mockito/src/test/java/org/mockitousage/annotation/ |
SpyAnnotationTest.java | 169 WithMockAndSpy outer = new WithMockAndSpy(); local 170 MockitoAnnotations.initMocks(outer); 171 when(outer.strength.strength()).thenReturn("strength"); 172 assertEquals("inner strength", outer.strength.fullStrength()); 182 class Outer { 188 private Outer.Inner inner;
|
/external/nist-sip/java/gov/nist/core/ |
GenericObjectList.java | 452 outer: while (hisIterator.hasNext()) { 463 break outer; local 466 break outer; local
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_helpers.cc | 140 // Find "outer", the descriptor of the top-level message in which 142 const Descriptor* outer = descriptor; local 143 while (outer->containing_type() != NULL) outer = outer->containing_type(); 145 const string& outer_name = outer->full_name(); 151 return outer->name() + DotsToUnderscores(inner_name);
|
/external/python/cpython3/Lib/test/ |
test_fstring.py | 735 def outer(x): function in function:.test_closure 740 self.assertEqual(outer('987')(), 'x:987') 741 self.assertEqual(outer(7)(), 'x:7') [all...] |
/external/skia/src/core/ |
SkColorFilter.cpp | 135 SkComposeColorFilter(sk_sp<SkColorFilter> outer, sk_sp<SkColorFilter> inner, 137 : fOuter(std::move(outer)) 150 auto outer = xformer->apply(fOuter.get()); variable 152 if (outer != fOuter || inner != fInner) { 153 return outer->makeComposed(inner); 168 sk_sp<SkColorFilter> outer(buffer.readColorFilter()); 170 return outer ? outer->makeComposed(std::move(inner)) : inner;
|
SkPicturePlayback.cpp | 268 SkRRect outer, inner; local 269 reader->readRRect(&outer); 274 canvas->drawDRRect(outer, inner, *paint);
|
/external/skia/src/gpu/ |
GrShape.h | 270 const SkScalar* outer = rects[0].asScalars(); local 275 SkScalar margin = SkScalarAbs(outer[0] - inner[0]); 279 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
|
/external/skia/tests/ |
RegionTest.cpp | 125 static bool slow_contains(const SkRegion& outer, const SkRegion& inner) { 127 tmp.op(outer, inner, SkRegion::kUnion_Op); 128 return outer == tmp; 131 static bool slow_contains(const SkRegion& outer, const SkIRect& r) { 133 tmp.op(outer, SkRegion(r), SkRegion::kUnion_Op); 134 return outer == tmp; 137 static bool slow_intersects(const SkRegion& outer, const SkRegion& inner) { 139 return tmp.op(outer, inner, SkRegion::kIntersect_Op); 197 SkRegion outer; local 198 randRgn(rand, &outer, 8) [all...] |