/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;
|
RTCStatsReport.h | 35 @property(nonatomic, readonly) NSString* type; variable
|
/art/runtime/base/ |
type_static_if.h | 20 // A static if which determines whether to return type A or B based on the condition boolean. 23 typedef A type; typedef in struct:TypeStaticIf 29 typedef B type; typedef in struct:TypeStaticIf
|
/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
|
/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:__anon8590 10 dest->type=0;
|
/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/libcxx/test/std/utilities/function.objects/func.require/ |
invoke.pass.cpp | 22 typedef T type[N]; typedef in struct:Array 25 struct Type 27 Array<char, 1>::type& f1(); 28 Array<char, 2>::type& f2() const; 30 Array<char, 1>::type& g1() &; 31 Array<char, 2>::type& g2() const &; 33 Array<char, 3>::type& g3() &&; 34 Array<char, 4>::type& g4() const &&; 40 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "") [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_bld_blend_logicop.c | 49 LLVMTypeRef type; local 52 type = LLVMTypeOf(src); 56 res = LLVMConstNull(type); 101 res = LLVMConstAllOnes(type);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_eu_debug.c | 46 static const char *type[] = { local 67 hwreg.type == BRW_REGISTER_TYPE_F) { 75 hwreg.type == BRW_REGISTER_TYPE_F) { 86 hwreg.subnr / type_sz(hwreg.type), 90 type[hwreg.type]);
|
/external/parameter-framework/upstream/parameter/ |
SubsystemLibrary.h | 50 // Builder type (based on element's name attribute) 54 std::string type; local 55 xmlElement.getAttribute("Type", type); 56 return type;
|
/external/webrtc/webrtc/api/objc/ |
RTCSessionDescription.h | 14 * Represents the session description type. This exposes the same types that are 15 * in C++, which doesn't include the rollback type that is in the W3C spec. 27 /** The type of session description. */ 28 @property(nonatomic, readonly) RTCSdpType type; variable 35 /** Initialize a session description with a type and SDP string. */ 36 - (instancetype)initWithType:(RTCSdpType)type sdp:(NSString *)sdp
|
RTCStatsReport.h | 21 /** The type of stats held by this object. */ 22 @property(nonatomic, readonly) NSString *type; variable
|