HomeSort by relevance Sort by last modified time
    Searched refs:MSG (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebCore/platform/win/
EventLoopWin.cpp 35 MSG msg; local
36 if (!GetMessage(&msg, 0, 0, 0)) {
41 TranslateMessage(&msg);
42 DispatchMessage(&msg);
  /frameworks/base/core/java/android/os/
CountDownTimer.java 76 mHandler.removeMessages(MSG);
88 mHandler.sendMessage(mHandler.obtainMessage(MSG));
105 private static final int MSG = 1;
112 public void handleMessage(Message msg) {
121 sendMessageDelayed(obtainMessage(MSG), millisLeft);
133 sendMessageDelayed(obtainMessage(MSG), delay);
  /external/webkit/Tools/MiniBrowser/win/
MiniBrowser.h 44 bool handleMessage(const MSG*);
main.cpp 44 static bool shouldTranslateMessage(const MSG& msg)
48 if (msg.message != WM_KEYDOWN && msg.message != WM_SYSKEYDOWN && msg.message != WM_KEYUP && msg.message != WM_SYSKEYUP)
52 if (!::GetClassNameW(msg.hwnd, className, ARRAYSIZE(className)))
67 MSG message;
BrowserWindow.h 44 bool handleMessage(const MSG*);
MiniBrowser.cpp 74 bool MiniBrowser::handleMessage(const MSG* message)
  /external/chromium/base/
message_pump_win.h 37 // The message may be undefined in which case msg.message is 0
38 virtual void WillProcessMessage(const MSG& msg) = 0;
41 // The message may be undefined in which case msg.message is 0
42 virtual void DidProcessMessage(const MSG& msg) = 0;
58 virtual bool Dispatch(const MSG& msg) = 0;
73 void WillProcessMessage(const MSG& msg);
    [all...]
message_pump_win.cc 32 void MessagePumpWin::WillProcessMessage(const MSG& msg) {
33 FOR_EACH_OBSERVER(Observer, observers_, WillProcessMessage(msg));
36 void MessagePumpWin::DidProcessMessage(const MSG& msg) {
37 FOR_EACH_OBSERVER(Observer, observers_, DidProcessMessage(msg));
148 MSG msg; local
149 if (!PeekMessage(&msg, NULL, 0, 0, PM_REMOVE | PM_QS_PAINT))
151 ProcessMessageHelper(msg);
269 MSG msg = {0}; local
328 MSG msg; local
376 MSG msg; local
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskBatch.cpp 61 MSG("= Test batch %s version %s started. =", name.string(),
64 MSG("= Finished Test batch =");
  /external/webkit/Tools/TestWebKitAPI/
PlatformUtilities.h 41 bool shouldTranslateMessage(const MSG&);
  /cts/suite/audio_quality/lib/src/
BuiltinProcessing.cpp 66 MSG("Volume %lld low compared to min %lld max %lld", rms, passMin, passMax);
69 MSG("Volume %lld OK compared to min %lld max %lld", rms, passMin, passMax);
  /external/webkit/Source/WebKit2/Shared/
NativeWebKeyboardEvent.h 61 const MSG* nativeEvent() const { return &m_nativeEvent; }
72 MSG m_nativeEvent;
NativeWebMouseEvent.h 57 const MSG* nativeEvent() const { return &m_nativeEvent; }
68 MSG m_nativeEvent;
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFormatterTest.java 28 static String MSG = "msg, pls. ignore it";
31 LogRecord r = new LogRecord(Level.FINE, MSG);
OldLogRecordTest.java 26 static final String MSG = "test msg, pls. ignore itb";
28 private LogRecord lr = new LogRecord(Level.CONFIG, MSG);
83 lr = new LogRecord(Level.CONFIG, "msg thread");
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FormatterTest.java 34 static String MSG = "msg, pls. ignore it";
42 r = new LogRecord(Level.FINE, MSG);
58 assertEquals(MSG, f.formatMessage(r));
72 r.setMessage(MSG);
73 assertEquals(MSG, f.formatMessage(r));
90 r.setMessage("msg");
94 assertEquals(rb.getString("msg"), f.formatMessage(r));
112 r.setMessage("msg");
114 assertEquals(rb.getString("msg"), f.formatMessage(r))
    [all...]
LogRecordTest.java 35 static final String MSG = "test msg, pls. ignore itb";
43 lr = new LogRecord(Level.CONFIG, MSG);
54 new LogRecord(null, MSG);
142 logger.log(Level.SEVERE, MSG);
147 lr = new LogRecord(Level.SEVERE, MSG);
154 lr = new LogRecord(Level.SEVERE, MSG);
161 lr = new LogRecord(Level.SEVERE, MSG);
193 ml.info(MSG);
200 ml.log(Level.SEVERE, MSG);
    [all...]
SimpleFormatterTest.java 37 private static String MSG = "test msg. pls. ignore it\nadaadasfdasfd\nadfafdadfsa";
45 lr = new LogRecord(Level.FINE, MSG);
62 lr.setMessage("msg");
63 String localeMsg = rb.getString("msg");
70 lr.setMessage("msg");
72 localeMsg = rb.getString("msg");
80 lr.setMessage(MSG + " {0,number}");
  /external/grub/stage1/
stage1.S 33 #define MSG(x) movw $ABS(x), %si; call message
154 MSG(notification_string)
381 MSG(geometry_error_string)
388 MSG(hd_probe_error_string)
395 MSG(read_error_string)
398 MSG(general_error_string)
474 MSG(fd_probe_error_string)
  /external/grub/stage2/
start.S 41 #define MSG(x) movw $ABS(x), %si; call message
70 MSG(notification_string)
294 (MSG modifies SI, which is saved, and unused AX and BX) */
296 MSG(notification_step)
313 MSG(notification_done)
326 MSG(geometry_error_string)
333 MSG(read_error_string)
336 MSG(general_error_string)
  /external/chromium/chrome/browser/ui/views/
user_data_dir_dialog.h 51 virtual bool Dispatch(const MSG& msg);
  /external/skia/include/gpu/
GrConfig.h 213 #define GR_WARN(MSG) (GR_FILE_AND_LINE_STR "WARNING: " MSG)
215 #define GR_WARN(MSG) ("WARNING: " MSG)
277 inline void GrCrash(const char* msg) { GrPrintf(msg); GrAlwaysAssert(false); }
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
TranslateMessageGeneratesWMChar.cpp 50 MSG msg; local
51 BOOL result = ::GetMessageW(&msg, 0, 0, 0);
55 if (msg.message == WM_CHAR)
58 if (Util::shouldTranslateMessage(msg))
59 ::TranslateMessage(&msg);
61 ::DispatchMessage(&msg);
  /external/chromium/chrome/browser/notifications/
balloon_collection_impl.h 57 virtual void WillProcessMessage(const MSG& event) {}
58 virtual void DidProcessMessage(const MSG& event);
  /external/webkit/Tools/TestWebKitAPI/win/
PlatformUtilitiesWin.cpp 48 MSG msg; local
49 BOOL result = ::GetMessageW(&msg, 0, 0, 0);
53 if (shouldTranslateMessage(msg))
54 ::TranslateMessage(&msg);
55 ::DispatchMessage(&msg);
59 bool shouldTranslateMessage(const MSG& msg)
63 if (msg.message != WM_KEYDOWN && msg.message != WM_SYSKEYDOWN && msg.message != WM_KEYUP && msg.message != WM_SYSKEYUP
    [all...]

Completed in 280 milliseconds

1 2 3 4 5