/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1Sequence.java | 231 final ASN1Sequence outer = this; local 261 return outer; 266 return outer;
|
ASN1Set.java | 321 final ASN1Set outer = this; local 351 return outer; 356 return outer;
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/ |
ASN1Sequence.java | 234 final ASN1Sequence outer = this; local 264 return outer; 269 return outer;
|
ASN1Set.java | 323 final ASN1Set outer = this; local 353 return outer; 358 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);
|
enable_if.cpp | 139 template <typename T> void outer() { function
|
warn-unused-filescoped.cpp | 150 class outer { class in namespace:unused_nested
|
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
esextcTessellationShaderVertexSpacing.hpp | 50 * in regard to relevant inner/outer tessellation levels for all 91 float outer[4]; member in struct:glcts::TessellationShaderVertexSpacing::_run 103 memset(outer, 0, sizeof(outer));
|
/external/eigen/Eigen/src/SparseCore/ |
SparseCompressedBase.h | 157 InnerIterator(const SparseCompressedBase& mat, Index outer) 158 : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer) 167 m_id = mat.outerIndexPtr()[outer]; 169 m_end = mat.outerIndexPtr()[outer+1]; 171 m_end = m_id + mat.innerNonZeroPtr()[outer]; 193 inline Index outer() const { return m_outer.value(); } function in class:Eigen::SparseCompressedBase::InnerIterator 210 template<typename T> InnerIterator(const SparseMatrixBase<T>&, Index outer); 217 ReverseInnerIterator(const SparseCompressedBase& mat, Index outer) 218 : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer) 227 m_start = mat.outerIndexPtr()[outer]; 253 inline Index outer() const { return m_outer.value(); } function in class:Eigen::SparseCompressedBase::ReverseInnerIterator 322 const Index outer = Derived::IsRowMajor ? row : col; local [all...] |
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
|
SparseMap.h | 107 const Index outer = IsRowMajor ? row : col; local 110 Index start = m_outerIndex[outer]; 111 Index end = isCompressed() ? m_outerIndex[outer+1] : start + m_innerNonZeros[outer]; 182 const Index outer = IsRowMajor ? row : col; local 185 Index start = Base::m_outerIndex[outer]; 186 Index end = Base::isCompressed() ? Base::m_outerIndex[outer+1] : start + Base::m_innerNonZeros[outer];
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
DynamicSparseMatrix.h | 96 const Index outer = IsRowMajor ? row : col; local 98 return m_data[outer].at(inner); 107 const Index outer = IsRowMajor ? row : col; local 109 return m_data[outer].atWithInsertion(inner); 145 inline void startVec(Index /*outer*/) {} 158 inline Scalar& insertBackByOuterInner(Index outer, Index inner) 160 eigen_assert(outer<Index(m_data.size()) && inner<m_innerSize && "out of range"); 161 eigen_assert(((m_data[outer].size()==0) || (m_data[outer].index(m_data[outer].size()-1)<inner) [all...] |
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/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
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableMap.java | 258 final Map<K, V> outer = this; local 262 return outer.size(); 267 V outerValue = outer.get(key); 276 final Iterator<Entry<K,V>> outerEntryIterator = outer.entrySet().iterator(); 308 return outer.size();
|
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
Chars.java | 180 outer: 184 continue outer; local
|
Doubles.java | 170 outer: 174 continue outer; local
|
Floats.java | 167 outer: 171 continue outer; local
|