Searched defs:Message (Results 1 - 25 of 148) sorted by last modified time

123456

/external/smack/src/org/jivesoftware/smack/packet/
H A DMessage.java31 * <li>Message.Type.NORMAL -- (Default) a normal text message used in email like interface.
32 * <li>Message.Type.CHAT -- a typically short text message used in line-by-line chat interfaces.
33 * <li>Message.Type.GROUP_CHAT -- a chat message sent to a groupchat server for group chats.
34 * <li>Message.Type.HEADLINE -- a text message to be displayed in scrolling marquee displays.
35 * <li>Message.Type.ERROR -- indicates a messaging error.
41 * <tr><td>&nbsp;</td><td colspan="5"><b>Message type</b></td></tr>
51 public class Message extends Packet { class in inherits:Packet
63 public Message() { method in class:Message
71 public Message(String to) { method in class:Message
81 public Message(Strin method in class:Message
[all...]
/external/smack/src/org/xbill/DNS/
H A DMessage.java9 * A DNS Message. A message is the basic unit of communication between
19 public class Message implements Cloneable { class in inherits:Cloneable
57 Message(Header header) { method in class:Message
62 /** Creates a new Message with the specified Message ID */
64 Message(int id) { method in class:Message
68 /** Creates a new Message with a random Message ID */
70 Message() { method in class:Message
75 * Creates a new Message wit
98 Message(DNSInput in) throws IOException { method in class:Message
134 Message(byte [] b) throws IOException { method in class:Message
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/protobuf/python/google/protobuf/
H A Dmessage.py45 class Message(object): class in inherits:object
50 compiler. These generated types subclass Message and implement the methods
89 other_msg: Message to merge into the current message.
100 other_msg: Message to copy into the current one.
246 If the client wants to disconnect this Message from the object tree, she
/external/protobuf/src/google/protobuf/
H A Dmessage.cc59 Message::~Message() {}
61 void Message::MergeFrom(const Message& from) {
70 void Message::CheckTypeAndMergeFrom(const MessageLite& other) {
71 MergeFrom(*down_cast<const Message*>(&other));
74 void Message::CopyFrom(const Message& from) {
83 string Message::GetTypeName() const {
87 void Message
[all...]
H A Dmessage.h35 // Defines Message, the abstract interface implemented by non-lite
79 // // Same as the last block, but do it dynamically via the Message
81 // Message* foo = new Foo;
149 class Message;
180 // See also MessageLite, which contains most every-day operations. Message
184 // default implementations based on reflection. Message classes which are
188 class LIBPROTOBUF_EXPORT Message : public MessageLite { class in namespace:google::protobuf
190 inline Message() {} function in class:google::protobuf::Message
191 virtual ~Message();
198 virtual Message* Ne
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
54 // The Message class works like an ostream repeater.
58 // 1. You stream a bunch of values to a Message object.
60 // 2. Then you stream the Message object to an ostream.
61 // This causes the text in the Message to be streamed
66 // testing::Message foo;
72 // Message is not intended to be inherited from. In particular, its
77 // latter (it causes an access violation if you do). The Message
80 class Message { class in namespace:testing
87 // Constructs an empty Message
92 Message() : ss_(new internal::StrStream) {} function in class:testing::Message
95 Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT function in class:testing::Message
100 explicit Message(const char* str) : ss_(new internal::StrStream) { function in class:testing::Message
[all...]
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc140 using testing::Message;
1723 Message message;
2106 added_env[name] = new String((Message() << name << "=" << value).GetString());
2110 _putenv((Message() << name << "=" << value).GetString().c_str());
2416 Message msg;
2452 Message msg;
2470 Message msg;
2659 AssertionFailure(Message() << "Failure");
2664 AssertionFailure(Message() << "Failure");
2670 AssertionFailure(Message() << "Failur
6129 class Message {}; class in namespace:my_namespace::testing
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DMessage.java41 * Abstract interface implemented by Protocol Message objects.
44 * users care about. {@link Message} adds to it methods that are not available
51 public interface Message extends MessageLite { interface in inherits:MessageLite
55 * this method is an abstract method of the {@code Message} interface
62 Message getDefaultInstanceForType();
146 * just a trivial wrapper around {@link TextFormat#printToString(Message)}.
159 * Abstract interface implemented by Protocol Message builders.
180 * This is equivalent to the {@code Message::MergeFrom} method in C++.
182 Builder mergeFrom(Message other);
186 Message buil
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/nist-sip/java/javax/sip/message/
H A DMessage.java15 public interface Message extends Cloneable, Serializable { interface in inherits:Cloneable,Serializable
/external/nanopb-c/generator/
H A Dnanopb_generator.py502 class Message: class in inherits:
642 messages.append(Message(names, message, message_options))
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message { class in namespace:testing
89 // Constructs an empty Message
94 Message() : ss_(new ::std::stringstream) { function in class:testing::Message
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
106 explicit Message(const char* str) : ss_(new ::std::stringstream) { function in class:testing::Message
[all...]
/external/llvm/unittests/Support/
H A DYAMLParserTest.cpp33 static void ExpectParseError(StringRef Message, StringRef Input) { argument
37 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input;
38 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input;
42 static void ExpectParseSuccess(StringRef Message, StringRef Input) { argument
45 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input;
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message { class in namespace:testing
89 // Constructs an empty Message
94 Message() : ss_(new ::std::stringstream) { function in class:testing::Message
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
106 explicit Message(const char* str) : ss_(new ::std::stringstream) { function in class:testing::Message
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DUpdate.h142 UString Message; member in struct:CErrorInfo
/external/llvm/tools/bugpoint/
H A DExecutionDriver.cpp149 std::string Message; local
155 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
160 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
166 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
171 Message = "Sorry, I can't automatically select an interpreter!\n";
175 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
181 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
187 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
192 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand);
196 AbstractInterpreter::createCustomExecutor(Message, CustomExecComman
[all...]
H A DToolRunner.cpp270 std::string &Message,
275 Message = "Found lli: " + LLIPath + "\n";
279 Message = "Cannot find `lli' in executable directory!\n";
409 static void lexCommand(std::string &Message, const std::string &CommandLine, argument
432 Message =
438 Message = "Found command in: " + CmdPath + "\n";
444 std::string &Message,
449 lexCommand(Message, CompileCommandLine, CmdPath, Args);
459 std::string &Message,
465 lexCommand(Message, ExecCommandLin
269 createLLI(const char *Argv0, std::string &Message, const std::vector<std::string> *ToolArgs) argument
443 createCustomCompiler( std::string &Message, const std::string &CompileCommandLine) argument
458 createCustomExecutor( std::string &Message, const std::string &ExecCommandLine) argument
552 createLLC(const char *Argv0, std::string &Message, const std::string &GCCBinary, const std::vector<std::string> *Args, const std::vector<std::string> *GCCArgs, bool UseIntegratedAssembler) argument
644 createJIT(const char *Argv0, std::string &Message, const std::vector<std::string> *Args) argument
907 create(std::string &Message, const std::string &GCCBinary, const std::vector<std::string> *Args) argument
[all...]
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp148 static void error(Twine Message, Twine Path = Twine()) { argument
150 errs() << ToolName << ": " << Path << ": " << Message << ".\n"; local
/external/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp28 static void exitWithError(const Twine &Message, StringRef Whence = "") { argument
32 errs() << Message << "\n";
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp177 static void reportError(StringRef Input, StringRef Message) { argument
181 errs() << Input << ": " << Message << "\n"; local
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp142 static void Message(const char *Type, const Twine &Msg) { function
147 Message("error", Msg);
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp38 static void Message(const char *Type, const Twine &Msg) { function
43 Message("error", Msg);
48 Message("warning", Msg);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp215 std::string Message; member in class:__anon26368::Report
220 Report(Instruction *I = nullptr) : Out(Message), Instr(I) {
777 void emitAnalysis(Report &Message) { argument
779 if (Instruction *I = Message.getInstr())
782 *TheFunction, DL, Message.str());
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c29 char *Message; local
30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
36 String = copy_string(Message);
40 LLVMDisposeMessage(Message);

Completed in 722 milliseconds

123456