HomeSort by relevance Sort by last modified time
    Searched refs:GUID (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/clang/test/SemaCXX/
borland-extensions.cpp 39 } GUID;
43 GUID const* Guid;
49 const GUID guid_inl = __uuidof(Foo);
51 data = ata1.Guid->Data1;
  /development/host/windows/usb/api/
adb_helper_routines.h 59 GUID class_id,
80 bool EnumerateDeviceInterfaces(GUID class_id,
adb_api_private_defines.h 44 AdbInstanceEnumEntry(const wchar_t* dev_name, GUID cls_id, DWORD flgs) {
60 void Set(const wchar_t* dev_name, GUID cls_id, DWORD flgs) {
91 GUID class_id() const {
102 GUID class_id_;
adb_interface_enum.h 57 bool InitializeEnum(GUID class_id,
adb_interface_enum.cpp 35 bool AdbInterfaceEnumObject::InitializeEnum(GUID class_id,
adb_api.h 201 GUID class_id;
227 ADBWIN_API ADBAPIHANDLE __cdecl AdbEnumInterfaces(GUID class_id,
287 ADBWIN_API ADBAPIHANDLE __cdecl AdbCreateInterface(GUID class_id,
adb_helper_routines.cpp 84 GUID class_id,
145 bool EnumerateDeviceInterfaces(GUID class_id,
  /external/chromium/base/
logging_win.h 22 extern const GUID kLogEventId;
60 static void Initialize(const GUID& provider_name);
logging_win.cc 99 void LogEventProvider::Initialize(const GUID& provider_name) {
  /external/chromium/chrome/browser/importer/
ie_importer.h 37 // IE PStore subkey GUID: AutoComplete password & form data.
38 static const GUID kPStoreAutocompleteGUID;
40 // A fake GUID for unit test.
41 static const GUID kUnittestGUID;
  /external/chromium/base/debug/
trace_event_win.h 121 // The ETW trace provider GUID.
122 BASE_API extern const GUID kChromeTraceProviderName;
124 // The ETW event class GUID for 32 bit events.
125 BASE_API extern const GUID kTraceEventClass32;
127 // The ETW event class GUID for 64 bit events.
128 BASE_API extern const GUID kTraceEventClass64;
trace_event_win.cc 18 const GUID kChromeTraceProviderName = {
22 const GUID kTraceEventClass32 = {
26 const GUID kTraceEventClass64 = {
  /external/chromium/chrome/common/
guid_win.cc 5 #include "chrome/common/guid.h"
17 namespace guid { namespace
22 GUID guid; local
23 HRESULT guid_result = CoCreateGuid(&guid);
29 int result = StringFromGUID2(guid,
38 } // namespace guid
win_safe_util.cc 39 // This GUID is associated with any 'don't ask me again' settings that the
42 static const GUID kClientID = { 0x2676a9a2, 0xd919, 0x4fee,
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontCustomPlatformData.cpp 62 GUID fontUuid;
65 for (int i = 0; i < sizeof(GUID) / sizeof(int) ; ++i)
  /external/libvpx/
examples.mk 28 vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
38 vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
52 #example_xma.GUID = A955FC4A-73F1-44F7-135E-30D84D32F022
56 simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC
59 postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7
63 decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42
67 simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD
70 twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD8
73 force_keyframe.GUID = 3C67CADF-029F-4C86-81F5-D6D4F51177F0
78 decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D2
    [all...]
  /external/chromium/base/win/
event_trace_provider.h 21 typedef GUID EtwEventClass;
46 header.Guid = event_class;
56 header.Guid = event_class;
78 // registers with ETW by its name which is a GUID. ETW calls back to
89 explicit EtwTraceProvider(const GUID& provider_name);
106 void set_provider_name(const GUID& provider_name) {
109 const GUID& provider_name() const { return provider_name_; }
160 GUID provider_name_;
event_trace_controller.h 12 // which is a GUID, and can from that point forward receive callbacks that
106 // This will cause all providers registered with the GUID
108 HRESULT EnableProvider(const GUID& provider, UCHAR level,
111 HRESULT DisableProvider(const GUID& provider);
event_trace_provider.cc 17 EtwTraceProvider::EtwTraceProvider(const GUID& provider_name)
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.h 55 extern HRESULT (WINAPI *DDrawCreate)( GUID FAR *lpGUID, LPDIRECTDRAW FAR *lplpDD, IUnknown FAR *pUnkOuter );
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 45 } GUID;
49 struct __declspec(uuid("0000000-0000-0000-1234-0000500000047")) uuid_attr_bad3 { };// expected-error {{uuid attribute contains a malformed GUID}}
50 struct __declspec(uuid("0000000-0000-0000-Z234-000000000047")) uuid_attr_bad4 { };// expected-error {{uuid attribute contains a malformed GUID}}
51 struct __declspec(uuid("000000000000-0000-1234-000000000047")) uuid_attr_bad5 { };// expected-error {{uuid attribute contains a malformed GUID}}
72 __uuidof(struct_without_uuid); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
74 __uuidof(struct_without_uuid*); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
77 __uuidof(var_without_uuid);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
79 __uuidof(var_without_uuid[1]);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
81 __uuidof(&var_without_uuid[1]);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
84 __uuidof(1);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
    [all...]
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
dsetup.h 16 #define GUID void
dsound.h 25 // Direct Sound Component GUID {47D4D946-62E8-11cf-93BC-444553540000}
104 typedef BOOL (FAR PASCAL * LPDSENUMCALLBACKW)(GUID FAR *, LPWSTR, LPWSTR, LPVOID);
105 typedef BOOL (FAR PASCAL * LPDSENUMCALLBACKA)(GUID FAR *, LPSTR, LPSTR, LPVOID);
107 extern HRESULT WINAPI DirectSoundCreate(GUID FAR * lpGUID, LPDIRECTSOUND * ppDS, IUnknown FAR *pUnkOuter );
140 STDMETHOD( Initialize)(THIS_ GUID FAR * ) PURE;
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
DSETUP.H 16 #define GUID void
  /external/webkit/Source/WebKit/win/
WebDataSource.h 36 extern const GUID IID_WebDataSource;

Completed in 3870 milliseconds

1 2 3