OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:here
(Results
126 - 150
of
33179
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
MatrixBase_topRightCorner_int_int.cpp
2
cout << "
Here
is the matrix m:" << endl << m << endl;
3
cout << "
Here
is m.topRightCorner(2, 2):" << endl;
MatrixBase_topRows_int.cpp
2
cout << "
Here
is the array a:" << endl << a << endl;
3
cout << "
Here
is a.topRows(2):" << endl;
PartialRedux_count.cpp
2
cout << "
Here
is the matrix m:" << endl << m << endl;
3
cout << "
Here
is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;
Tutorial_solve_singular.cpp
5
cout << "
Here
is the matrix A:" << endl << A << endl;
6
cout << "
Here
is the vector b:" << endl << b << endl;
Tutorial_solve_triangular.cpp
5
cout << "
Here
is the matrix A:" << endl << A << endl;
6
cout << "
Here
is the vector b:" << endl << b << endl;
/external/markdown/tests/misc/
underscores.html
2
<p>
Here
is some <em>emphasis</em>, ok?</p>
5
<p>
Here
is some <strong>strong</strong> stuff.</p>
/libcore/luni/src/test/resources/
SimpleParserTest.xml
9
<nestedStuff one="eins"> Some text
here
</nestedStuff>
13
some more
here
...
/external/clang/test/Sema/
predefined-function.c
7
int eli(float b); // expected-note {{previous declaration is
here
}} \
8
// expected-note{{passing argument to parameter 'b'
here
}}
19
int bar(int i) // expected-note {{previous definition is
here
}}
28
int foobar(int); // note {{previous declaration is
here
}}
34
int wibble(); // expected-note {{previous declaration is
here
}}
var-redecl.c
3
int outer1; // expected-note{{previous definition is
here
}}
4
extern int outer2; // expected-note{{previous definition is
here
}}
6
int outer4; // expected-note{{previous definition is
here
}}
7
int outer5; // expected-note{{previous definition is
here
}}
8
int outer6(float); // expected-note{{previous definition is
here
}}
14
extern float outer3; // expected-note{{previous definition is
here
}}
19
extern int outer8; // expected-note{{previous definition is
here
}}
22
extern int outer9; // expected-note{{previous definition is
here
}}
32
extern int outer13; // expected-note{{previous definition is
here
}}
35
extern int outer11; // expected-note{{previous definition is
here
}}
[
all
...]
array-declared-as-incorrect-type.c
6
extern int a2[]; // expected-note {{previous definition is
here
}}
12
extern int a4[][2]; // expected-note {{previous definition is
here
}}
15
extern int a5[1][2][3]; // expected-note {{previous definition is
here
}}
/external/clang/test/SemaCXX/
illegal-member-initialization.cpp
17
int &value; // expected-note{{declared
here
}}
18
const int cvalue; // expected-note{{declared
here
}}
19
B& b; // expected-note{{declared
here
}}
20
const B cb; // expected-note{{declared
here
}}
30
foo() : a(xxx()) {} // no error
here
.
struct-class-redecl.cpp
3
class X; // expected-note 2{{
here
}}
7
template<typename T> struct Y; // expected-note{{did you mean class
here
?}}
11
class A; // expected-note{{previous use is
here
}}
14
class B; // expected-note{{did you mean struct
here
?}}
15
class B; // expected-note{{previous use is
here
}}\
16
// expected-note{{did you mean struct
here
?}}
18
struct B {}; // expected-warning{{'B' defined as a struct
here
but previously declared as a class}}
20
class C; // expected-note{{previous use is
here
}}
22
// expected-note{{previous use is
here
}}\
23
// expected-note{{did you mean class
here
?}
[
all
...]
overload-decl.cpp
9
void f(int, Float); // expected-note {{previous declaration is
here
}}
13
void g(void); // expected-note {{previous declaration is
here
}}
20
void f(int); // expected-note {{previous declaration is
here
}}
25
void g(int); // expected-note {{previous declaration is
here
}}
26
void g(int, float); // expected-note {{previous declaration is
here
}}
29
static void g(float); // expected-note {{previous declaration is
here
}}
34
int main() {} // expected-note {{previous definition is
here
}}
incomplete-call.cpp
4
A f(); // expected-note {{'f' declared
here
}}
7
A f(); // expected-note {{'f' declared
here
}}
8
A operator()(); // expected-note 2 {{'operator()' declared
here
}}
9
operator A(); // expected-note {{'operator A' declared
here
}}
10
A operator!(); // expected-note 2 {{'operator!' declared
here
}}
11
A operator++(int); // expected-note {{'operator++' declared
here
}}
12
A operator[](int); // expected-note {{'operator[]' declared
here
}}
13
A operator+(int); // expected-note {{'operator+' declared
here
}}
14
A operator->(); // expected-note {{'operator->' declared
here
}}
/external/clang/test/SemaObjC/
missing-atend-metadata.m
3
@interface I0 // expected-note {{receiver is instance of class declared
here
}}
6
@implementation I0 // expected-note {{implementation started
here
}}
12
@implementation I1 // expected-note {{implementation started
here
}}
19
@implementation I2 // expected-note {{implementation started
here
}}
22
@implementation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation started
here
}}
check-dup-objc-decls-1.m
3
@interface Foo // expected-note {{previous definition is
here
}}
8
@class Bar; // expected-note {{previous definition is
here
}}
16
typedef int OBJECT; // expected-note {{previous definition is
here
}}
21
typedef int Gorf; // expected-note {{previous definition is
here
}}
23
@interface Gorf @end // expected-error {{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is
here
}}
32
@interface A<P> @end // expected-note {{previous definition is
here
}}
35
@protocol PP<P> @end // expected-note {{previous definition is
here
}}
38
@interface A(Cat)<P> @end // expected-note {{previous definition is
here
}}
43
NSString * TestBaz; // expected-note {{previous definition is
here
}}
duplicate-ivar-in-class-extension.m
7
int iSuper; // expected-note {{previous declaration is
here
}}
19
int ivar; // expected-note {{previous declaration is
here
}}
24
int another_ivar; // expected-note {{previous declaration is
here
}}
/external/eigen/doc/examples/
tut_arithmetic_matrix_mul.cpp
11
std::cout << "
Here
is mat*mat:\n" << mat*mat << std::endl;
12
std::cout << "
Here
is mat*u:\n" << mat*u << std::endl;
13
std::cout << "
Here
is u^T*mat:\n" << u.transpose()*mat << std::endl;
14
std::cout << "
Here
is u^T*v:\n" << u.transpose()*v << std::endl;
15
std::cout << "
Here
is u*v^T:\n" << u*v.transpose() << std::endl;
/external/chromium_org/third_party/WebKit/ManualTests/
template.html
4
<p><b>BUG ID:</b> <a href="Bug URL
Here
">Bug ID Number
Here
</a> Bug Title
Here
</p>
7
Please describe the steps required to test this bug
here
.
11
Expected results if the test PASSES
here
. Please describe the results the tester would see if the bug in question is FIXED.
15
Expected results if the test FAILS
here
. Please describe the results the tester would see if the bug in question is NOT FIXED. In many cases, this is just a description of the original bug.
18
Your test code goes
here
.
target_new-1.html
7
<li>Clicking <a href="#" onclick="alert(window.opener)">
here
</a> should alert "[object Window]"</li>
8
<li>Clicking <a href="#" onclick="alert(window.opener.aVar)">
here
</a> should alert "some value"</li>
9
<li>Clicking <a href="#" onclick="window.opener.externallyCalled()">
here
</a> should alert "hello from opener"</li>
/external/clang/test/CXX/special/class.copy/
p23-cxx11.cpp
53
template struct CopyAssign<A1>; // expected-note {{
here
}}
56
A2 &operator=(A2 &&) = default; // expected-note {{
here
}}
61
template struct MoveAssign<A2>; // expected-note {{
here
}}
73
template struct CopyAssign<B1>; // expected-note {{
here
}}
74
template struct MoveAssign<B1>; // expected-note {{
here
}}
75
template struct CopyAssign<B2>; // expected-note {{
here
}}
76
template struct MoveAssign<B2>; // expected-note {{
here
}}
84
template struct CopyAssign<C1>; // expected-note {{
here
}}
85
template struct MoveAssign<C1>; // expected-note {{
here
}}
92
D2 &operator=(D2 &&) = default; // expected-note {{
here
}}
[
all
...]
/external/clang/test/Parser/
cxx0x-attributes.cpp
40
const [[]] int between_attr_2 = 0; // expected-error {{an attribute list cannot appear
here
}}
70
attr_after_class_name_decl [[]] [[]]; // expected-error {{an attribute list cannot appear
here
}}
73
attr_after_class_name_definition [[]] [[]] [[]]{}; // expected-error {{an attribute list cannot appear
here
}}
82
alignas(float) [[]] final // expected-error {{an attribute list cannot appear
here
}}
83
alignas(float) [[]] [[]] alignas(float): base{}; // expected-error {{an attribute list cannot appear
here
}}
86
[[]] [[]] alignas(16) final // expected-error {{an attribute list cannot appear
here
}}
87
[[]] [[]] alignas(16) [[]]{}; // expected-error {{an attribute list cannot appear
here
}}
90
[[]] struct no_init_declarators; // expected-error {{an attribute list cannot appear
here
}}
91
template<typename> [[]] struct no_init_declarators_template; // expected-error {{an attribute list cannot appear
here
}}
94
[[]] struct no_init_declarators; // expected-error {{an attribute list cannot appear
here
}}
[
all
...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
sce1-err.errwarn
2
-:1: error: procedure started
here
4
-:11: error: previous procedure started
here
6
-:26: error: prologue ended
here
/external/clang/test/CXX/special/class.dtor/
p3.cpp
6
struct A { ~A(); }; // expected-note {{
here
}}
9
struct B { ~B() noexcept; }; // expected-note {{
here
}}
14
~C(); // expected-note {{
here
}}
/external/clang/test/CXX/temp/temp.param/
p11.cpp
5
template<class T1 = int, // expected-note{{previous default template argument defined
here
}}
9
template<template<class> class = Y1, // expected-note{{previous default template argument defined
here
}}
13
template<int N = 5, // expected-note{{previous default template argument defined
here
}}
Completed in 755 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>