Home
last modified time | relevance | path

Searched defs:MessageID (Results 1 – 2 of 2) sorted by relevance

/third_party/vk-gl-cts/modules/gles31/functional/
Des31fDebugTests.cpp280 struct MessageID struct
282 GLenum source;
283 GLenum type;
284 GLuint id;
286 MessageID (void) : source(GL_NONE), type(GL_NONE), id(0) {} in MessageID() argument
287 MessageID (GLenum source_, GLenum type_, GLuint id_) : source(source_), type(type_), id(id_) {} in MessageID() argument
289 …== (const MessageID& rhs) const { return source == rhs.source && type == rhs.type && id == rhs.id;} in operator ==()
290 …!= (const MessageID& rhs) const { return source != rhs.source || type != rhs.type || id != rhs.id;} in operator !=()
291 bool operator< (const MessageID& rhs) const in operator <()
/third_party/python/Lib/email/
D_header_value_parser.py854 class MessageID(MsgID): class