HomeSort by relevance Sort by last modified time
    Searched full:using (Results 151 - 175 of 46401) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
panel.py 3 Module for using panels with curses.
  /prebuilts/misc/darwin-x86_64/freetype/
PREBUILT 3 Install freetype-2.6 using MacPorts. Grab headers and libraries from /opt/local.
  /prebuilts/misc/windows/protobuf/
PREBUILT 1 The binaries in this prebuilt directory can be rebuilt using:
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
cwchar 119 using ::mbstate_t;
120 using ::size_t;
121 using ::tm;
122 using ::wint_t;
123 using ::FILE;
124 using ::fwprintf;
125 using ::fwscanf;
126 using ::swprintf;
127 using ::vfwprintf;
128 using ::vswprintf
    [all...]
cstdlib 97 using ::size_t;
98 using ::div_t;
99 using ::ldiv_t;
101 using ::lldiv_t;
103 using ::atof;
104 using ::atoi;
105 using ::atol;
107 using ::atoll;
109 using ::strtod;
110 using ::strtof
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
panel.py 3 Module for using panels with curses.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
panel.py 3 Module for using panels with curses.
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p4.cpp 13 using namespace C;
18 using namespace B;
19 using namespace A;
  /external/clang/test/Parser/
cxx-using-directive.cpp 8 using namespace A ;
17 using namespace B ; // expected-error{{not allowed}}
22 using namespace C ;
23 using namespace B::A ; // expected-error{{no namespace named 'A' in namespace 'D::B'; did you mean '::B::A'?}}
24 using namespace ::B::A ;
25 using namespace ::D::F ; // expected-error{{expected namespace name}}
26 using namespace ::D::C ; // expected-error{{no namespace named 'C' in namespace 'D'; did you mean simply 'C'?}}
29 using namespace ! ; // expected-error{{expected namespace name}}
30 using namespace A ; // expected-error{{no namespace named 'A'; did you mean 'B::A'?}}
31 using namespace ::A // expected-error{{no namespace named 'A' in the global namespace; did you mean 'B:: (…)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
crc32-bad.l 2 [^:]*:4: Warning: using r15 results in unpredictable behaviour
3 [^:]*.s:5: Warning: using r15 results in unpredictable behaviour
4 [^:]*.s:6: Warning: using r15 results in unpredictable behaviour
5 [^:]*.s:7: Warning: using r15 results in unpredictable behaviour
6 [^:]*.s:8: Warning: using r15 results in unpredictable behaviour
7 [^:]*.s:9: Warning: using r15 results in unpredictable behaviour
8 [^:]*.s:12: Warning: using r13 results in unpredictable behaviour
9 [^:]*.s:13: Warning: using r15 results in unpredictable behaviour
10 [^:]*.s:14: Warning: using r13 results in unpredictable behaviour
11 [^:]*.s:15: Warning: using r15 results in unpredictable behaviou
    [all...]
  /external/clang/test/SemaCXX/
using-decl-1.cpp 7 using ::f;
16 using M::f;
36 using X0::operator();
45 class C : B { using B::f; };
47 // PR5751: Resolve overloaded functions through using decls.
55 using O::f;
65 // Make sure that ADL can find names brought in by using decls.
74 using inner::foo;
86 namespace ns2 { using A::foo; }
89 namespace ns1 { using A::foo;
    [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/clang/test/SemaTemplate/
alias-church-numerals.cpp 5 template<typename W> using R = T<V, W>;
8 template<typename T> using Id = T;
9 template<template<typename> class, typename X> using Zero = X;
10 template<template<template<typename> class, typename> class N, template<typename> class F, typename X> using Succ = F<N<F,X>>;
12 template<template<typename> class F, typename X> using One = Succ<Zero, F, X>;
13 template<template<typename> class F, typename X> using Two = Succ<One, F, X>;
18 typename X> using Add = A<F, B<F, X>>;
23 typename X> using Mul = A<PartialApply<B,F>::template R, X>;
25 template<template<typename> class F, typename X> using Four = Add<Two, Two, F, X>;
26 template<template<typename> class F, typename X> using Sixteen = Mul<Four, Four, F, X>
    [all...]
  /external/boringssl/src/crypto/test/
scoped_types.h 69 using ScopedOpenSSLType = std::unique_ptr<T, OpenSSLDeleter<T, func>>;
72 using ScopedOpenSSLStack =
98 using ScopedBIO = ScopedOpenSSLType<BIO, BIO_vfree>;
99 using ScopedBIGNUM = ScopedOpenSSLType<BIGNUM, BN_free>;
100 using ScopedBN_CTX = ScopedOpenSSLType<BN_CTX, BN_CTX_free>;
101 using ScopedBN_MONT_CTX = ScopedOpenSSLType<BN_MONT_CTX, BN_MONT_CTX_free>;
102 using ScopedCMAC_CTX = ScopedOpenSSLType<CMAC_CTX, CMAC_CTX_free>;
103 using ScopedDH = ScopedOpenSSLType<DH, DH_free>;
104 using ScopedECDSA_SIG = ScopedOpenSSLType<ECDSA_SIG, ECDSA_SIG_free>;
105 using ScopedEC_GROUP = ScopedOpenSSLType<EC_GROUP, EC_GROUP_free>
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.udir/
p1.cpp 4 // When looking up a namespace-name in a using-directive or
23 using namespace ns0;
29 using namespace ns1;
30 using namespace ns2;
31 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/opencv3/modules/core/perf/
perf_abs.cpp 3 using namespace std;
4 using namespace cv;
5 using namespace perf;
6 using std::tr1::make_tuple;
7 using std::tr1::get;
perf_inRange.cpp 3 using namespace std;
4 using namespace cv;
5 using namespace perf;
6 using std::tr1::make_tuple;
7 using std::tr1::get;
  /external/libcxx/include/
cstdlib 97 using ::size_t;
98 using ::div_t;
99 using ::ldiv_t;
101 using ::lldiv_t;
103 using ::atof;
104 using ::atoi;
105 using ::atol;
107 using ::atoll;
109 using ::strtod;
110 using ::strtof
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdlib 97 using ::size_t;
98 using ::div_t;
99 using ::ldiv_t;
101 using ::lldiv_t;
103 using ::atof;
104 using ::atoi;
105 using ::atol;
107 using ::atoll;
109 using ::strtod;
110 using ::strtof
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
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/libchrome/crypto/
scoped_openssl_types.h 33 using ScopedOpenSSL =
44 using ScopedBIGNUM = ScopedOpenSSL<BIGNUM, BN_free>;
45 using ScopedEC_Key = ScopedOpenSSL<EC_KEY, EC_KEY_free>;
46 using ScopedBIO = ScopedOpenSSL<BIO, BIO_free_all>;
47 using ScopedDSA = ScopedOpenSSL<DSA, DSA_free>;
48 using ScopedECDSA_SIG = ScopedOpenSSL<ECDSA_SIG, ECDSA_SIG_free>;
49 using ScopedEC_GROUP = ScopedOpenSSL<EC_GROUP, EC_GROUP_free>;
50 using ScopedEC_KEY = ScopedOpenSSL<EC_KEY, EC_KEY_free>;
51 using ScopedEC_POINT = ScopedOpenSSL<EC_POINT, EC_POINT_free>;
52 using ScopedEVP_MD_CTX = ScopedOpenSSL<EVP_MD_CTX, EVP_MD_CTX_destroy>
    [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/current/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...]

Completed in 652 milliseconds

1 2 3 4 5 67 8 91011>>