HomeSort by relevance Sort by last modified time
    Searched defs:type (Results 1 - 25 of 5358) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/catch2/projects/SelfTest/UsageTests/
ToStringTuple.tests.cpp 8 typedef std::tuple<> type; typedef
9 CHECK( "{ }" == ::Catch::Detail::stringify(type{}) );
10 type value {};
16 typedef std::tuple<int> type; typedef
17 CHECK( "{ 0 }" == ::Catch::Detail::stringify(type{0}) );
23 typedef std::tuple<float,int> type; typedef
25 CHECK( "{ 1.2f, 0 }" == ::Catch::Detail::stringify(type{1.2f,0}) );
30 typedef std::tuple<std::string,std::string> type; typedef
31 CHECK( "{ \"hello\", \"world\" }" == ::Catch::Detail::stringify(type{"hello","world"}) );
36 typedef std::tuple<std::tuple<int>,std::tuple<>,float> type; typedef
43 typedef std::tuple<std::nullptr_t,int,const char *> type; typedef
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_subjectdns.cpp 15 void CJX_SubjectDNs::type(CFXJSE_Value* pValue, function in class:CJX_SubjectDNs
  /external/webrtc/talk/app/webrtc/objc/public/
RTCSessionDescription.h 38 // The session type.
39 @property(nonatomic, copy, readonly) NSString *type; variable
41 - (id)initWithType:(NSString *)type sdp:(NSString *)sdp;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_llrint.c 4 #define type double macro
s_llrintf.c 4 #define type float macro
s_llrintl.c 4 #define type long double macro
s_lrintf.c 4 #define type float macro
s_lrintl.c 4 #define type long double macro
  /build/make/tools/droiddoc/templates-ndk/
macros_override.cs 11 @<?cs var:anno.type.label ?>
26 <tr class="<?cs if:count % #2 ?>alt-color<?cs /if ?> api apilevel-<?cs var:cl.type.since ?>" >
27 <td class="jd-linkcol"><?cs call:type_link(cl.type) ?></td>
  /external/clang/test/Analysis/
delayed-template-parsing-crash.cpp 4 template <class T> struct remove_reference {typedef T type;}; typedef in struct:remove_reference
5 template <class T> struct remove_reference<T&> {typedef T type;}; typedef in struct:remove_reference
6 template <class T> struct remove_reference<T&&> {typedef T type;}; typedef in struct:remove_reference
9 typename remove_reference<T>::type&& move(T&& arg) { // this used to crash
10 return static_cast<typename remove_reference<T>::type&&>(arg);
  /external/clang/test/CXX/temp/temp.names/
p4.cpp 7 typedef U* type; typedef in struct:meta::apply
12 void f(typename T::template apply<U>::type);
  /external/clang/test/CodeCompletion/
constexpr.cpp 6 typedef int type; typedef in struct:S
13 // CHECK: COMPLETION: type : type
  /external/clang/test/CodeGen/
2002-07-31-BadAssert.c 5 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */ member in struct:__anon16944
10 dest->type=0;
  /external/clang/test/Modules/Inputs/PR26014/
A.h 8 typedef __underlying_type(_Tp) type; typedef in struct:underlying_type
B.h 7 typedef __underlying_type(_Tp) type; typedef in struct:underlying_type
  /external/clang/test/Modules/Inputs/merge-anon-in-template/
a.h 3 typedef int type; typedef in struct:is_floating
c.h 3 typedef int type; typedef in struct:is_floating
  /external/clang/test/Modules/Inputs/submodules/
type_traits.h 3 typedef T type; typedef in struct:remove_reference
8 typedef T type; typedef in struct:remove_reference
  /external/clang/test/SemaCXX/
libstdcxx_common_type_hack.cpp 17 // reference type.
18 typedef decltype(true ? declval<A>() : declval<B>()) type; member in struct:std::common_type
28 using T = std::common_type<int, int>::type;
  /external/clang/test/SemaTemplate/
instantiate-elab-type-specifier.cpp 11 typedef struct Base<T>::foo type; typedef in struct:Derived
instantiate-typedef.cpp 5 typedef T* type; // expected-error{{'type' declared as a pointer to a reference}} typedef in struct:add_pointer
8 add_pointer<int>::type test1(int * ptr) { return ptr; }
10 add_pointer<float>::type test2(int * ptr) {
11 return ptr; // expected-error{{cannot initialize return object of type 'add_pointer<float>::type' (aka 'float *') with an lvalue of type 'int *'}}
14 add_pointer<int&>::type // expected-note{{in instantiation of template class 'add_pointer<int &>' requested here}}
instantiation-depth-defarg.cpp 4 typedef typename S<N-1>::type type; typedef in struct:S
13 typedef int type; typedef in struct:S
  /external/doclava/res/assets/templates-sdk/
macros_override.cs 11 @<?cs var:anno.type.label ?>
27 if:cl.type.since
28 ?>data-version-added="<?cs var:cl.type.since ?>"<?cs
30 if:cl.type.deprecatedsince
31 ?> data-version-deprecated="<?cs var:cl.type.deprecatedsince ?>"<?cs
33 <td class="jd-linkcol"><?cs call:type_link(cl.type) ?></td>
49 call:simple_type_link(param.type)?> <?cs
  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
invoke.pass.cpp 20 typedef T type[N]; typedef in struct:Array
23 struct Type
25 Array<char, 1>::type& f1();
26 Array<char, 2>::type& f2() const;
28 Array<char, 1>::type& g1() &;
29 Array<char, 2>::type& g2() const &;
30 Array<char, 3>::type& g3() &&;
31 Array<char, 4>::type& g4() const &&;
37 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "")
    [all...]
  /external/libnetfilter_conntrack/include/internal/
extern.h 16 uint32_t type; member in struct:attr_grp_bitmask

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 91011>>