/external/clang/test/SemaTemplate/ |
instantiate-default-assignment-operator.cpp | 8 struct A { RefPtr<int> a; }; // expected-note {{instantiation of member function 'RefPtr<int>::operator=' requested here}} 9 struct B : RefPtr<float> { }; // expected-note {{in instantiation of member function 'RefPtr<float>::operator=' requested here}}
|
temp_explicit_cxx0x.cpp | 4 template<typename T> struct X0 { }; // expected-note{{here}} 14 template<typename T> struct X2 { }; // expected-note{{here}}
|
/external/eigen/doc/examples/ |
MatrixBase_cwise_const.cpp | 11 cout << "Here is the matrix m:" << endl << m << endl; 13 cout << "And here is the matrix n:" << endl << n << endl;
|
tut_matrix_coefficient_accessors.cpp | 13 std::cout << "Here is the matrix m:\n" << m << std::endl; 17 std::cout << "Here is the vector v:\n" << v << std::endl;
|
/external/eigen/doc/snippets/ |
Matrix_resize_int_int.cpp | 3 cout << "here's the 2x3 matrix m:" << endl << m << endl; 6 cout << "here's the 3x2 matrix m:" << endl << m << endl;
|
/external/linux-tools-perf/ |
CREDITS | 1 Most of the infrastructure that 'perf' uses here has been reused 6 Here is an (incomplete!) list of main contributors to those files
|
/external/qemu/distrib/sdl-1.2.15/ |
BUGS | 2 Bugs are now managed in the SDL bug tracker, here: 15 Bug reports are welcome here, but we really appreciate if you use Bugzilla, as
|
/frameworks/base/tests/TransitionTests/res/values/ |
styles.xml | 11 backward-compatibility can go here. 17 <!-- All customizations that are NOT specific to a particular API-level can go here. -->
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
__init__.py | 6 here = os.path.dirname(__file__) variable 11 for fn in os.listdir(here):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
__init__.py | 6 here = os.path.dirname(__file__) variable 11 for fn in os.listdir(here):
|
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/ |
p6.cpp | 19 alignas(8) extern int n6; // expected-note {{declared with 'alignas' attribute here}} 24 alignas(8) extern int n8; // expected-note {{declared with 'alignas' attribute here}} 28 alignas(4) extern int n9; // expected-note {{declared with 'alignas' attribute here}} 31 enum alignas(2) E : char; // expected-note {{declared with 'alignas' attribute here}} 34 enum alignas(4) F : char; // expected-note {{previous declaration is here}} 42 enum alignas(1) H : char; // expected-note {{declared with 'alignas' attribute here}} 46 struct alignas(16) S; // expected-note {{declared with 'alignas' attribute here}} 51 struct alignas(2) T { char c; }; // expected-note {{previous declaration is here}} 59 struct alignas(1) V; // expected-note {{declared with 'alignas' attribute here}} 69 alignas(M) alignas(N) static char Buffer[32]; // expected-note {{previous declaration is here}} [all...] |
/external/clang/test/SemaObjC/ |
property-deprecated-warning.m | 8 @property(nonatomic,assign) id ptarget __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{property 'ptarget' is declared deprecated here}} expected-note {{method 'ptarget' declared here}} 17 @property(nonatomic,assign) id target __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{property 'target' is declared deprecated here}} expected-note {{method 'setTarget:' declared here}} 25 @property(nonatomic,assign) id dep_target __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note 2 {{method 'dep_target' declared here}} \ 26 // expected-note 4 {{property 'dep_target' is declared deprecated here}} \ 27 // expected-note 2 {{method 'setDep_target:' declared here}} 58 @property(getter=isEnabled,assign) BOOL enabled __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{method 'isEnabled' declared here}} expected-note {{property 'enabled' is declared deprecated here}} 60 @property(setter=setNewDelegate:,assign) id delegate __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{method 'setNewDelegate:' declared here}} expected-note {{property 'delegate' is declared deprecated here} [all...] |
arc-property-lifetime.m | 10 @property(strong) id x; // expected-note {{property declared here}} 11 @property(strong) id y; // expected-note {{property declared here}} 16 @synthesize x; // expected-note {{property synthesized here}} 17 @synthesize y; // expected-note {{property synthesized here}} 27 @property(retain) id x; // expected-note {{property declared here}} 28 @property(retain) id y; // expected-note {{property declared here}} 33 @synthesize x; // expected-note {{property synthesized here}} 34 @synthesize y; // expected-note {{property synthesized here}} 44 @property(copy) id x; // expected-note {{property declared here}} 45 @property(copy) id y; // expected-note {{property declared here}} [all...] |
arc-repeated-weak.mm | 23 use(a.weakProp); // expected-note{{also accessed here}} 28 use(a.weakProp); // expected-note{{also accessed here}} 56 a.weakProp = get(); // expected-note{{also accessed here}} 67 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 72 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 77 use(a.implicitProp); // expected-note{{also accessed here}} 82 use(Test.weakProp); // expected-note{{also accessed here}} 93 use(a->weakIvar); // expected-note{{also accessed here}} 99 use(a); // expected-note{{also accessed here}} 104 use([a weakProp]); // expected-note{{also accessed here}} [all...] |
/external/clang/test/SemaCXX/ |
missing-namespace-qualifier-typo-corrections.cpp | 3 namespace fizbin { class Foobar {}; } // expected-note 2 {{'fizbin::Foobar' declared here}} \ 4 // expected-note {{'Foobar' declared here}} 9 namespace barstool { int toFoobar() { return 1; } } // expected-note 3 {{'barstool::toFoobar' declared here}} 16 namespace baztool { bool toFoobar() { return true; } } // expected-note{{'fizbin::baztool' declared here}} 17 namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoobar' declared here}} 18 namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declared here}} \ 19 // expected-note{{'fizbin::nested::lessFoobar' declared here}} 20 class dummy { // expected-note 2 {{'fizbin::dummy' declared here}} 22 static bool moreFoobar() { return false; } // expected-note{{'moreFoobar' declared here}} 25 void Check() { // expected-note{{'Check' declared here}} [all...] |
/external/clang/test/CXX/class.access/class.access.base/ |
p1.cpp | 12 protected: int prot; static int sprot; // expected-note 4 {{declared protected here}} 13 private: int priv; static int spriv; // expected-note 8 {{declared private here}} 57 class Base { // expected-note 6{{member is declared here}} 59 int pub; // expected-note{{member is declared here}} 60 static int spub; // expected-note{{member is declared here}} 61 protected: int prot; static int sprot; // expected-note 4 {{declared protected here}} 62 private: int priv; static int spriv; // expected-note 8 {{declared private here}} 65 class Test : protected Base { // expected-note 6 {{declared protected here}} expected-note 8 {{constrained by protected inheritance here}} 91 // Two possible errors here: one for Base, one for the membe [all...] |
/art/test/004-annotations/src/android/test/anno/ |
SubNoted.java | 5 @AnnoSimpleType2 // AnnoSimpleType2 here *and* inherited from parent
|
/art/test/005-args/ |
info.txt | 6 TODO: Real description goes here.
|
/art/test/006-count10/ |
info.txt | 6 TODO: Real description goes here.
|
/art/test/007-exceptions/ |
info.txt | 6 TODO: Real description goes here.
|
/art/test/008-instanceof/ |
info.txt | 6 TODO: Real description goes here.
|
/art/test/009-instanceof2/ |
info.txt | 6 TODO: Real description goes here.
|
/art/test/010-instance/ |
info.txt | 6 TODO: Real description goes here.
|
/art/test/011-array-copy/ |
info.txt | 6 TODO: Real description goes here.
|
/art/test/012-math/ |
info.txt | 6 TODO: Real description goes here.
|