Searched defs:type (Results 1 - 25 of 5043) sorted by relevance

1234567891011>>

/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCSessionDescription.h38 // The session type.
39 @property(nonatomic, copy, readonly) NSString *type; variable
41 - (id)initWithType:(NSString *)type sdp:(NSString *)sdp;
H A DRTCStatsReport.h35 @property(nonatomic, readonly) NSString* type; variable
/external/clang/test/Analysis/
H A Ddelayed-template-parsing-crash.cpp4 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);
H A Delementtype.c4 int type; member in struct:added_obj_st
7 // Test if we are using the canonical type for ElementRegion.
11 ao[0]->type=0;
/external/clang/test/CodeCompletion/
H A Dconstexpr.cpp6 typedef int type; typedef in struct:S
13 // CHECK: COMPLETION: type : type
/external/clang/test/Modules/Inputs/merge-anon-in-template/
H A Da.h3 typedef int type; typedef in struct:is_floating
H A Dc.h3 typedef int type; typedef in struct:is_floating
/external/clang/test/Modules/Inputs/submodules/
H A Dtype_traits.h3 typedef T type; typedef in struct:remove_reference
8 typedef T type; typedef in struct:remove_reference
/external/clang/test/SemaCXX/
H A Dlibstdcxx_common_type_hack.cpp17 // 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/
H A Dinstantiate-elab-type-specifier.cpp11 typedef struct Base<T>::foo type; typedef in struct:Derived
H A Dinstantiation-depth-defarg.cpp4 typedef typename S<N-1>::type type; typedef in struct:S
13 typedef int type; typedef in struct:S
H A Dinstantiate-typedef.cpp5 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}}
/external/dbus/bus/
H A Dconfig-parser-common.c50 else if (strcmp (name, "type") == 0)
134 bus_config_parser_element_type_to_name (ElementType type) argument
136 switch (type)
173 return "type";
186 _dbus_assert_not_reached ("bad element type");
/external/elfutils/backends/
H A Ds390_symbol.c41 s390_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
43 switch (type)
H A Dtilegx_symbol.c42 tilegx_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
44 switch (type)
H A Dx86_64_symbol.c43 x86_64_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
45 switch (type)
/external/libcxx/test/std/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp22 typedef T type[N]; typedef in struct:Array
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 &&;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_eu_debug.c46 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/webrtc/webrtc/api/objc/
H A DRTCSessionDescription.h14 * 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
H A DRTCStatsReport.h21 /** The type of stats held by this object. */
22 @property(nonatomic, readonly) NSString *type; variable
/external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/
H A Dp3-0x.cpp5 { typedef T type; }; typedef in struct:PR6285::identity
9 operator typename identity<T>::type(); // expected-note{{candidate}}
/external/clang/test/CXX/temp/temp.names/
H A Dp4.cpp7 typedef U* type; typedef in struct:meta::apply
12 void f(typename T::template apply<U>::type);
/external/clang/test/CodeGen/
H A D2007-04-24-str-const.c6 unsigned type; member in struct:__anon2056
H A DPR4611-bitfield-layout.c3 // CHECK: struct.object_entry = type { i32 }
6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
/external/fio/
H A Ddebug.c7 void __dprint(int type, const char *str, ...) argument
12 assert(type < FD_DEBUG_MAX);
19 log_info("%-8s ", debug_levels[type].name);

Completed in 5500 milliseconds

1234567891011>>