Searched defs:Message (Results 1 - 18 of 18) 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.cpp207 static void LLVMErrorHandler(void *UserData, const std::string &Message, argument
212 DiagEngine->Report(clang::diag::err_fe_error_backend) << Message;
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/base/cmds/incident_helper/src/
H A Dih_util.h134 class Message;
137 friend class Message;
162 class Message class
165 Message(Table* table);
166 ~Message();
169 void addSubMessage(uint64_t fieldId, Message* fieldMsg);
198 std::map<std::string, Message*> mSubMessages;
H A Dih_util.cpp382 Message::Message(Table* table) function in class:Message
390 Message::~Message()
395 Message::addSubMessage(uint64_t fieldId, Message* fieldMsg)
406 Message::insertField(ProtoOutputStream* proto, const std::string& name, const std::string& value)
440 Message::startSession(ProtoOutputStream* proto, const std::string& name)
449 Message::endSession(ProtoOutputStream* proto)
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.cpp42 void MessageBase::handleMessage(const Message&) { argument
57 mQueue.mLooper->sendMessage(this, Message(MessageQueue::REFRESH));
63 mQueue.mLooper->sendMessage(this, Message(MessageQueue::INVALIDATE));
67 void MessageQueue::Handler::handleMessage(const Message& message) {
127 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.cpp20 Message::Message() : replied_(true) {} function in class:android::pdx::Message
22 Message::Message(const MessageInfo& info) function in class:android::pdx::Message
33 // means we have to manually implement the desired move semantics for Message.
34 Message::Message(Message&& other) { *this = std::move(other); } function in class:android::pdx::Message
36 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;
115 private static Message sPool;
123 * Return a new Message instance from the global pool. Allows us to
126 public static Message obtain() {
129 Message m = sPool;
137 return new Message();
144 * @return A Message objec
495 public Message() { method in class:Message
[all...]
/frameworks/native/services/vr/bufferhubd/
H A Dproducer_channel.cpp20 using android::pdx::Message;
192 void ProducerChannel::HandleImpulse(Message& message) {
204 bool ProducerChannel::HandleMessage(Message& message) {
245 Message& /*message*/) {
252 Status<RemoteChannelHandle> ProducerChannel::CreateConsumer(Message& message) {
302 Status<RemoteChannelHandle> ProducerChannel::OnNewConsumer(Message& message) {
309 Message&, LocalFence acquire_fence) {
362 Status<LocalFence> ProducerChannel::OnProducerGain(Message& /*message*/) {
387 Message& message) {
441 Status<LocalFence> ProducerChannel::OnConsumerAcquire(Message
308 OnProducerPost( Message&, LocalFence acquire_fence) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_DisplayListCanvas.cpp66 virtual void handleMessage(const Message&) { argument
H A Dandroid_view_ThreadedRenderer.cpp108 virtual void handleMessage(const Message& message) {
125 virtual void handleMessage(const Message& message) {
149 virtual void handleMessage(const Message&) { argument
184 virtual void handleMessage(const Message&) { argument
510 virtual void handleMessage(const Message& message);
614 Message mMessage;
623 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/src/main/java/androidx/core/app/
H A DNotificationCompat.java407 * {@link MessagingStyle.Message} objects for a {@link MessagingStyle} notification.
429 * This extra is unnecessary if you are using {@code MessagingStyle} since each {@code Message}
431 * See {@code Message#setData}.
2161 private final List<Message> mMessages = new ArrayList<>();
2173 * {@link #addMessage(Message)}
2239 * {@link Message} in {@link #addMessage(Message)}
2248 * @see Message#Message(CharSequence, long, CharSequence)
2253 * {@link #addMessage(Message)}
2556 public static final class Message { class in class:NotificationCompat.MessagingStyle
2584 public Message(CharSequence text, long timestamp, @Nullable Person person) { method in class:NotificationCompat.MessagingStyle.Message
2604 public Message(CharSequence text, long timestamp, CharSequence sender){ method in class:NotificationCompat.MessagingStyle.Message
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java1171 * {@link #extras} key: an array of {@link android.app.Notification.MessagingStyle.Message}
1181 * {@link android.app.Notification.MessagingStyle.Message} bundles provided by a
1226 * This extra is unnecessary if you are using {@code MessagingStyle} since each {@code Message}
1228 * See {@code Message#setData}.
2355 for (MessagingStyle.Message message : MessagingStyle.Message
2363 for (MessagingStyle.Message message : MessagingStyle.Message
6630 List<Message> mMessages = new ArrayList<>();
6631 List<Message> mHistoricMessage
7164 public static final class Message { class in class:Notification.MessagingStyle
7200 public Message(CharSequence text, long timestamp, CharSequence sender){ method in class:Notification.MessagingStyle.Message
7220 public Message(@NonNull CharSequence text, long timestamp, @Nullable Person sender) { method in class:Notification.MessagingStyle.Message
7242 public Message(@NonNull CharSequence text, long timestamp, @Nullable Person sender, method in class:Notification.MessagingStyle.Message
[all...]

Completed in 5416 milliseconds