HomeSort by relevance Sort by last modified time
    Searched refs:outer (Results 1 - 25 of 408) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
lineno-dbginfo.c 4 // outer is at line number 5.
5 int outer = 42; variable
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p8-0x.cpp 7 struct outer { struct in namespace:PR10127
23 operator decltype(outer::middle::inner()) ();
24 operator decltype(outer::middle())::inner2 ();
25 operator decltype(outer())::middle::inner3 ();
26 str(int (decltype(outer::middle::inner())::*n)(),
27 int (decltype(outer::middle())::inner::*o)(),
28 int (decltype(outer())::middle::inner::*p)());
31 decltype(outer::middle::inner()) a;
33 a.decltype(outer::middle())::mfunc(); // expected-error{{'PR10127::outer::middle::mfunc' is not a member of class 'decltype(outer::middle::inner())'}
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
hasdescriptor.c 17 void (^outer)(void) = ^{
22 //printf("size of outer is %ld\n", Block_size(outer));
23 if (Block_size(inner) != Block_size(outer)) {
  /external/chromium_org/third_party/skia/src/effects/
SkComposeImageFilter.cpp 20 SkImageFilter* outer = getInput(0); local
23 if (!outer && !inner) {
27 if (!outer || !inner) {
28 return (outer ? outer : inner)->filterImage(proxy, src, ctm, result, loc);
33 outer->filterImage(proxy, tmp, ctm, result, loc);
39 SkImageFilter* outer = getInput(0); local
42 if (!outer && !inner) {
46 if (!outer || !inner) {
47 return (outer ? outer : inner)->filterBounds(src, ctm, dst)
    [all...]
  /external/skia/src/effects/
SkComposeImageFilter.cpp 20 SkImageFilter* outer = getInput(0); local
23 if (!outer && !inner) {
27 if (!outer || !inner) {
28 return (outer ? outer : inner)->filterImage(proxy, src, ctm, result, loc);
33 outer->filterImage(proxy, tmp, ctm, result, loc);
39 SkImageFilter* outer = getInput(0); local
42 if (!outer && !inner) {
46 if (!outer || !inner) {
47 return (outer ? outer : inner)->filterBounds(src, ctm, dst)
    [all...]
  /external/clang/test/PCH/
cxx-variadic-templates.cpp 17 outer<int, int>::inner<1, 2, A, B> i(A<1>{}, B<2>{});
cxx-variadic-templates.h 20 template<typename...Ts> struct outer { struct
25 template struct outer<int, int>;
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 147 const Index outer = IsRowMajor ? row : col; local
150 eigen_assert(outer < outerSize());
153 if (outer == inner)
154 return this->m_data.diag(outer);
157 if (inner > outer) //upper matrix
160 if (outer >= minOuterIndex)
161 return this->m_data.upper(m_colStartIndex[inner] + outer - (inner - m_data.upperProfile(inner)));
165 if (inner < outer) //lower matrix
167 const Index minInnerIndex = outer - m_data.lowerProfile(outer);
196 const Index outer = IsRowMajor ? row : col; local
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Locator2ImplTest.java 63 Locator2Impl outer = new Locator2Impl(inner); local
65 assertEquals(PUB, outer.getPublicId());
66 assertEquals(SYS, outer.getSystemId());
67 assertEquals(ROW, outer.getLineNumber());
68 assertEquals(COL, outer.getColumnNumber());
70 assertEquals(ENC, outer.getEncoding());
71 assertEquals(XML, outer.getXMLVersion());
74 outer = new Locator2Impl(new LocatorImpl(inner));
76 assertEquals(PUB, outer.getPublicId());
77 assertEquals(SYS, outer.getSystemId())
    [all...]
  /external/chromium_org/chrome/browser/resources/
about_version_android.css 5 #outer {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
warning_tests.py 5 def outer(message, stacklevel=1): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
warning_tests.py 5 def outer(message, stacklevel=1): function
  /external/chromium_org/third_party/skia/include/effects/
SkComposeImageFilter.h 15 SkComposeImageFilter(SkImageFilter* outer, SkImageFilter* inner) : INHERITED(outer, inner) {}
  /external/skia/include/effects/
SkComposeImageFilter.h 15 SkComposeImageFilter(SkImageFilter* outer, SkImageFilter* inner) : INHERITED(outer, inner) {}
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 94 const Index outer = IsRowMajor ? row : col; local
96 return m_data[outer].at(inner);
105 const Index outer = IsRowMajor ? row : col; local
107 return m_data[outer].atWithInsertion(inner);
143 inline void startVec(Index /*outer*/) {}
156 inline Scalar& insertBackByOuterInner(Index outer, Index inner)
158 eigen_assert(outer<Index(m_data.size()) && inner<m_innerSize && "out of range");
159 eigen_assert(((m_data[outer].size()==0) || (m_data[outer].index(m_data[outer].size()-1)<inner)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
erase_iter_iter.pass.cpp 53 std::vector<std::vector<int> > outer(2, std::vector<int>(1));
54 outer.erase(outer.begin(), outer.begin());
55 assert(outer.size() == 2);
56 assert(outer[0].size() == 1);
57 assert(outer[1].size() == 1);
91 std::vector<std::vector<int, min_allocator<int>>, min_allocator<std::vector<int, min_allocator<int>>>> outer(2, std::vector<int, min_allocator<int>>(1));
92 outer.erase(outer.begin(), outer.begin())
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
block-leave.js 34 // below, the outer with is to force a runtime lookup of the identifier 'x'
89 assertEquals('outer', eval('x'));
90 })('outer');
101 assertEquals('outer', eval('x'));
102 })('outer');
110 assertEquals('outer', eval('x'));
111 })('outer');
122 assertEquals('outer', eval('x'));
123 })('outer');
131 assertEquals('outer', eval('x'))
    [all...]
  /external/chromium_org/v8/test/mjsunit/
with-leave.js 64 // below, the outer with is to force a runtime lookup of the identifier 'x'
67 with ({x: 'outer'}) {
73 assertEquals('outer', x);
77 with ({x: 'outer'}) {
85 assertEquals('outer', x);
89 with ({x: 'outer'}) {
95 assertEquals('outer', x);
99 with ({x: 'outer'}) {
109 assertEquals('outer', x);
113 with ({x: 'outer'}) {
    [all...]
  /external/v8/test/mjsunit/harmony/
block-leave.js 34 // below, the outer with is to force a runtime lookup of the identifier 'x'
89 assertEquals('outer', eval('x'));
90 })('outer');
101 assertEquals('outer', eval('x'));
102 })('outer');
110 assertEquals('outer', eval('x'));
111 })('outer');
122 assertEquals('outer', eval('x'));
123 })('outer');
131 assertEquals('outer', eval('x'))
    [all...]
  /external/v8/test/mjsunit/
with-leave.js 64 // below, the outer with is to force a runtime lookup of the identifier 'x'
67 with ({x: 'outer'}) {
73 assertEquals('outer', x);
77 with ({x: 'outer'}) {
85 assertEquals('outer', x);
89 with ({x: 'outer'}) {
95 assertEquals('outer', x);
99 with ({x: 'outer'}) {
109 assertEquals('outer', x);
113 with ({x: 'outer'}) {
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseTriangularView.h 69 EIGEN_STRONG_INLINE InnerIterator(const SparseTriangularView& view, Index outer)
70 : Base(view.nestedExpression(), outer), m_returnOne(false)
74 while((*this) && (HasUnitDiag ? this->index()<=outer : this->index()<outer))
79 else if(HasUnitDiag && ((!Base::operator bool()) || Base::index()>=Base::outer()))
94 if(HasUnitDiag && (!SkipFirst) && ((!Base::operator bool()) || Base::index()>=Base::outer()))
108 if(HasUnitDiag && m_returnOne) return Base::outer();
121 return (SkipFirst ? Base::operator bool() : (Base::operator bool() && this->index() <= this->outer()));
133 EIGEN_STRONG_INLINE ReverseInnerIterator(const SparseTriangularView& view, Index outer)
134 : Base(view.nestedExpression(), outer)
    [all...]
SparseMatrix.h 173 const Index outer = IsRowMajor ? row : col; local
175 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1];
176 return m_data.atInRange(m_outerIndex[outer], end, inner);
189 const Index outer = IsRowMajor ? row : col; local
192 Index start = m_outerIndex[outer];
193 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1]
749 const Index outer = IsRowMajor ? row : col; local
872 const Index outer = IsRowMajor ? row : col; local
903 const Index outer = IsRowMajor ? row : col; local
951 inline Index outer() const { return m_outer; } function in class:Eigen::SparseMatrix::InnerIterator
984 inline Index outer() const { return m_outer; } function in class:Eigen::SparseMatrix::ReverseInnerIterator
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
LocatorImplTest.java 52 LocatorImpl outer = new LocatorImpl(inner); local
54 assertEquals(PUB, outer.getPublicId());
55 assertEquals(SYS, outer.getSystemId());
56 assertEquals(ROW, outer.getLineNumber());
57 assertEquals(COL, outer.getColumnNumber());
61 outer = new LocatorImpl(null);
  /external/clang/test/Index/
print-type.cpp 1 namespace outer { namespace
11 Bar(outer::Foo<bool>* foo) { };
38 // CHECK: Namespace=outer:1:11 (Definition) [type=] [typekind=Invalid] [isPOD=0]
44 // CHECK: StructDecl=Bar:10:8 (Definition) [type=outer::inner::Bar] [typekind=Record] [isPOD=0]
45 // CHECK: CXXConstructor=Bar:11:3 (Definition) [type=void (outer::Foo<bool> *)] [typekind=FunctionProto] [canonicaltype=void (outer::Foo<bool> *)] [canonicaltypekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [args= [outer::Foo<bool> *] [Pointer]] [isPOD=0]
46 // CHECK: ParmDecl=foo:11:25 (Definition) [type=outer::Foo<bool> *] [typekind=Pointer] [canonicaltype=outer::Foo<bool> *] [canonicaltypekind=Pointer] [isPOD=1]
47 // CHECK: NamespaceRef=outer:1:11 [type=] [typekind=Invalid] [isPOD=0
    [all...]
annotate-nested-name-specifier.cpp 1 namespace outer { namespace
10 namespace outer_alias = outer;
20 namespace outer { namespace
31 void outer::inner::array<T, N>::foo() {
35 int outer::inner::array<T, N>::max_size = 17;
38 struct X2 : outer::inner::vector<T> {
40 using typename outer::inner::vector<type>::iterator;
41 using outer::inner::vector<type>::push_back;
44 namespace outer { namespace
61 namespace outer { namespace
113 namespace outer { namespace
    [all...]

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 91011>>