HomeSort by relevance Sort by last modified time
    Searched defs:messages (Results 1 - 25 of 911) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/gui/
GUIResources.java 34 private static final ResourceBundle messages = ResourceBundle.getBundle(GUIResources.class.getName()); field in class:GUIResources
43 return messages.getString(messageKey);
53 formatter.applyPattern(messages.getString(messageKey));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
messages_members.h 1 // std::messages implementation details, GNU version -*- C++ -*-
31 // ISO C++ 14882: 22.2.7.1.2 messages functions
44 messages<_CharT>::messages(size_t __refs) function in class:messages
50 messages<_CharT>::messages(__c_locale __cloc, const char* __s, function in class:messages
69 typename messages<_CharT>::catalog
70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
79 messages<_CharT>::~messages()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
messages_members.h 1 // std::messages implementation details, GNU version -*- C++ -*-
31 // ISO C++ 14882: 22.2.7.1.2 messages functions
44 messages<_CharT>::messages(size_t __refs) function in class:messages
50 messages<_CharT>::messages(__c_locale __cloc, const char* __s, function in class:messages
69 typename messages<_CharT>::catalog
70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
79 messages<_CharT>::~messages()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
messages_members.h 1 // std::messages implementation details, generic version -*- C++ -*-
31 // ISO C++ 14882: 22.2.7.1.2 messages virtual functions
42 messages<_CharT>::messages(size_t __refs) function in class:messages
47 messages<_CharT>::messages(__c_locale, const char*, size_t __refs) function in class:messages
52 typename messages<_CharT>::catalog
53 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
59 messages<_CharT>::~messages()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
messages_members.h 1 // std::messages implementation details, generic version -*- C++ -*-
31 // ISO C++ 14882: 22.2.7.1.2 messages virtual functions
42 messages<_CharT>::messages(size_t __refs) function in class:messages
47 messages<_CharT>::messages(__c_locale, const char*, size_t __refs) function in class:messages
52 typename messages<_CharT>::catalog
53 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
59 messages<_CharT>::~messages()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Utils.java 34 * A singleton Messages object is used to load the
38 public static final Messages messages= field in class:Utils
39 new Messages(SerializerMessages.class.getName());
  /external/wayland/tests/
message-test.c 39 } messages[] = { local
49 for (i = 0; i < ARRAY_LENGTH(messages); ++i) {
50 assert(wl_message_get_since(messages[i].message) ==
51 messages[i].expected_version);
72 } messages[] = { local
86 for (i = 0; i < ARRAY_LENGTH(messages); ++i) {
87 assert(wl_message_count_arrays(messages[i].message) ==
88 messages[i].expected_array_count);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDJoinResponse+Internal.h 19 @property(nonatomic, strong) NSArray *messages; variable
ARDJoinResponse.h 26 @property(nonatomic, readonly) NSArray *messages; variable
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
Logger.cpp 56 std::ostringstream messages; local
58 messages << "TBD functionality: " << *it << "\n";
60 messages << "Missing functionality: " << *it << "\n";
62 messages << "warning: " << *it << "\n";
64 messages << "error: " << *it << "\n";
65 return messages.str();
  /external/deqp/external/vulkancts/scripts/
verify_submission.py 33 messages = []
36 messages.append(error(package.basePath, "Exactly one git status file must be present, found %s" % len(package.gitStatus)))
38 messages += verifyGitStatus(package)
40 return messages
43 messages = []
46 messages.append(error(package.basePath, "Exactly one git log file must be present, found %s" % len(package.gitLog)))
48 messages += verifyGitLog(package)
50 return messages
53 messages = []
56 messages += verifyTestLog(os.path.join(package.basePath, testLogFile), mustpass
86 messages = verifyPackage(package, mustpass) variable
    [all...]
  /external/guice/core/src/com/google/inject/
CreationException.java 35 private final ImmutableSet<Message> messages; field in class:CreationException
37 /** Creates a CreationException containing {@code messages}. */
38 public CreationException(Collection<Message> messages) {
39 this.messages = ImmutableSet.copyOf(messages);
40 checkArgument(!this.messages.isEmpty());
41 initCause(Errors.getOnlyCause(this.messages));
44 /** Returns messages for the errors that caused this exception. */
46 return messages;
50 return Errors.format("Unable to create injector, see the following errors", messages);
    [all...]
ProvisionException.java 36 private final ImmutableSet<Message> messages; field in class:ProvisionException
38 /** Creates a ProvisionException containing {@code messages}. */
39 public ProvisionException(Iterable<Message> messages) {
40 this.messages = ImmutableSet.copyOf(messages);
41 checkArgument(!this.messages.isEmpty());
42 initCause(Errors.getOnlyCause(this.messages));
47 this.messages = ImmutableSet.of(new Message(message, cause));
51 this.messages = ImmutableSet.of(new Message(message));
54 /** Returns messages for the errors that caused this exception. *
    [all...]
ConfigurationException.java 36 private final ImmutableSet<Message> messages; field in class:ConfigurationException
39 /** Creates a ConfigurationException containing {@code messages}. */
40 public ConfigurationException(Iterable<Message> messages) {
41 this.messages = ImmutableSet.copyOf(messages);
42 initCause(Errors.getOnlyCause(this.messages));
49 ConfigurationException result = new ConfigurationException(messages);
54 /** Returns messages for the errors that caused this exception. */
56 return messages;
72 return Errors.format("Guice configuration errors", messages);
    [all...]
  /external/skia/tests/
MessageBusTest.cpp 21 // Send two messages.
28 SkTArray<TestMessage> messages; local
29 inbox1.poll(&messages);
30 REPORTER_ASSERT(r, 2 == messages.count());
31 REPORTER_ASSERT(r, 5 == messages[0].x);
32 REPORTER_ASSERT(r, 6 == messages[1].x);
37 inbox1.poll(&messages);
38 REPORTER_ASSERT(r, 1 == messages.count());
39 REPORTER_ASSERT(r, 1 == messages[0].x);
42 inbox1.poll(&messages);
    [all...]
  /external/skqp/tests/
MessageBusTest.cpp 21 // Send two messages.
28 SkTArray<TestMessage> messages; local
29 inbox1.poll(&messages);
30 REPORTER_ASSERT(r, 2 == messages.count());
31 REPORTER_ASSERT(r, 5 == messages[0].x);
32 REPORTER_ASSERT(r, 6 == messages[1].x);
37 inbox1.poll(&messages);
38 REPORTER_ASSERT(r, 1 == messages.count());
39 REPORTER_ASSERT(r, 1 == messages[0].x);
42 inbox1.poll(&messages);
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessageCache.java 27 * to clean up messages come from the device.
54 SparseArray<HdmiCecMessage> messages = mCache.get(address); local
55 if (messages == null) {
59 return messages.get(opcode);
91 SparseArray<HdmiCecMessage> messages = mCache.get(source); local
92 if (messages == null) {
93 messages = new SparseArray<>();
94 mCache.put(source, messages);
96 messages.put(opcode, message);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithMailMessages.java 43 List<MailMessage> messages = Lists.newArrayList(); local
44 messages.add(new MailMessage("hello!", "<p>this is a test "
58 messages.add(new MailMessage("hello2!", longBody.toString(), true));
59 messages.add(new MailMessage("phone number?", "<p>hey man, what's ur "
63 setListAdapter(new MyAdapter(this, R.layout.mail_message, messages));
  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/
predictor.cc 57 TfLiteTensor* messages = interpreter->tensor(interpreter->outputs()[0]); local
62 auto response_text = tflite::GetString(messages, i);
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/os/
FakeHandler.java 26 * A handler that allows control over when to dispatch messages and callbacks.
29 * are sending messages and posting runnables, but *NOT* removing messages nor runnables.
30 * It also *CANNOT* intercept messages posted to the front of queue.
55 * Dispatch any messages that have been queued on the calling thread.
58 ArrayList<Message> messages = new ArrayList<>(mQueuedMessages); local
60 for (Message msg : messages) {
66 /** Messages are dispatched immediately on the calling thread. */
68 /** Messages are queued until {@link #dispatchQueuedMessages()} is called. */
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc/src/
shaderc_private.h 37 // Compilation messages.
38 std::string messages; member in struct:shaderc_compilation_result
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
RepeatedFieldBuilder.java 41 * message uses to hold a repeated field of other protocol messages. It supports
53 * to messages when build is called on the root or when any method is called
56 * classes cache messages that were created so that messages only need to be
75 // List of messages. Never null. It may be immutable, in which case
77 private List<MType> messages; field in class:RepeatedFieldBuilder
79 // Whether messages is an mutable array that can be modified.
86 // Here are the invariants for messages and builders:
87 // 1. messages is never null and its count corresponds to the number of items
89 // 2. If builders is non-null, messages and builders MUST alway
    [all...]
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
26 * this would be replaced by a content provider that actually gets the unread messages to be
32 * Set of strings used as messages by the sample.
34 private static final String[] MESSAGES = new String[]{
44 * Senders of the said messages.
60 * A given conversation can have a single or multiple messages.
61 * Note that the messages are sorted from *newest* to *oldest*
63 private final List<String> messages; field in class:Conversations.Conversation
68 List<String> messages) {
71 this.messages = messages == null ? Collections.<String>emptyList() : messages
115 List<String> messages = new ArrayList<>(messagesPerConversation); local
    [all...]
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
26 * this would be replaced by a content provider that actually gets the unread messages to be
32 * Set of strings used as messages by the sample.
34 private static final String[] MESSAGES = new String[]{
44 * Senders of the said messages.
60 * A given conversation can have a single or multiple messages.
61 * Note that the messages are sorted from *newest* to *oldest*
63 private final List<String> messages; field in class:Conversations.Conversation
68 List<String> messages) {
71 this.messages = messages == null ? Collections.<String>emptyList() : messages
115 List<String> messages = new ArrayList<>(messagesPerConversation); local
    [all...]
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
26 * this would be replaced by a content provider that actually gets the unread messages to be
32 * Set of strings used as messages by the sample.
34 private static final String[] MESSAGES = new String[]{
44 * Senders of the said messages.
60 * A given conversation can have a single or multiple messages.
61 * Note that the messages are sorted from *newest* to *oldest*
63 private final List<String> messages; field in class:Conversations.Conversation
68 List<String> messages) {
71 this.messages = messages == null ? Collections.<String>emptyList() : messages
115 List<String> messages = new ArrayList<>(messagesPerConversation); local
    [all...]

Completed in 2045 milliseconds

1 2 3 4 5 6 7 8 91011>>