HomeSort by relevance Sort by last modified time
    Searched full:using (Results 201 - 225 of 23395) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p5-cxx0x.cpp 10 using A::f<double>; // expected-error{{using declaration can not refer to a template specialization}}
11 using A::X<int>; // expected-error{{using declaration can not refer to a template specialization}}
p11.cpp 6 // introduced by a using-declaration, the program is
7 // ill-formed. [Note: two using-declarations may introduce functions
10 // selects the functions introduced by such using-declarations, the
14 namespace ns { void foo(); } // expected-note {{target of using declaration}}
16 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
20 namespace ns { void foo(); } // expected-note {{target of using declaration}}
21 using ns::foo; //expected-note {{using declaration}}
22 int foo(void); // expected-error {{declaration conflicts with target of using declaration already in scope}
    [all...]
p8.cpp 12 using ns::foo;
13 using ns::foo;
27 using ns::foo;
33 using ns::foo;
43 using ns::foo;
59 using ns::foo;
78 using Base<T>::foo; // expected-note {{previous using decl}}
79 using Base<T>::type::foo; //expected-error {{redeclaration of using decl}
    [all...]
p3-cxx0x.cpp 16 using B::f;
17 using B::e;
18 using B::x;
19 using C::g; // expected-error{{using declaration refers into 'C::', which is not a base class of 'D2'}}
40 using InnerNS::foo; // expected-error {{not a class}}
41 using Base::bar; // expected-error {{no member named 'bar'}}
42 using Unrelated::foo; // expected-error {{not a base class}}
43 using C::foo; // expected-error {{refers to its own class}}
44 using Subclass::foo; // expected-error {{not a base class}
    [all...]
  /external/webkit/LayoutTests/fast/dom/DOMImplementation/
detached-doctype-expected.txt 1 Test for bug 26402: Crashes when using a detached DocumentType node.
  /external/webkit/LayoutTests/http/tests/appcache/
destroyed-frame-expected.txt 1 Test for bug 33813: Crash when using DOMApplicationCache from a destroyed frame.
  /external/webkit/Source/JavaScriptCore/wtf/
Forward.h 46 using WTF::ListRefPtr;
47 using WTF::OwnArrayPtr;
48 using WTF::OwnPtr;
49 using WTF::PassOwnArrayPtr;
50 using WTF::PassOwnPtr;
51 using WTF::PassRefPtr;
52 using WTF::RefPtr;
53 using WTF::Vector;
55 using WTF::AtomicString;
56 using WTF::AtomicStringImpl
    [all...]
  /external/webkit/Source/WebCore/manual-tests/resources/
open-after-close-popup.html 3 PASS: window.open succeeded after window.close using same name.
  /external/zlib/win32/
VisualC.txt 2 To build zlib using the Microsoft Visual C++ environment,
  /prebuilt/linux-x86/emulator/
PREBUILT 1 libqemu-audio.a can be rebuilt using the
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p4.cpp 12 using namespace C;
17 using namespace B;
18 using namespace A;
  /external/clang/test/SemaTemplate/
alias-church-numerals.cpp 4 template<typename W> using R = T<V, W>;
7 template<typename T> using Id = T;
8 template<template<typename> class, typename X> using Zero = X;
9 template<template<template<typename> class, typename> class N, template<typename> class F, typename X> using Succ = F<N<F,X>>;
11 template<template<typename> class F, typename X> using One = Succ<Zero, F, X>;
12 template<template<typename> class F, typename X> using Two = Succ<One, F, X>;
17 typename X> using Add = A<F, B<F, X>>;
22 typename X> using Mul = A<PartialApply<B,F>::template R, X>;
24 template<template<typename> class F, typename X> using Four = Add<Two, Two, F, X>;
25 template<template<typename> class F, typename X> using Sixteen = Mul<Four, Four, F, X>
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.udir/
p1.cpp 3 // When looking up a namespace-name in a using-directive or
22 using namespace ns0;
28 using namespace ns1;
29 using namespace ns2;
30 using namespace ns3;
  /external/clang/test/CXX/temp/temp.decls/
p3.cpp 3 template<typename T> using A = int;
4 template<typename T> using A<T*> = char; // expected-error {{partial specialization of alias templates is not permitted}}
5 template<> using A<char> = char; // expected-error {{explicit specialization of alias templates is not permitted}}
6 template using A<char> = char; // expected-error {{explicit instantiation of alias templates is not permitted}}
7 using A<char> = char; // expected-error {{name defined in alias declaration must be an identifier}}
  /external/clang/test/Parser/
cxx-using-declaration.cpp 9 using A::VA;
10 using A::FA;
11 using typename A::SA;
25 using B::f;
36 using E::funcE<int>; // expected-error{{using declaration can not refer to a template specialization}}
42 using F::X;
  /external/clang/test/SemaCXX/
warn-using-namespace-in-header.cpp 3 #include "warn-using-namespace-in-header.h"
6 using namespace dont_warn;
9 // expected-warning {{using namespace directive in global context in header}}
20 // expected-warning {{using namespace directive in global context in header}}
27 // expected-warning {{using namespace directive in global context in header}}
50 // expected-warning {{using namespace directive in global context in header}}
52 // |using namespace| through a macro shouldn't warn if the instantiation is in a
using-decl-templates.cpp 5 struct N { }; // expected-note{{target of using declaration}}
9 using A<T>::f;
10 using A<T>::N; // expected-error{{dependent using declaration resolved to type without 'typename'}}
12 using A<T>::foo; // expected-error{{no member named 'foo'}}
13 using A<double>::f; // expected-error{{using declaration refers into 'A<double>::', which is not a base class of 'B<int>'}}
19 using A<T>::f;
25 using A<T>::f;
33 using A<T>::f
    [all...]
alias-template.cpp 4 template<typename U> using T = int;
5 template<typename U> using T = int;
6 template<typename U> using T = T<U>;
10 template<typename U> using A = void(int n = 0); // expected-error {{default arguments can only be specified for parameters in a function declaration}}
11 template<typename U> using B = inline void(int n); // expected-error {{type name does not allow function specifier}}
12 template<typename U> using C = virtual void(int n); // expected-error {{type name does not allow function specifier}}
13 template<typename U> using D = explicit void(int n); // expected-error {{type name does not allow function specifier}}
14 template<typename U> using E = void(int n) throw(); // expected-error {{exception specifications are not allowed in type aliases}}
15 template<typename U> using F = void(*)(int n) &&; // expected-error {{pointer to function type cannot have '&&' qualifier}}
16 template<typename U> using G = __thread void(int n); // expected-error {{type name does not allow storage class to be specifi (…)
    [all...]
  /external/stlport/stlport/stl/
_cstdlib.h 56 using _STLP_VENDOR_CSTD::div_t;
57 using _STLP_VENDOR_CSTD::ldiv_t;
58 using _STLP_VENDOR_CSTD::size_t;
63 using _STLP_VENDOR_CSTD::abort;
64 using _STLP_VENDOR_CSTD::getenv;
65 using _STLP_VENDOR_CSTD::mblen;
66 using _STLP_VENDOR_CSTD::mbtowc;
67 using _STLP_VENDOR_CSTD::system;
68 using _STLP_VENDOR_CSTD::bsearch;
70 using _STLP_VENDOR_CSTD::atexit
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cstdlib.h 56 using _STLP_VENDOR_CSTD::div_t;
57 using _STLP_VENDOR_CSTD::ldiv_t;
58 using _STLP_VENDOR_CSTD::size_t;
63 using _STLP_VENDOR_CSTD::abort;
64 using _STLP_VENDOR_CSTD::getenv;
65 using _STLP_VENDOR_CSTD::mblen;
66 using _STLP_VENDOR_CSTD::mbtowc;
67 using _STLP_VENDOR_CSTD::system;
68 using _STLP_VENDOR_CSTD::bsearch;
70 using _STLP_VENDOR_CSTD::atexit
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_cstdlib.h 56 using _STLP_VENDOR_CSTD::div_t;
57 using _STLP_VENDOR_CSTD::ldiv_t;
58 using _STLP_VENDOR_CSTD::size_t;
63 using _STLP_VENDOR_CSTD::abort;
64 using _STLP_VENDOR_CSTD::getenv;
65 using _STLP_VENDOR_CSTD::mblen;
66 using _STLP_VENDOR_CSTD::mbtowc;
67 using _STLP_VENDOR_CSTD::system;
68 using _STLP_VENDOR_CSTD::bsearch;
70 using _STLP_VENDOR_CSTD::atexit
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_cstdlib.h 56 using _STLP_VENDOR_CSTD::div_t;
57 using _STLP_VENDOR_CSTD::ldiv_t;
58 using _STLP_VENDOR_CSTD::size_t;
63 using _STLP_VENDOR_CSTD::abort;
64 using _STLP_VENDOR_CSTD::getenv;
65 using _STLP_VENDOR_CSTD::mblen;
66 using _STLP_VENDOR_CSTD::mbtowc;
67 using _STLP_VENDOR_CSTD::system;
68 using _STLP_VENDOR_CSTD::bsearch;
70 using _STLP_VENDOR_CSTD::atexit
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_cstdlib.h 56 using _STLP_VENDOR_CSTD::div_t;
57 using _STLP_VENDOR_CSTD::ldiv_t;
58 using _STLP_VENDOR_CSTD::size_t;
63 using _STLP_VENDOR_CSTD::abort;
64 using _STLP_VENDOR_CSTD::getenv;
65 using _STLP_VENDOR_CSTD::mblen;
66 using _STLP_VENDOR_CSTD::mbtowc;
67 using _STLP_VENDOR_CSTD::system;
68 using _STLP_VENDOR_CSTD::bsearch;
70 using _STLP_VENDOR_CSTD::atexit
    [all...]
  /external/clang/include/clang/Basic/
LLVM.h 48 using llvm::isa;
49 using llvm::cast;
50 using llvm::dyn_cast;
51 using llvm::dyn_cast_or_null;
52 using llvm::cast_or_null;
55 using llvm::StringRef;
56 using llvm::Twine;
57 using llvm::ArrayRef;
58 using llvm::OwningPtr;
59 using llvm::SmallString
    [all...]
  /bionic/libstdc++/include/
cctype 43 using ::isalnum;
44 using ::isalpha;
45 using ::iscntrl;
46 using ::isdigit;
47 using ::isgraph;
48 using ::islower;
49 using ::isprint;
50 using ::ispunct;
51 using ::isspace;
52 using ::isupper
    [all...]

Completed in 367 milliseconds

1 2 3 4 5 6 7 891011>>