Home
last modified time | relevance | path

Searched refs:Type (Results 1 – 25 of 48) sorted by relevance

12

/device/google/cuttlefish/host/libs/wmediumd_controller/
Dwmediumd_api_protocol.h81 virtual WmediumdMessageType Type() const = 0;
91 WmediumdMessageType Type() const override { in Type() function
105 WmediumdMessageType Type() const override { in Type() function
122 WmediumdMessageType Type() const override { in Type() function
136 WmediumdMessageType Type() const override { in Type() function
146 WmediumdMessageType Type() const override { in Type() function
160 WmediumdMessageType Type() const override { in Type() function
169 WmediumdMessageType Type() const override { in Type() function
180 WmediumdMessageType Type() const override { return type_; } in Type() function
196 WmediumdMessageType Type() const override { in Type() function
[all …]
Dwmediumd_api_protocol.cpp99 AppendBinaryRepresentation(result, this->Type()); in Serialize()
187 if (reply.Type() != WmediumdMessageType::kStationsList) { in Parse()
190 << ", got " << static_cast<uint32_t>(reply.Type()) << std::endl; in Parse()
/device/generic/vulkan-cereal/stream-servers/testlibs/windows/win32/
DWin32Window.cpp251 event.Type = Event::EVENT_CLOSED; in WndProc()
267 event.Type = Event::EVENT_MOVED; in WndProc()
291 event.Type = Event::EVENT_RESIZED; in WndProc()
302 event.Type = Event::EVENT_GAINED_FOCUS; in WndProc()
310 event.Type = Event::EVENT_LOST_FOCUS; in WndProc()
323 event.Type = down ? Event::EVENT_KEY_PRESSED : Event::EVENT_KEY_RELEASED; in WndProc()
338 event.Type = Event::EVENT_MOUSE_WHEEL_MOVED; in WndProc()
348 event.Type = Event::EVENT_MOUSE_BUTTON_PRESSED; in WndProc()
359 event.Type = Event::EVENT_MOUSE_BUTTON_RELEASED; in WndProc()
371 event.Type = Event::EVENT_MOUSE_BUTTON_PRESSED; in WndProc()
[all …]
/device/generic/vulkan-cereal/stream-servers/testlibs/x11/
DX11Window.cpp437 event.Type = Event::EVENT_MOUSE_WHEEL_MOVED; in processEvent()
444 event.Type = Event::EVENT_MOUSE_BUTTON_RELEASED; in processEvent()
482 event.Type = Event::EVENT_MOUSE_BUTTON_RELEASED; in processEvent()
494 event.Type = Event::EVENT_KEY_PRESSED; in processEvent()
504 event.Type = Event::EVENT_KEY_RELEASED; in processEvent()
514 event.Type = Event::EVENT_MOUSE_ENTERED; in processEvent()
522 event.Type = Event::EVENT_MOUSE_LEFT; in processEvent()
530 event.Type = Event::EVENT_MOUSE_MOVED; in processEvent()
542 event.Type = Event::EVENT_RESIZED; in processEvent()
563 event.Type = Event::EVENT_MOVED; in processEvent()
[all …]
/device/generic/vulkan-cereal/stream-servers/testlibs/osx/
DOSXWindow.mm40 event.Type = Event::EVENT_TEST;
57 event.Type = Event::EVENT_CLOSED;
121 event.Type = Event::EVENT_CLOSED;
130 event.Type = Event::EVENT_RESIZED;
140 event.Type = Event::EVENT_MOVED;
149 event.Type = Event::EVENT_GAINED_FOCUS;
159 event.Type = Event::EVENT_LOST_FOCUS;
375 event.Type = eventType;
404 event.Type = Event::EVENT_MOUSE_MOVED;
413 event.Type = Event::EVENT_MOUSE_ENTERED;
[all …]
/device/generic/goldfish-opengl/android-emu/aemu/base/
DTypeTraits.h37 template <class Predicate, class Type = void*>
38 using enable_if = typename std::enable_if<Predicate::value, Type>::type;
42 template <bool predicate, class Type = void*>
43 using enable_if_c = typename std::enable_if<predicate, Type>::type;
47 template <class From, class To, class Type = void*>
/device/google/cuttlefish/host/commands/cvd/unittests/selector/
Dhost_tool_target_test.cpp54 ASSERT_TRUE(daemon_flag->Type() == "string" || daemon_flag->Type() == "bool"); in TEST()
84 ASSERT_TRUE(daemon_flag->Type() == "string" || daemon_flag->Type() == "bool"); in TEST()
/device/google/cuttlefish/host/commands/secure_env/
Dtpm_serialize.h41 template<typename Type>
44 TpmSerializable(Type*);
50 Type* instance_;
/device/google/cuttlefish/host/libs/graphics_detector/include/vulkan/
Dvulkan_structs.hpp312 using Type = AccelerationStructureGeometryTrianglesDataKHR; typedef
399 using Type = AccelerationStructureGeometryAabbsDataKHR; typedef
486 using Type = AccelerationStructureGeometryInstancesDataKHR; typedef
640 using Type = AccelerationStructureGeometryKHR; typedef
857 using Type = AccelerationStructureBuildGeometryInfoKHR; typedef
1080 using Type = AccelerationStructureBuildSizesInfoKHR; typedef
1188 using Type = AccelerationStructureCaptureDescriptorDataInfoEXT; typedef
1328 using Type = AccelerationStructureCreateInfoKHR; typedef
1508 using Type = GeometryTrianglesNV; typedef
1632 using Type = GeometryAABBNV; typedef
[all …]
Dvulkan_handles.hpp1572 template <typename Type>
1650 using Type = VULKAN_HPP_NAMESPACE::SurfaceKHR; typedef
1657 using Type = VULKAN_HPP_NAMESPACE::SurfaceKHR; typedef
1739 using Type = VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT; typedef
1746 using Type = VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT; typedef
1828 using Type = VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT; typedef
1911 using Type = VULKAN_HPP_NAMESPACE::DisplayKHR; typedef
1918 using Type = VULKAN_HPP_NAMESPACE::DisplayKHR; typedef
2000 using Type = VULKAN_HPP_NAMESPACE::SwapchainKHR; typedef
2007 using Type = VULKAN_HPP_NAMESPACE::SwapchainKHR; typedef
[all …]
Dvulkan.hpp931 template <typename Type, class...>
937 template <typename Type, typename Head, typename... Tail>
938 struct IsPartOfStructureChain<Type, Head, Tail...>
940 …static const bool valid = std::is_same<Type, Head>::value || IsPartOfStructureChain<Type, Tail...>…
1191 template <typename Type, typename Dispatch>
1194 template <typename Type, typename Dispatch>
1195 class UniqueHandle : public UniqueHandleTraits<Type, Dispatch>::deleter
1198 using Deleter = typename UniqueHandleTraits<Type, Dispatch>::deleter;
1201 using element_type = Type;
1208 …explicit UniqueHandle( Type const & value, Deleter const & deleter = Deleter() ) VULKAN_HPP_NOEXCE… in UniqueHandle()
[all …]
/device/generic/goldfish-opengl/android-emu/aemu/base/fit/
DUtilityInternal.h33 using Type = FirstType;
37 using First_t = typename First<Ts...>::Type;
94 using Type = T;
106 template <typename Identity, typename T = typename Identity::Type>
/device/google/cuttlefish/host/commands/cvd/selector/
Darguments_lexer.h102 auto Type() const { return type_; } in Type() function
106 return Type() == dst.Type() && Token() == dst.Token();
Darguments_separator.cpp108 tokens_queue.front().Type() == ArgType::kPositional); in ParseInternal()
117 const auto current_type = current.Type(); in ParseInternal()
130 if (next && next->Type() == ArgType::kPositional) { in ParseInternal()
/device/generic/goldfish/radio/librilutils/proto/
Dsap-api.proto171 enum Type { enum
175 required Type type = 1;
181 enum Type { enum
185 required Type type = 1;
/device/generic/vulkan-cereal/fake-android-guest/libvulkan/
Dcode-generator.tmpl164 VKAPI_ATTR {{Node "Type" $f.Return}} {{Macro "BaseName" $f}}({{Macro "Parameters" $f}});
170 VKAPI_ATTR {{Node "Type" $f.Return}} {{Macro "BaseName" $f}}({{Macro "Parameters" $f}}) {
195 VKAPI_ATTR {{Node "Type" $f.Return}} {{$f.Name}}({{Macro "Parameters" $f}}) {
196 {{if not (IsVoid $f.Return.Type)}}return §{{end}}
528 VKAPI_ATTR {{Node "Type" $.Return}} disabled{{$base}}({{$first_type}}, {{$tail_types}}) {
531 {{if not (IsVoid $.Return.Type)}}return VK_SUCCESS;{{end}}
669 {{if not (IsVoid $.Return.Type)}}return §{{end}}
788 enum Type {
806 Type type;
842 VKAPI_ATTR {{Node "Type" $.Return}} checked{{$base}}({{Macro "Parameters" $}}) {
[all …]
Ddriver_gen.h30 enum Type { enum
56 Type type;
/device/generic/vulkan-cereal/stream-servers/testlibs/
DOSWindow.cpp181 switch (event.Type) in PrintEvent()
293 switch (event.Type) in pushEvent()
319 if (topEvent.Type == Event::EVENT_TEST) in didTestEventFire()
/device/generic/vulkan-cereal/fake-android-guest/utils/
DList.h76 typedef const TYPE Type; typedef
82 typedef TYPE Type; typedef
92 typedef typename Constness<U>::Type _Type;
/device/google/lynx/self-extractors/
DPART211 echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\
/device/linaro/hikey/self-extractors_hikey960/
DPART211 echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\
/device/google/bluejay/self-extractors/
DPART211 echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\
/device/google/barbet/self-extractors/
DPART211 echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\
/device/google/tangorpro/self-extractors/
DPART211 echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\
/device/google/coral/self-extractors/
DPART211 echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\

12