Searched defs:Type (Results 1 - 25 of 776) sorted by last modified time

1234567891011>>

/external/xmlrpcpp/src/
H A DXmlRpcValue.h26 enum Type { enum in class:XmlRpc::XmlRpcValue
105 //! Return the type of the value stored. \see Type.
106 Type const &getType() const { return _type; }
140 // Type checking
141 void assertTypeOrInvalid(Type t);
171 // Type tag and values
172 Type _type;
/external/webrtc/webrtc/system_wrappers/include/
H A Dsort.h21 enum Type { enum in namespace:webrtc
42 int32_t Sort(void* data, uint32_t num_of_elements, Type data_type);
61 uint32_t size_of_element, Type key_type);
/external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
H A Dconference_transport.h108 enum Type { Rtp, Rtcp, } type_; enum in struct:voetest::ConferenceTransport::Packet
111 Packet(Type type, const void* data, size_t len, uint32_t time_ms)
127 void StorePacket(Packet::Type type, const void* data, size_t len);
/external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
H A Dafter_initialization_fixture.h71 enum Type { Rtp, Rtcp, } type; enum in struct:LoopBackTransport::Packet
74 Packet(Type type, const void* data, size_t len)
84 void StorePacket(Packet::Type type,
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dpacket.h28 enum Type { kMedia, kFeedback }; enum in class:webrtc::testing::bwe::Packet
41 virtual Packet::Type GetPacketType() const = 0;
86 virtual Packet::Type GetPacketType() const { return kMedia; }
107 virtual Packet::Type GetPacketType() const { return kFeedback; }
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dbyte_io.h109 typedef typename UnsignedOf<T>::Type U;
200 typedef typename UnsignedOf<T>::Type U;
227 typedef uint8_t Type; typedef in struct:webrtc::UnsignedOf
231 typedef uint16_t Type; typedef in struct:webrtc::UnsignedOf
235 typedef uint32_t Type; typedef in struct:webrtc::UnsignedOf
239 typedef uint64_t Type; typedef in struct:webrtc::UnsignedOf
/external/webrtc/webrtc/modules/video_coding/
H A Dmedia_opt_util.h107 enum VCMProtectionMethodEnum Type() const { return _type; } function in class:webrtc::media_optimization::VCMProtectionMethod
/external/webrtc/webrtc/p2p/base/
H A Dport.h135 virtual const std::string& Type() const { return type_; } function in class:cricket::Port
/external/webrtc/webrtc/base/
H A Dflags.h74 enum Type { BOOL, INT, FLOAT, STRING }; enum in class:rtc::Flag
78 Type type, void* variable, FlagValue default_);
86 Type type() const { return type_; }
145 Type type_;
/external/webrtc/talk/app/webrtc/
H A Dstatstypes.h253 enum Type { enum in struct:webrtc::StatsReport::Value
263 Value(StatsValueName name, int64_t value, Type int_type);
306 Type type() const { return type_; }
312 const Type type_;
H A Dwebrtcsessiondescriptionfactory.h65 enum Type { enum in struct:webrtc::CreateSessionDescriptionRequest
71 Type type,
78 Type type;
/external/webrtc/talk/media/base/
H A Dscreencastid.h49 enum Type { INVALID, WINDOW, DESKTOP }; enum in class:cricket::ScreencastId
60 Type type() const { return type_; }
106 Type type_;
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DSessionDescription.java38 public static enum Type { enum in class:SessionDescription
45 public static Type fromCanonicalForm(String canonical) {
46 return Type.valueOf(Type.class, canonical.toUpperCase());
50 public final Type type;
53 public SessionDescription(Type type, String description) {
/external/vulkan-validation-layers/demos/smoke/
H A DMeshes.h31 enum Type { enum in class:Meshes
40 void cmd_draw(VkCommandBuffer cmd, Type type) const;
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest.h3729 // Type utilities needed for implementing typed and type-parameterized
3798 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
3813 // Type lists of length 1, 2, 3, and so on.
7535 typedef typename Types::Head Type; typedef
7536 typedef Fixture<Type> FixtureClass;
7537 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
7545 GetTypeName<Type>().c_str(),
8951 // Type and function utilities for implementing parameterized tests.
10655 // Type and function utilities for implementing parameterized tests.
17095 enum Type { enum in class:testing::TestPartResult
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
H A Dgtest-test-part.h51 enum Type { enum in class:testing::TestPartResult
60 TestPartResult(Type a_type,
72 Type type() const { return type_; }
103 Type type_;
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h574 typedef typename Types::Head Type; typedef
575 typedef Fixture<Type> FixtureClass;
576 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
584 GetTypeName<Type>().c_str(),
/external/valgrind/none/tests/x86-linux/
H A Dseg_override.c24 unsigned Type : 5; member in struct:_LDT_ENTRY::__anon25428::__anon25430
/external/v8/src/
H A Dstring-stream.h84 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER }; enum in class:v8::internal::final::final
87 Type type_;
88 explicit FmtElm(Type type) : type_(type) {}
90 explicit FmtElm(Type) {}
/external/v8/testing/gmock/scripts/generator/cpp/
H A Dast.py409 class Type(_GenericDeclaration): class in inherits:_GenericDeclaration
410 """Type used for any variable (eg class, primitive, struct, etc)."""
417 templated_types: [Class (Type?)] template type info between <>
446 # By definition, Is* are always False. A Type can only exist in
500 result.append(Type(name_tokens[0].start, name_tokens[-1].end,
608 parameter_type = Type(first_token.start, first_token.end,
663 return Type(start, end, name, templated_types, modifiers,
732 var_type = Type(pos_token.start, pos_token.end, type_name,
1118 # can be tricky. For example, Return::Type::Is::Hard::To::Find().
1414 # We got something like: Type variabl
[all...]
/external/v8/testing/gmock/test/
H A Dgmock-matchers_test.cc910 // Type<T>::IsTypeOf(v) compiles iff the type of value v is T, where T
915 struct Type { struct in namespace:testing::gmock_matchers_test
924 Type<Matcher<int> >::IsTypeOf(TypedEq<int>(5));
925 Type<Matcher<double> >::IsTypeOf(TypedEq<double>(5));
/external/v8/testing/gtest/include/gtest/
H A Dgtest-test-part.h51 enum Type { enum in class:testing::TestPartResult
60 TestPartResult(Type a_type,
72 Type type() const { return type_; }
103 Type type_;
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h633 typedef typename Types::Head Type; typedef
634 typedef Fixture<Type> FixtureClass;
635 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
643 GetTypeName<Type>().c_str(),
H A Dgtest-param-util.h32 // Type and function utilities for implementing parameterized tests.
395 typedef std::string Type(const TestParamInfo<ParamType>&); typedef in struct:testing::internal::ParamNameGenFunc
399 typename ParamNameGenFunc<ParamType>::Type *GetParamNameGen() {
507 typedef typename ParamNameGenFunc<ParamType>::Type ParamNameGeneratorFunc;
/external/v8/tools/clang/blink_gc_plugin/tests/
H A Dfinalize_after_dispatch.h39 enum Type { TB, TC, TD }; enum in class:blink::A
40 A(Type type) : m_type(type) { }
42 Type m_type;
65 Abstract(Type type) : A(type) { }

Completed in 797 milliseconds

1234567891011>>