HomeSort by relevance Sort by last modified time
    Searched full:class (Results 51 - 75 of 98843) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
typo.hpp 2 template<typename F> class function {};
5 template<typename V, typename E> class adjacency_list { };
  /external/chromium_org/chrome/browser/resources/
about_credits_entry.tmpl 1 <div class="product">
2 <span class="title">{{name}}</span>
3 <a class="show" href="#">show license</a>
4 <span class="homepage"><a href="{{url}}">homepage</a></span>
5 <div class="licence">
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p8.cpp 2 template<class T> class A { };
4 class X {
5 template<class T> friend class A<T*>; // expected-error{{partial specialization cannot be declared as a friend}}
  /external/clang/test/Modules/Inputs/
templates-top.h 1 template<typename T> class Vector;
3 template<typename T> class List {
9 class Y {
10 template <typename T> friend class WhereAmI;
14 template <typename T> class A::WhereAmI {
  /external/llvm/test/TableGen/
ForwardRef.td 4 class bar {
8 class foo;
9 class foo;
11 class baz { list<foo> y; }
13 class foo {
  /external/clang/test/Misc/
diagnostic-crash.cpp 3 template <typename _Alloc> class allocator;
4 template <class _CharT> struct char_traits;
7 class basic_string;
9 class Closure {
11 template <class A1> class Callback1 {
13 template <class A1, class A2> class Callback2 {
15 template <class R, class A2> class ResultCallback1
    [all...]
  /external/chromium_org/mojo/public/bindings/generators/cpp_templates/
params_definition 2 class $CLASS {
4 static $CLASS* New(mojo::Buffer* buf) {
5 return new (buf->Allocate(sizeof($CLASS)))
6 $CLASS();
14 friend class mojo::internal::ObjectTraits<$CLASS>;
16 $CLASS() {
24 MOJO_COMPILE_ASSERT(sizeof($CLASS) == $SIZE,
25 bad_sizeof_${CLASS});
    [all...]
struct_declaration 0 class $CLASS {
5 static $CLASS* New(mojo::Buffer* buf, mojo::Buffer::Destructor dtor = NULL);
12 friend class mojo::internal::ObjectTraits<$CLASS>;
14 $CLASS();
15 ~$CLASS(); // NOT IMPLEMENTED
20 MOJO_COMPILE_ASSERT(sizeof($CLASS) == $SIZE,
21 bad_sizeof_$CLASS);
struct_serialization_definition 2 size_t ObjectTraits<$CLASS>::ComputeSizeOf(
3 const $CLASS* $NAME) {
8 $CLASS* ObjectTraits<$CLASS>::Clone(
9 const $CLASS* $NAME, Buffer* buf) {
10 $CLASS* clone = $CLASS::New(buf);
18 void ObjectTraits<$CLASS>::CloseHandles(
19 $CLASS* $NAME) {
interface_stub_declaration 0 class ${CLASS}Stub : public $CLASS, public mojo::MessageReceiver {
  /external/clang/test/SemaCXX/
long-virtual-inheritance-chain.cpp 3 class test0 { virtual void f(); };
4 class test1 : virtual test0 { virtual void f(); };
5 class test2 : virtual test1 { virtual void f(); };
6 class test3 : virtual test2 { virtual void f(); };
7 class test4 : virtual test3 { virtual void f(); };
8 class test5 : virtual test4 { virtual void f(); };
9 class test6 : virtual test5 { virtual void f(); };
10 class test7 : virtual test6 { virtual void f(); };
11 class test8 : virtual test7 { virtual void f(); };
12 class test9 : virtual test8 { virtual void f(); }
    [all...]
PR9902.cpp 4 template <class _Tp, class _Up, bool = false>
9 template <template <class, class...> class _Alloc, class _Tp, class ..._Args,
10 class _Up>
16 template <class Alloc>
19 template <class T> using rebind_alloc = typename __allocator_traits_rebind<Alloc, T>::type
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
iosfwd 20 template<class charT> struct char_traits;
21 template<class T> class allocator;
23 class ios_base;
24 template <class charT, class traits = char_traits<charT> > class basic_ios;
26 template <class charT, class traits = char_traits<charT> > class basic_streambuf
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p12.cpp 6 template<class T1,
7 class T2 = int> // expected-note{{previous default template argument defined here}}
8 class B3;
9 template<class T1, typename T2> class B3;
10 template<class T1,
12 class B3;
14 template<template<class, int> class,
15 template<class> class = Y1> // expected-note{{previous default template argument defined here}
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p9.cpp 5 template<class T> class X { /* ... */ };
6 template<class T> class Y { /* ... */ };
7 template<> class X<int> { /* ... */ };
8 template<> class Y<double>;
13 template<> class N::Y<double> {
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
alltests.java 32 public class alltests extends DOMTestSuite {
50 // sink.addTest(attrgetownerelement01.class); // javax.xml.parsers.ParserConfigurationException: No validating DocumentBuilder implementation available
51 sink.addTest(attrgetownerelement02.class);
52 sink.addTest(attrgetownerelement03.class);
53 sink.addTest(attrgetownerelement04.class);
54 sink.addTest(attrgetownerelement05.class);
55 sink.addTest(createAttributeNS01.class);
56 sink.addTest(createAttributeNS02.class);
57 sink.addTest(createAttributeNS03.class);
58 sink.addTest(createAttributeNS04.class);
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/search/
destination_search.html 1 <div id="destination-search" class="destination-search overlay transparent">
2 <div class="page">
4 <span class="user-info" hidden></span>
5 <div class="close-button"></div>
7 <div class="lists">
8 <div class="recent-list"></div>
9 <div class="local-list"></div>
10 <div class="cloud-list" hidden></div>
12 <div class="cloudprint-promo" hidden>
13 <img src="../images/cloud.png" class="icon"
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-friend.cpp 3 class MyFriend;
5 class SomeClass
7 friend class MyFriend;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
mem_fn_cc.hpp 15 template<class R, class T> _mfi::BOOST_MEM_FN_NAME(mf0)<R, T> mem_fn(R (BOOST_MEM_FN_CC T::*f) ())
20 template<class R, class T> _mfi::BOOST_MEM_FN_NAME(cmf0)<R, T> mem_fn(R (BOOST_MEM_FN_CC T::*f) () const)
25 template<class R, class T, class A1> _mfi::BOOST_MEM_FN_NAME(mf1)<R, T, A1> mem_fn(R (BOOST_MEM_FN_CC T::*f) (A1))
30 template<class R, class T, class A1> _mfi::BOOST_MEM_FN_NAME(cmf1)<R, T, A1> mem_fn(R (BOOST_MEM_FN_CC T::*f) (A1) const
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/container/
container_fwd.hpp 50 //vector class
51 template <class T
52 ,class Allocator = std::allocator<T> >
53 class vector;
55 //vector class
56 template <class T
57 ,class Allocator = std::allocator<T> >
58 class stable_vector;
60 //vector class
61 template <class
    [all...]
  /art/test/088-monitor-verification/src/
TooDeep.java 19 * The class has a method with too many levels of nested "synchronized"
26 public class TooDeep {
29 synchronized (TooDeep.class) { // 1
30 synchronized (TooDeep.class) { // 2
31 synchronized (TooDeep.class) { // 3
32 synchronized (TooDeep.class) { // 4
33 synchronized (TooDeep.class) { // 5
34 synchronized (TooDeep.class) { // 6
35 synchronized (TooDeep.class) { // 7
36 synchronized (TooDeep.class) { //
    [all...]
  /dalvik/tests/088-monitor-verification/src/
TooDeep.java 19 * The class has a method with too many levels of nested "synchronized"
26 public class TooDeep {
29 synchronized (TooDeep.class) { // 1
30 synchronized (TooDeep.class) { // 2
31 synchronized (TooDeep.class) { // 3
32 synchronized (TooDeep.class) { // 4
33 synchronized (TooDeep.class) { // 5
34 synchronized (TooDeep.class) { // 6
35 synchronized (TooDeep.class) { // 7
36 synchronized (TooDeep.class) { //
    [all...]
  /external/clang/test/CXX/class.access/class.friend/
p9-cxx0x.cpp 3 // C++98 [class.friend]p7:
4 // C++11 [class.friend]p9:
6 // the scope of the class containing the friend declaration.
11 class X {
15 class Y {
22 class X {
26 template <class T> class Y {
33 template <class T> class Y
    [all...]
  /art/test/004-annotations/src/android/test/anno/
SomeClass.java 3 public class SomeClass {
  /art/test/010-instance/src/
X.java 0 class X {

Completed in 2066 milliseconds

1 23 4 5 6 7 8 91011>>