| /external/harfbuzz_ng/src/ |
| hb-ot-var-hvar-table.hh | 45 unsigned int map (unsigned int v) const /* Returns 16.16 outer.inner. */ 65 unsigned int outer = u >> n; local 67 u = (outer<<16) | inner;
|
| /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
| CharsetUTF8.java | 91 outer: while (true) { 156 break outer; local 160 break outer; local 213 outer: while (true) { 282 break outer; local 286 break outer; local
|
| /frameworks/base/core/java/com/android/internal/util/ |
| StatLogger.java | 157 final long outer = proto.start(fieldId); local 170 proto.end(outer);
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/wm/ |
| WindowTracingTest.java | 171 outer: for (int i = 0; i <= haystackLenght - needle.length; i++) { 174 continue outer; local
|
| /libcore/ojluni/src/main/java/java/util/concurrent/ |
| CopyOnWriteArraySet.java | 303 outer: for (Object x : set) { 309 continue outer; local
|
| /art/compiler/optimizing/ |
| loop_optimization.h | 54 outer(nullptr), 59 LoopNode* outer; member in struct:art::HLoopOptimization::LoopNode 126 // Traverses all loops inner to outer to perform simplifications and optimizations.
|
| /dalvik/dx/src/com/android/dx/dex/cf/ |
| AttributeTranslator.java | 329 CstType outer = foundThisClass.getOuterClass(); local 330 if (outer == null) {
|
| /device/generic/goldfish-opengl/ |
| common.mk | 139 emugl-export-outer = \ 260 $(call emugl-export-outer,ADDITIONAL_DEPENDENCIES,$(LOCAL_MODULE_PATH)/$(LOCAL_MODULE)$(TARGET_SHLIB_SUFFIX))
|
| /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);
|
| 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/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
|