HomeSort by relevance Sort by last modified time
    Searched full:here (Results 226 - 250 of 32334) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/examples/
TutorialLinAlgExSolveColPivHouseholderQR.cpp 13 cout << "Here is the matrix A:\n" << A << endl;
14 cout << "Here is the vector b:\n" << b << endl;
TutorialLinAlgExSolveLDLT.cpp 12 cout << "Here is the matrix A:\n" << A << endl;
13 cout << "Here is the right hand side b:\n" << b << endl;
TutorialLinAlgSVDSolve.cpp 10 cout << "Here is the matrix A:\n" << A << endl;
12 cout << "Here is the right hand side b:\n" << b << endl;
TutorialLinAlgSelfAdjointEigenSolver.cpp 11 cout << "Here is the matrix A:\n" << A << endl;
15 cout << "Here's a matrix whose columns are eigenvectors of A \n"
Tutorial_PartialLU_solve.cpp 14 cout << "Here is the matrix A:" << endl << A << endl;
15 cout << "Here is the vector b:" << endl << b << endl;
  /external/eigen/doc/snippets/
FullPivLU_image.cpp 5 cout << "Here is the matrix m:" << endl << m << endl;
8 cout << "Here is a matrix whose columns have the same span but are linearly independent:"
MatrixBase_fixedBlock_int_int.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.fixed<2, 2>(2, 2):" << endl << m.block<2, 2>(2, 2) << endl;
MatrixBase_isOrthogonal.cpp 3 cout << "Here's the vector v:" << endl << v << endl;
4 cout << "Here's the vector w:" << endl << w << endl;
tut_arithmetic_redux_minmax.cpp 4 cout << "Here is the matrix m:\n" << m << endl;
10 cout << "Here is the vector v: " << v << endl;
  /external/llvm/test/Transforms/GlobalOpt/
blockaddress.ll 11 store i8* blockaddress(@g, %here), i8** @x, align 8
18 here:
  /external/markdown/MarkdownTest/Tests_2004/
Auto links.text 11 Auto-links should not occur here: `<http://example.com/>`
13 or here: <http://example.com/
  /external/markdown/MarkdownTest/Tests_2007/
Auto links.text 11 Auto-links should not occur here: `<http://example.com/>`
13 or here: <http://example.com/
  /external/markdown/tests/markdown-test/
auto-links.txt 15 Auto-links should not occur here: `<http://example.com/>`
17 or here: <http://example.com/>
  /external/qemu/distrib/sdl-1.2.15/
README.AmigaOS 5 However, there is an OS4 version of SDL here:
8 And a MorphOS version here:
  /external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p2.cpp 3 void func1(int i) { // expected-note{{previous definition is here}}
7 void func2(int i) try { // expected-note{{previous definition is here}}
12 void func3(int i) try { // FIXME: note {{previous definition is here}}
16 void func4(int i) try { // expected-note{{previous definition is here}}
28 } catch (int i) { // expected-note{{previous definition is here}}
34 } catch (int i) { // expected-note{{previous definition is here}}
  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 4 NoDefault() = delete; // expected-note {{here}}
7 struct Explicit { // expected-note 2 {{candidate}} expected-note {{here}}
12 NoCopy(const NoCopy &) = delete; // expected-note {{here}}
16 NoMove(NoMove &&) = delete; // expected-note {{here}}
19 Private(int); // expected-note {{here}}
32 Explicit e1; // expected-note {{here}}
  /external/clang/test/Sema/
typeof-use-deprecated.c 3 struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} expected-note 2 {{'s' declared here}}
7 union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}} expected-note 2 {{'un' declared here}}
11 enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} expected-note 2 {{'E' declared here}}
15 struct foo { int x; } __attribute__((deprecated)); // expected-note {{'foo' declared here}}
16 typedef struct foo bar __attribute__((deprecated)); // expected-note {{'bar' declared here}}
22 typedef struct gorf T __attribute__((deprecated)); // expected-note {{'T' declared here}}
warn-shadow.c 3 int i; // expected-note 3 {{previous declaration is here}}
8 // expected-note {{previous declaration is here}}
12 // expected-note {{previous declaration is here}}
24 // expected-note{{previous declaration is here}}
27 // expected-note{{previous declaration is here}}
52 extern int bob; // expected-note {{previous declaration is here}}
function-redecl.c 5 void g0(); // expected-note{{previous declaration is here}} expected-note{{'g0' declared here}}
24 int g2(int, int); // expected-note{{previous declaration is here}}
37 void f1(double); // expected-note{{previous declaration is here}}
45 extern void g3(int); // expected-note{{previous declaration is here}}
49 extern int f2; // expected-note 2 {{previous definition is here}}
63 int outer1(int); // expected-note{{previous declaration is here}}
65 int outer4(int); // expected-note{{previous declaration is here}}
66 int outer5; // expected-note{{previous definition is here}}
71 int outer2(int); // expected-note{{previous declaration is here}}
    [all...]
  /external/clang/test/SemaCXX/
function-overload-typo-crash.cpp 4 void min(); //expected-note {{'min' declared here}}
7 template <typename T> void max(T); //expected-note {{'max' declared here}}
14 template <typename T> void somefunc(T*, T*); //expected-note {{'somefunc' declared here}}
15 template <typename T> void somefunc(const T[]); //expected-note {{'somefunc' declared here}}
16 template <typename T1, typename T2> void somefunc(T1*, T2*); //expected-note {{'somefunc' declared here}}
17 template <typename T1, typename T2> void somefunc(T1*, const T2[]); //expected-note 2 {{'somefunc' declared here}}
attr-deprecated.cpp 3 void f() __attribute__((deprecated)); // expected-note 2 {{declared here}}
7 int b __attribute__((deprecated)); // expected-note 2 {{declared here}}
29 virtual void f() __attribute__((deprecated)); // expected-note 4 {{declared here}}
71 void foo(int) __attribute__((deprecated)); // expected-note {{declared here}}
73 void foo(short) __attribute__((deprecated)); // expected-note {{declared here}}
78 friend void foo(A*) __attribute__((deprecated)); // expected-note {{declared here}}
84 void foo(const Foo &f) __attribute__((deprecated)); // expected-note {{declared here}}
94 void foo(int) __attribute__((deprecated)); // expected-note 2 {{declared here}}
96 static void bar(int) __attribute__((deprecated)); // expected-note 3 {{declared here}}
123 void operator*(int) __attribute__((deprecated)); // expected-note {{declared here}}
    [all...]
class-base-member-init.cpp 10 b1(0), // expected-note {{previous initialization is here}}
13 S(), // expected-note {{previous initialization is here}}
34 B() : A<T>(), // expected-note {{previous initialization is here}}
41 A() : T(), // expected-note {{previous initialization is here}}
50 A() : t(1), // expected-note {{previous initialization is here}}
72 A(short _) : a(0), c(0) {} // expected-error {{initializing multiple members of union}} expected-note {{previous initialization is here}}
73 A(int _) : d(0), e(0) {} // expected-error {{initializing multiple members of union}} expected-note {{previous initialization is here}}
74 A(long _) : a(0), d(0) {} // expected-error {{initializing multiple members of union}} expected-note {{previous initialization is here}}
85 A(int) : Base(3), // expected-note {{previous initialization is here}}
96 X() : a(), // expected-note{{previous initialization is here}}
    [all...]
typedef-redecl.cpp 3 typedef INT REALLY_INT; // expected-note {{previous definition is here}}
9 typedef int result_type; // expected-note {{previous definition is here}}
13 struct Y; // expected-note{{previous definition is here}}
16 typedef int Y2; // expected-note{{declared here}}
19 void f(); // expected-note{{previous definition is here}}
22 typedef int f2; // expected-note{{previous definition is here}}
70 typedef int q[C == 1 ? 1 : -1]; // expected-note{{previous definition is here}}
82 typedef int q[1]; // expected-note{{previous definition is here}}
89 a.f(); // expected-note{{in instantiation of member function 'PR11630::S<int>::f' requested here}}
93 b2.f(); // expected-note{{in instantiation of member function 'PR11630::S2<2>::f' requested here}}
    [all...]
  /external/clang/test/SemaObjC/
check-dup-decl-methods-1.m 11 - (int) meth; // expected-note {{previous declaration is here}}
13 - (T*) meth1; // expected-note {{previous declaration is here}}
19 - (int) catm : (char)ch1; // expected-note {{previous declaration is here}}
27 + (int) catm1 : (char)ch : (int)i; // expected-note {{previous declaration is here}}
28 + (T*) meth1; // expected-note {{previous declaration is here}}
35 - (int) meth; // expected-note {{previous declaration is here}}
property-ambiguous-synthesis.m 5 @property (copy) id foo; // expected-note 2 {{it could also be property of type 'id' declared here}} \\
11 // expected-note {{it could also be property of type 'double' declared here}}
15 @property short foo; // expected-note {{it could also be property of type 'short' declared here}}
27 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
35 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
43 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}

Completed in 770 milliseconds

1 2 3 4 5 6 7 8 91011>>