/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArraySet.java | 274 outer: for (Object x : set) { 280 continue outer; local
|
/external/v8/test/mjsunit/ |
strict-mode.js | 33 function outer() {\ 39 function outer() {\ 141 // Strict mode doesn't affect the outer stop of strict code. 1124 function outer() { function [all...] |
/dalvik/dx/src/com/android/dx/dex/cf/ |
AttributeTranslator.java | 311 CstType outer = foundThisClass.getOuterClass(); local 312 if (outer == null) {
|
/device/generic/goldfish/opengl/ |
common.mk | 120 emugl-export-outer = \
|
/external/boringssl/mac-x86_64/crypto/bn/ |
x86_64-mont.S | 103 jmp L$outer 105 L$outer: 172 jb L$outer
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1Sequence.java | 226 final ASN1Sequence outer = this; local 256 return outer; 261 return outer;
|
ASN1Set.java | 317 final ASN1Set outer = this; local 347 return outer; 352 return outer;
|
/external/clang/test/FixIt/ |
typo.cpp | 103 namespace outer { namespace 104 namespace inner { // expected-note{{'outer::inner' declared here}} \ 105 // expected-note{{namespace 'outer::inner' defined here}} \ 111 using namespace outr::inner; // expected-error{{no namespace named 'inner' in namespace 'outr'; did you mean 'outer::inner'?}} 114 outr::inner::i = 3; // expected-error{{no member named 'inner' in namespace 'outr'; did you mean 'outer::inner'?}} 115 outer::innr::i = 4; // expected-error{{no member named 'innr' in namespace 'outer'; did you mean 'inner'?}}
|
/external/clang/test/SemaCXX/ |
coroutines.cpp | 160 struct outer {}; struct 170 struct indirectly_awaitable { indirectly_awaitable(outer); }; 181 template void await_template(outer); // expected-note {{instantiation}} 182 template void await_template_2(outer);
|
warn-unused-filescoped.cpp | 150 class outer { class in namespace:unused_nested
|
/external/eigen/Eigen/src/Core/ |
Assign.h | 138 outer = Index / Derived1::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::assign_DefaultTraversal_CompleteUnrolling::__anon10931 144 dst.copyCoeffByOuterInner(outer, inner, src); 158 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, typename Derived1::Index 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::__anon10932 206 dst.template copyPacketByOuterInner<Derived2, Aligned, JointAlignment>(outer, inner, src); 221 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, typename Derived1::Index 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...] |
Redux.h | 96 outer = Start / Derived::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::redux_novec_unroller::__anon11113 104 return mat.coeffByOuterInner(outer, inner); 144 outer = index / int(Derived::InnerSizeAtCompileTime), enumerator in enum:Eigen::internal::redux_vec_unroller::__anon11115 154 return mat.template packetByOuterInner<alignment>(outer, inner);
|
/external/eigen/Eigen/src/SparseCore/ |
MappedSparseMatrix.h | 70 const Index outer = IsRowMajor ? row : col; local 73 Index start = m_outerIndex[outer]; 74 Index end = m_outerIndex[outer+1]; 89 const Index outer = IsRowMajor ? row : col; local 92 Index start = m_outerIndex[outer]; 93 Index end = m_outerIndex[outer+1]; 121 InnerIterator(const MappedSparseMatrix& mat, Index outer) 123 m_outer(outer), 124 m_id(mat.outerIndexPtr()[outer]), 126 m_end(mat.outerIndexPtr()[outer+1] [all...] |
SparseBlock.h | 32 inline InnerIterator(const BlockType& xpr, Index outer) 33 : XprType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 44 inline ReverseInnerIterator(const BlockType& xpr, Index outer) 45 : XprType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 108 inline InnerIterator(const BlockType& xpr, Index outer) 109 : SparseMatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 119 inline ReverseInnerIterator(const BlockType& xpr, Index outer) 491 inline Index outer() const { return Base::outer() - (IsRowMajor ? m_block.m_startRow.value() : m_block.m_startCol.value()); } function in class:Eigen::BlockImpl::InnerIterator 514 inline Index outer() const { return Base::outer() - (IsRowMajor ? m_block.m_startRow.value() : m_block.m_startCol.value()); } function in class:Eigen::BlockImpl::ReverseInnerIterator [all...] |
SparseDenseProduct.h | 122 EIGEN_STRONG_INLINE InnerIterator(const SparseDenseOuterProduct& prod, Index outer) 123 : Base(prod.lhs(), 0), m_outer(outer), m_factor(get(prod.rhs(), outer, typename internal::traits<Rhs>::StorageKind() )) 126 inline Index outer() const { return m_outer; } function in class:Eigen::SparseDenseOuterProduct::InnerIterator 133 static Scalar get(const _RhsNested &rhs, Index outer, Dense = Dense()) 135 return rhs.coeff(outer); 138 static Scalar get(const _RhsNested &rhs, Index outer, Sparse = Sparse()) 140 typename Traits::_RhsNested::InnerIterator it(rhs, outer);
|
SparseDiagonalProduct.h | 115 const SparseDiagonalProductType& expr, Index outer) 116 : Base(expr.rhs()*(expr.lhs().diagonal().coeff(outer)), outer) 136 const SparseDiagonalProductType& expr, Index outer) 137 : Base(expr.rhs().innerVector(outer) .cwiseProduct(expr.lhs().diagonal()), 0), m_outer(outer) 140 inline Index outer() const { return m_outer; } function in class:Eigen::internal::sparse_diagonal_product_inner_iterator_selector 153 const SparseDiagonalProductType& expr, Index outer) 154 : Base(expr.lhs()*expr.rhs().diagonal().coeff(outer), outer) 178 inline Index outer() const { return m_outer; } function in class:Eigen::internal::sparse_diagonal_product_inner_iterator_selector [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
RandomSetter.h | 224 const Index outer = (it->first >> m_keyBitsOffset) + outerOffset; local 226 if (prevOuter!=outer) 228 for (Index j=prevOuter+1;j<=outer;++j) 230 prevOuter = outer; 232 mp_target->insertBackByOuterInner(outer, inner) = it->second.value; 247 const Index outer = it->first & keyBitsMask; local 248 ++positions[outer]; 271 const Index outer = it->first & keyBitsMask; local 276 Index posStart = mp_target->outerIndexPtr()[outer]; 277 Index i = (positions[outer]++) - 1 295 const Index outer = SetterRowMajor ? row : col; local [all...] |
/external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/ |
protobufwireadapter.cc | 173 OuterMessage outer; local 176 if (!outer.ParseFromString(string)) { 177 LOG(ERROR) << "Error parsing outer message"; 182 if (outer.status() != OuterMessage_Status_STATUS_OK) { 183 LOG(ERROR) << "Got error message: " << outer.status(); 185 switch (outer.status()) { 197 LOG(INFO) << "Parsing message type: " << outer.type(); 199 switch (outer.type()) { 201 ParseConfigurationMessage(outer.payload()); 204 ParseConfigurationAckMessage(outer.payload()) 365 OuterMessage outer; local 388 OuterMessage outer; local [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ComputingConcurrentHashMap.java | 79 outer: while (true) { 164 continue outer; local
|
ImmutableRangeMap.java | 267 final ImmutableRangeMap<K, V> outer = this; local 273 return outer.subRangeMap(subRange.intersection(range));
|
/external/guava/guava/src/com/google/common/primitives/ |
Booleans.java | 149 outer: 153 continue outer; local
|
Bytes.java | 125 outer: 129 continue outer; local
|
Chars.java | 182 outer: 186 continue outer; local
|
Floats.java | 171 outer: 175 continue outer; local
|
Shorts.java | 189 outer: 193 continue outer; local
|