Searched defs:Message (Results 1 - 17 of 17) sorted by relevance

/frameworks/compile/slang/
H A Dslang_diagnostic_buffer.cpp40 std::string Message; local
41 llvm::raw_string_ostream stream(Message);
69 // 100 is enough for storing general diagnosis Message
75 if (mIncludedMessages.find(Message) == mIncludedMessages.end()) {
76 mIncludedMessages.insert(Message);
77 (*mSOS) << Message;
H A Dllvm-rs-cc.cpp206 static void LLVMErrorHandler(void *UserData, const std::string &Message, argument
211 DiagEngine->Report(clang::diag::err_fe_error_backend) << Message;
H A Dslang_rs_context.h318 const char (&Message)[N]) {
320 return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message));
326 const char (&Message)[N]) {
330 DiagEngine->getCustomDiagID(Level, Message));
336 clang::DiagnosticBuilder ReportError(const char (&Message)[N]) { argument
337 return Report<N>(clang::DiagnosticsEngine::Error, Message);
342 const char (&Message)[N]) {
343 return Report<N>(clang::DiagnosticsEngine::Error, Loc, Message);
347 clang::DiagnosticBuilder ReportWarning(const char (&Message)[N]) { argument
348 return Report<N>(clang::DiagnosticsEngine::Warning, Message);
317 Report(clang::DiagnosticsEngine::Level Level, const char (&Message)[N]) argument
324 Report(clang::DiagnosticsEngine::Level Level, const clang::SourceLocation Loc, const char (&Message)[N]) argument
341 ReportError(const clang::SourceLocation Loc, const char (&Message)[N]) argument
352 ReportWarning(const clang::SourceLocation Loc, const char (&Message)[N]) argument
[all...]
H A Dslang_rs_export_type.cpp192 const char (&Message)[N],
198 Context->ReportError(TopLevelRecord->getLocation(), Message)
201 Context->ReportError(ND->getLocation(), Message) << ND->getName()
189 ReportTypeError(slang::RSContext *Context, const clang::NamedDecl *ND, const clang::RecordDecl *TopLevelRecord, const char (&Message)[N], unsigned int TargetAPI = 0) argument
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitReader.cpp32 std::string Message; local
35 &Message));
38 *OutMessage = strdup(Message.c_str());
52 std::string Message; local
55 &Message));
58 *OutMessage = strdup(Message.c_str());
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitReader.cpp32 std::string Message; local
35 &Message));
38 *OutMessage = strdup(Message.c_str());
52 std::string Message; local
55 &Message));
58 *OutMessage = strdup(Message.c_str());
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.cpp44 void MessageBase::handleMessage(const Message&) { argument
53 mQueue.mLooper->sendMessage(this, Message(MessageQueue::REFRESH));
59 mQueue.mLooper->sendMessage(this, Message(MessageQueue::INVALIDATE));
63 void MessageQueue::Handler::handleMessage(const Message& message) {
126 const Message dummyMessage;
/frameworks/native/vulkan/libvulkan/
H A Ddebug_report.cpp56 void DebugReportCallbackList::Message(VkDebugReportFlagsEXT flags, function in class:vulkan::driver::DebugReportCallbackList
73 void DebugReportLogger::Message(VkDebugReportFlagsEXT flags, function in class:vulkan::driver::DebugReportLogger
97 callbacks_->Message(flags, object_type, object, location, message_code,
114 Message(flags, object_type, object, 0, 0, LOG_TAG, buf);
181 GetData(instance).debug_report_callbacks.Message(
/frameworks/native/libs/vr/libpdx/
H A Dservice.cpp23 Message::Message() : replied_(true) {} function in class:android::pdx::Message
25 Message::Message(const MessageInfo& info) function in class:android::pdx::Message
36 // means we have to manually implement the desired move semantics for Message.
37 Message::Message(Message&& other) { *this = std::move(other); } function in class:android::pdx::Message
39 Message& Message
[all...]
/frameworks/base/core/java/android/os/
H A DMessage.java29 * <p class="note">While the constructor of Message is public, the best way to get
30 * one of these is to call {@link #obtain Message.obtain()} or one of the
34 public final class Message implements Parcelable { class in inherits:Parcelable
110 /*package*/ Message next;
113 private static Message sPool;
121 * Return a new Message instance from the global pool. Allows us to
124 public static Message obtain() {
127 Message m = sPool;
135 return new Message();
142 * @return A Message objec
477 public Message() { method in class:Message
[all...]
/frameworks/native/services/vr/bufferhubd/
H A Dproducer_channel.cpp17 using android::pdx::Message;
77 void ProducerChannel::HandleImpulse(Message& message) {
86 bool ProducerChannel::HandleMessage(Message& message) {
125 Message& message) {
131 Status<RemoteChannelHandle> ProducerChannel::CreateConsumer(Message& message) {
164 Status<RemoteChannelHandle> ProducerChannel::OnNewConsumer(Message& message) {
171 Message&, LocalFence acquire_fence,
207 Status<LocalFence> ProducerChannel::OnProducerGain(Message& message) {
227 ProducerChannel::OnConsumerAcquire(Message& message,
247 Status<void> ProducerChannel::OnConsumerRelease(Message
170 OnProducerPost( Message&, LocalFence acquire_fence, BufferWrapper<std::vector<std::uint8_t>> metadata) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_DisplayListCanvas.cpp65 virtual void handleMessage(const Message&) { argument
H A Dandroid_view_ThreadedRenderer.cpp95 virtual void handleMessage(const Message& message) {
112 virtual void handleMessage(const Message& message) {
136 virtual void handleMessage(const Message&) { argument
454 virtual void handleMessage(const Message& message);
558 Message mMessage;
567 void NotifyHandler::handleMessage(const Message& message) {
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dservice.h68 * Message class represents an RPC message, and implicitly the blocked sender
72 * Message automatically replies with an error to the client on destruction,
75 * 1. The service calls one of the reply methods before the Message is
78 * Message, using either move construction or move assignment.
82 * Message to another instance in a suitable data structure for later use. The
83 * moved-to Message then takes on the same behavior and responsibilities
86 class Message : public OutputResourceMapper, public InputResourceMapper { class in namespace:android::pdx
88 Message();
89 Message(const MessageInfo& info);
90 ~Message();
[all...]
/frameworks/native/libs/vr/libpdx_uds/
H A Dremote_method_tests.cpp29 using android::pdx::Message;
345 Status<void> HandleMessage(Message& message) override {
439 int OnAdd(Message&, int a, int b) { return a + b; }
441 int OnFoo(Message&, int a, const std::string& b) { return a + b.length(); }
443 std::string OnConcatenate(Message&, const std::string& a,
448 int OnSumVector(Message&, const std::vector<int>& vector) {
452 int OnStringLength(Message&, const std::string& string) {
456 TestType OnSendTestType(Message&, const TestType& tt) {
460 std::string OnSendVector(Message&, const std::vector<TestType>& v) {
469 Status<std::string> OnRot13(Message
492 OnOpenFiles( Message&, const std::vector<std::pair<std::string, int>>& file_specs) argument
[all...]
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java386 * {@link MessagingStyle.Message} objects for a {@link MessagingStyle} notification.
402 * This extra is unnecessary if you are using {@code MessagingStyle} since each {@code Message}
404 * See {@code Message#setData}.
932 for (MessagingStyle.Message message : messagingStyle.mMessages) {
2180 List<Message> mMessages = new ArrayList<>();
2189 * {@link #addMessage(Message)}
2223 * {@link Message} in {@link #addMessage(Message)}
2232 * @see Message#Message(CharSequenc
2317 public static final class Message { class in class:NotificationCompat.MessagingStyle
2344 public Message(CharSequence text, long timestamp, CharSequence sender){ method in class:NotificationCompat.MessagingStyle.Message
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java1055 * {@link #extras} key: an array of {@link android.app.Notification.MessagingStyle.Message}
1065 * {@link android.app.Notification.MessagingStyle.Message} bundles provided by a
1099 * This extra is unnecessary if you are using {@code MessagingStyle} since each {@code Message}
1101 * See {@code Message#setData}.
5697 List<Message> mMessages = new ArrayList<>();
5698 List<Message> mHistoricMessages = new ArrayList<>();
5707 * {@link #addMessage(Notification.MessagingStyle.Message)}
5741 * {@link Message} in {@link #addMessage(Notification.MessagingStyle.Message)}.
5750 * @see Message#Messag
6061 public static final class Message { class in class:Notification.MessagingStyle
6088 public Message(CharSequence text, long timestamp, CharSequence sender){ method in class:Notification.MessagingStyle.Message
[all...]

Completed in 411 milliseconds