Searched refs:message (Results 276 - 300 of 2727) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dsaveplace.el149 (message "Buffer `%s' not visiting a file" (buffer-name))
152 (message "No place will be saved in this file")
154 (message "Place will be saved")
210 (message "Saving places to %s..." file)
228 (file-error (message "Can't write %s" file)))
230 (message "Saving places to %s...done" file)))))
241 (message "Loading places from %s..." file)
270 (message "Loading places from %s...done" file)))
/macosx-10.10.1/emacs-93/emacs/lisp/url/
H A Durl-cid.el38 (message "Unknown CID encountered: %s" cid)
63 (message "Unable to handle CID URL: %s" url))))
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/TableGen/
H A DError.h26 TGError(ArrayRef<SMLoc> locs, const std::string &message) argument
27 : Locs(locs.begin(), locs.end()), Message(message) {}
/macosx-10.10.1/mail_cmds-30/mail/
H A Dextern.h61 char *hfield(const char *, struct message *);
64 char *name1(struct message *, int);
65 char *nameof(struct message *, int);
72 FILE *setinput(struct message *);
91 int append(struct message *, FILE *);
226 int sendmessage(struct message *, FILE *, struct ignoretab *, char *);
240 void statusput(struct message *, FILE *, char *);
246 void touch(struct message *);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVDirectChat.h73 - (void) addEventMessageToDisplay:(NSString *) message withName:(NSString *) name andAttributes:(NSDictionary *) attributes;
74 - (void) addEventMessageToDisplay:(NSString *) message withName:(NSString *) name andAttributes:(NSDictionary *) attributes entityEncodeAttributes:(BOOL) encode;
75 - (void) addMessageToDisplay:(NSData *) message fromUser:(NSString *) user asAction:(BOOL) action;
76 - (void) processMessage:(NSMutableString *) message asAction:(BOOL) action fromUser:(NSString *) user;
77 - (void) echoSentMessageToDisplay:(NSAttributedString *) message asAction:(BOOL) action;
83 - (void) sendAttributedMessage:(NSMutableAttributedString *) message asAction:(BOOL) action;
93 - (void) processMessage:(NSMutableString *) message asAction:(BOOL) action inChat:(JVDirectChat *) chat;
94 - (void) processMessage:(NSMutableAttributedString *) message asAction:(BOOL) action toChat:(JVDirectChat *) chat;
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVDirectChat.h73 - (void) addEventMessageToDisplay:(NSString *) message withName:(NSString *) name andAttributes:(NSDictionary *) attributes;
74 - (void) addEventMessageToDisplay:(NSString *) message withName:(NSString *) name andAttributes:(NSDictionary *) attributes entityEncodeAttributes:(BOOL) encode;
75 - (void) addMessageToDisplay:(NSData *) message fromUser:(NSString *) user asAction:(BOOL) action;
76 - (void) processMessage:(NSMutableString *) message asAction:(BOOL) action fromUser:(NSString *) user;
77 - (void) echoSentMessageToDisplay:(NSAttributedString *) message asAction:(BOOL) action;
83 - (void) sendAttributedMessage:(NSMutableAttributedString *) message asAction:(BOOL) action;
93 - (void) processMessage:(NSMutableString *) message asAction:(BOOL) action inChat:(JVDirectChat *) chat;
94 - (void) processMessage:(NSMutableAttributedString *) message asAction:(BOOL) action toChat:(JVDirectChat *) chat;
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVDirectChat.h73 - (void) addEventMessageToDisplay:(NSString *) message withName:(NSString *) name andAttributes:(NSDictionary *) attributes;
74 - (void) addEventMessageToDisplay:(NSString *) message withName:(NSString *) name andAttributes:(NSDictionary *) attributes entityEncodeAttributes:(BOOL) encode;
75 - (void) addMessageToDisplay:(NSData *) message fromUser:(NSString *) user asAction:(BOOL) action;
76 - (void) processMessage:(NSMutableString *) message asAction:(BOOL) action fromUser:(NSString *) user;
77 - (void) echoSentMessageToDisplay:(NSAttributedString *) message asAction:(BOOL) action;
83 - (void) sendAttributedMessage:(NSMutableAttributedString *) message asAction:(BOOL) action;
93 - (void) processMessage:(NSMutableString *) message asAction:(BOOL) action inChat:(JVDirectChat *) chat;
94 - (void) processMessage:(NSMutableAttributedString *) message asAction:(BOOL) action toChat:(JVDirectChat *) chat;
/macosx-10.10.1/remote_cmds-47/talk.tproj/
H A Dmsgs.c63 message(current_state);
71 message(current_state);
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dparseexception.rb5 def initialize( message, source=nil, parser=nil, exception=nil )
6 super(message)
23 # Get the stack trace and error message
/macosx-10.10.1/ruby-106/ruby/lib/rss/
H A Drexmlparser.rb24 raise NotWellFormedError.new{e.message}
28 raise NotWellFormedError.new(line){e.message}
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/smtpd/clients/
H A Dmail-test.py11 def sendmail(self, sender, recipient, message):
13 self.svr.sendmail(sender, recipient, message)
28 This is a sample message from Python.
37 # Try normal message
/macosx-10.10.1/DiskArbitration-268/diskarbitrationd/
H A DDASession.c327 mach_msg_header_t message; local
330 message.msgh_bits = MACH_MSGH_BITS( MACH_MSG_TYPE_COPY_SEND, 0 );
331 message.msgh_id = 0;
332 message.msgh_local_port = MACH_PORT_NULL;
333 message.msgh_remote_port = session->_client;
334 message.msgh_reserved = 0;
335 message.msgh_size = sizeof( message );
337 status = mach_msg( &message, MACH_SEND_MSG | MACH_SEND_TIMEOUT, message
380 mach_msg_header_t message; local
[all...]
/macosx-10.10.1/WebKit-7600.1.25/wince/
H A DWebView.cpp63 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
66 return webView->wndProc(hWnd, message, wParam, lParam);
68 return DefWindowProc(hWnd, message, wParam, lParam);
183 void WebView::runJavaScriptAlert(const String& message) argument
188 bool WebView::runJavaScriptConfirm(const String& message) argument
194 bool WebView::runJavaScriptPrompt(const String& message, const String& defaultValue, String& result) argument
281 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
291 PlatformMouseEvent mouseEvent(hWnd, message, wParam, lParam);
298 if (message == WM_LBUTTONDOWN || message
[all...]
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dadblock.pl16 my ( $self, $headers, $message ) = @_;
17 $self->proxy->response( $no ) if $message->uri->host =~ /$re/o;
H A Dyahoogroups.pl13 my ( $self, $headers, $message ) = @_;
28 $message->request->headers # headers are cloned
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dadblock.pl16 my ( $self, $headers, $message ) = @_;
17 $self->proxy->response( $no ) if $message->uri->host =~ /$re/o;
H A Dyahoogroups.pl13 my ( $self, $headers, $message ) = @_;
28 $message->request->headers # headers are cloned
/macosx-10.10.1/JavaScriptCore-7600.1.17/llvm/library/
H A DLLVMOverrides.cpp35 void (*g_llvmTrapCallback)(const char* message, ...);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DErrorConstructor.cpp53 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); local
58 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message, stackTrace));
69 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); local
74 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message, stackTrace));
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/
H A DWebPluginContainer.h55 @abstract Tell the application to show the specified status message.
56 @param message The string to be shown.
58 - (void)webPlugInContainerShowStatus:(NSString *)message;
/macosx-10.10.1/WebKit-7600.1.25/wince/WebCoreSupport/
H A DInspectorClientWinCE.cpp74 bool InspectorClientWinCE::sendMessageToFrontend(const String& message) argument
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKUIDelegate.h59 @param message The message to display.
71 - (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)())completionHandler;
75 @param message The message to display.
87 - (void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL result))completionHandler;
91 @param message The message to display.
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/c/
H A DWKBundlePageDiagnosticLoggingClient.h31 typedef void (*WKBundlePageDiagnosticLoggingCallback)(WKBundlePageRef page, WKStringRef message, WKStringRef description, WKStringRef success, const void* clientInfo);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundlePageDiagnosticLoggingClient.h48 void logDiagnosticMessage(WebPage*, const String& message, const String& description, const String& success);
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Doctave-hlp.el84 (message "Building help lookup alist...")
116 (message "Building help lookup alist...done"))
124 (message "Building help completion alist...")
131 (message "Building help completion alist...done"))

Completed in 295 milliseconds

<<11121314151617181920>>