Searched +refs:cookie +refs:insert (Results 1 - 16 of 16) sorted by relevance

/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Dyow.el53 (defun yow (&optional insert display)
54 "Return or display a random Zippy quotation. With prefix arg, insert it."
56 (let ((yow (cookie yow-file yow-load-message yow-after-load-message)))
57 (cond (insert
58 (insert yow))
67 (read-cookie prompt yow-file yow-load-message yow-after-load-message
71 (defun insert-zippyism (&optional zippyism)
72 "Prompt with completion for a known Zippy quotation, and insert it at point."
74 (insert zippyism))
82 (cookie yo
[all...]
H A Dcookie1.el1 ;;; cookie1.el --- retrieve random phrases from fortune cookie files
30 ;; Support for random cookie fetches from phrase files, used for such
34 ;; The two entry points are `cookie' and `cookie-insert'. The helper
46 ;; `cookie-delimiter'.
49 ;; In order to achieve total compatibility with strfile(1), cookie files
54 ;; cookie databases and fortune files. It is intended to be called
57 ;; TO DO: teach cookie-snarf to auto-detect ITS PINS or UNIX fortune(6)
65 (defconst cookie
72 (defun cookie (phrase-file startmsg endmsg) function
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/CookieDatabaseBackingStore/
H A DCookieDatabaseBackingStore.cpp109 LOG_ERROR("Could not open the cookie database. No cookie will be stored!");
129 LOG_ERROR("Could not create the table to store the cookies into. No cookie will be stored!");
200 void CookieDatabaseBackingStore::insert(const PassRefPtr<ParsedCookie> cookie) argument
202 CookieLog("CookieBackingStore - adding inserting cookie %s to queue.", cookie->toString().utf8().data());
203 addToChangeQueue(cookie, Insert);
206 void CookieDatabaseBackingStore::update(const PassRefPtr<ParsedCookie> cookie) argument
208 CookieLog("CookieBackingStore - adding updating cookie
212 remove(const PassRefPtr<ParsedCookie> cookie) argument
392 const RefPtr<ParsedCookie> cookie = changedCookies[i].first; local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/url/
H A Durl-cookie.el1 ;;; url-cookie.el --- Netscape Cookie support
37 ;; A cookie is stored internally as a vector of 7 slots
38 ;; [ cookie NAME VALUE EXPIRES LOCALPART DOMAIN SECURE ]
40 (defsubst url-cookie-name (cookie) (aref cookie 1))
41 (defsubst url-cookie-value (cookie) (aref cookie 2))
42 (defsubst url-cookie
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DCookieManager.cpp172 // Generate the cookie header string using the retrieved cookies
200 RefPtr<ParsedCookie> cookie = 0; local
203 cookie = cookieCandidates[i];
205 result.append(cookie->domain());
207 result.append(cookie->path());
209 result.append(cookie->protocol());
211 result.append(cookie->name());
213 result.append(cookie->value());
215 result.append(String(cookie->isSecure() ? "Yes" : "No"));
217 result.append(String(cookie
327 RefPtr<ParsedCookie> cookie = cookieCandidates[i]; local
609 RefPtr<ParsedCookie> cookie = results[i]; local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dwebmail.el32 ;; work. `w3' must be 4.0pre46+one-line-cookie patch or standalone
58 (require 'url-cookie)))
62 (require 'url-cookie)))
68 ;; Hotmail hate other HTTP user agents and use one line cookie
69 (paranoid agent cookie post)
85 (paranoid agent cookie post)
102 (paranoid cookie post)
122 (paranoid cookie post agent)
142 (paranoid cookie post)
198 (insert "\
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/librewrite/
H A Drewrite-int.h473 const void *cookie
482 const void *cookie,
494 const void *cookie,
505 const void *cookie
509 * Destroys the cookie tree
566 #define rewrite_var_set(tree, name, value, insert) \
568 REWRITE_VAR_UPDATE|REWRITE_VAR_COPY_NAME|REWRITE_VAR_COPY_VALUE|((insert)? REWRITE_VAR_INSERT : 0))
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLDocumentParser.cpp325 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willWriteHTML(document(), lineNumber().zeroBasedInt()); local
331 InspectorInstrumentation::didWriteHTML(cookie, lineNumber().zeroBasedInt());
469 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willWriteHTML(document(), lineNumber().zeroBasedInt()); local
485 InspectorInstrumentation::didWriteHTML(cookie, lineNumber().zeroBasedInt());
531 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willWriteHTML(document(), m_input.current().currentLine().zeroBasedInt()); local
574 InspectorInstrumentation::didWriteHTML(cookie, m_input.current().currentLine().zeroBasedInt());
622 void HTMLDocumentParser::insert(const SegmentedString& source) function in class:WebCore::HTMLDocumentParser
961 parser->insert(source); // Use insert() so that the parser will not yield.
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dpcvs.el66 ;; - automatically cvs-mode-insert files from find-file-hook
125 (require 'ewoc) ;Ewoc was once cookie
138 ;;"Handle for the cookie structure that is displayed in the *cvs* buffer.")
178 (insert-file-contents cvs-cvsrc-file)
456 (insert "Repository : " (directory-file-name (cvs-get-cvsroot))
512 (unless (bolp) (let ((inhibit-read-only t)) (insert "\n")))
522 (insert "pcl-cvs: descending directory " dir "\n"))
1078 for a lock file. If so, it inserts a message cookie in the *cvs* buffer."
1085 (insert string)
1234 t)) ;Tell cookie t
[all...]
H A Dldefs-boot.el107 Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
1156 Letters no longer insert themselves.
1546 ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert)
1550 (autoload (quote auto-insert) "autoinsert" "\
1551 Insert default contents into new files if variable `auto-insert' is non-nil.
1552 Matches the visited file name against the elements of `auto-insert-alist'.
1556 (autoload (quote define-auto-insert) "autoinsert" "\
1557 Associate CONDITION with (additional) ACTION in `auto-insert
[all...]
/macosx-10.9.5/emacs-92/emacs/etc/
H A Dorgcard.tex303 \key{insert new heading/item at current level}{M-RET}
304 \key{insert new TODO entry/checkbox item}{M-S-RET}
344 %\metax{insert a new Org-mode table}{M-x org-table-create}
366 \key{insert new column to left of cursor position}{M-S-RIGHT}
371 \key{insert new row above the current row}{M-S-DOWN}
372 \key{insert hline below (\kbd{C-u} : above) current row}{C-c -}
420 \key{insert a new \kbd{table.el} table}{C-c ~}
427 \key{insert a link (TAB completes stored links)}{C-c C-l}
428 \key{insert file link with file name completion}{C-u C-c C-l}
510 \key{remove priority cookie fro
[all...]
/macosx-10.9.5/vim-53/src/
H A Deval.c941 func_name(cookie)
942 void *cookie;
944 return ((funccall_T *)cookie)->func->uf_name;
948 * Return the address holding the next breakpoint line for a funccall cookie.
951 func_breakpoint(cookie)
952 void *cookie;
954 return &((funccall_T *)cookie)->breakpoint;
958 * Return the address holding the debug tick for a funccall cookie.
961 func_dbg_tick(cookie)
962 void *cookie;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleResolver.cpp1081 list.insert(keyframeValue);
1095 list.insert(keyframeValue);
1107 list.insert(keyframeValue);
1646 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willProcessRule(document(), rule, this); local
1696 InspectorInstrumentation::didProcessRule(cookie);
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dcf.vim50 syn keyword cfScope contained cgi cffile cookie request caller this thistag
152 syn keyword cfArg contained input insert insertbutton interval isolation italic item
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.cpp1383 // FIXME: This should probably use insert(), but that's (intentionally)
1769 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRecalculateStyle(this); local
1837 InspectorInstrumentation::didRecalculateStyle(cookie);
2555 m_parser->insert(text);
2845 } else if (equalIgnoringCase(equiv, "set-cookie")) {
3729 String Document::cookie(ExceptionCode& ec) const function in class:WebCore::Document
/macosx-10.9.5/ncurses-42/ncurses/misc/
H A Dterminfo.src161 # -mc Magic-cookie. Some terminals (notably older Wyses) can
162 # only support one attribute without magic-cookie lossage.
594 # insert/delete line/char is there, so it won't work with
858 # <ich1> is not included because hurd has insert mode.
2421 # page memory and rectangle checksums, insert/delete column, reception
3783 # The insert/delete/home/end keys do not respond to modifiers because mlterm
3918 # insert), unless private mode 35 is set.
4707 sun-il|Sun Microsystems console with working insert-line,
4753 sun-e|sun-nic|sune|Sun Microsystems Workstation without insert character,
5180 # mir [move in insert mod
[all...]

Completed in 593 milliseconds