Searched refs:marker (Results 1 - 25 of 228) sorted by relevance

12345678910

/macosx-10.10/emacs-93/emacs/src/
H A Dmarker.c55 and everywhere there is a marker. So we find the one of these places
200 cache the correspondence by creating a marker here.
204 Lisp_Object marker, buffer;
205 marker = Fmake_marker ();
207 set_marker_both (marker, buffer, best_below, best_below_byte);
231 cache the correspondence by creating a marker here.
235 Lisp_Object marker, buffer;
236 marker = Fmake_marker ();
238 set_marker_both (marker, buffer, best_above, best_above_byte);
385 cache the correspondence by creating a marker her
203 Lisp_Object marker, buffer; local
234 Lisp_Object marker, buffer; local
389 Lisp_Object marker, buffer; local
422 Lisp_Object marker, buffer; local
448 register Lisp_Object marker; variable
451 CHECK_MARKER (marker); variable
466 Lisp_Object marker; variable
468 CHECK_MARKER (marker); variable
482 Lisp_Object marker, position, buffer; variable
488 CHECK_MARKER (marker); variable
835 register Lisp_Object marker, type; variable
853 register Lisp_Object marker; variable
855 CHECK_MARKER (marker); variable
865 Lisp_Object marker, type; variable
867 CHECK_MARKER (marker); variable
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DRenderedDocumentMarker.h37 explicit RenderedDocumentMarker(const DocumentMarker& marker) argument
38 : DocumentMarker(marker), m_renderedRect(invalidMarkerRect())
65 inline RenderedDocumentMarker* toRenderedDocumentMarker(DocumentMarker* marker) argument
67 return static_cast<RenderedDocumentMarker*>(marker);
H A DDocumentMarkerController.cpp130 DocumentMarker marker(DocumentMarker::DictationPhraseWithAlternatives, textPiece->startOffset(), textPiece->endOffset(), "", Vector<String>(numberOfAlternatives), RetainPtr<id>());
132 marker.setAlternative(interpretations[i + 1], i);
133 addMarker(textPiece->startContainer(), marker);
171 // FIXME: Factor the marker painting code out of InlineTextBox and teach simple line layout to use it.
191 DocumentMarker marker = list->at(i); local
192 if (marker.startOffset() > newMarker.startOffset())
201 // Iterate over all markers whose start offset is less than or equal to the new marker's.
202 // If one of them is of the same type as the new marker and touches it or intersects with it
203 // (there is at most one), remove it and adjust the new marker's start offset to encompass it.
205 DocumentMarker marker local
220 DocumentMarker marker = list->at(j); local
260 DocumentMarker marker = list->at(i); local
302 DocumentMarker marker = list->at(i); local
365 RenderedDocumentMarker& marker = list->at(markerIndex); local
411 DocumentMarker* marker = *it; local
439 const RenderedDocumentMarker& marker = list->at(markerIndex); local
496 DocumentMarker marker = list->at(i); local
540 DocumentMarker marker = list->at(i); local
583 RenderedDocumentMarker& marker = list->at(i); local
650 DocumentMarker& marker = list->at(i); local
685 DocumentMarker* marker = *it; local
716 DocumentMarker& marker = list->at(i); local
743 const DocumentMarker& marker = list->at(markerIndex); local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dbase64.c106 int marker = 0; local
112 marker++;
113 else if (marker > 0)
118 if (marker > 2)
120 return (marker << 24) | val;
132 unsigned int marker = (val >> 24) & 0xff; local
136 if (marker < 2)
138 if (marker < 1)
/macosx-10.10/BerkeleyDB-21/db/test/
H A Drep078script.tcl57 # Create a marker file. Don't put anything in it yet. The parent
59 # marker.
62 puts "Create marker file"
65 set marker \
66 [eval "berkdb_open -create -btree -auto_commit -env $markerenv marker.db"]
86 [$marker put CHILD1 $key] 0
90 while { [llength [$marker get PARENT1]] == 0 } {
99 [$marker put CHILD2 $key] 0
103 while { [llength [$marker get PARENT2]] == 0 } {
115 [$marker pu
[all...]
H A Drep042script.tcl59 # Create marker file
60 set marker [open $masterdir/marker.db w]
61 close $marker
H A Drep035script.tcl49 # a marker file to indicate completion.
52 while { [file exists $testdir/marker.db] == 0 } {
58 while { [file exists $testdir/marker.db] == 0 } {
64 while { [file exists $testdir/marker.db] == 0 } {
70 while { [file exists $testdir/marker.db] == 0 } {
H A Drep018script.tcl71 set marker \
72 [eval "berkdb_open -create -btree -auto_commit -env $markerenv marker.db"]
74 [$marker put CHILDREADY [timestamp -r]] 0
81 [$marker put CHILDDONE [timestamp -r]] 0
85 while { [llength [$marker get PARENTDONE]] == 0 } {
95 error_check_good marker_db_close [$marker close] 0
H A Drep018.tcl125 if { [file exists $testdir/marker.db] == 0 } {
131 set marker [berkdb_open -unknown -env $markerenv \
132 -auto_commit marker.db]
133 while { [llength [$marker get CHILDREADY]] == 0 } {
148 [$marker put PARENTREMOVE [timestamp -r]] 0
151 [$marker put PARENTDONE [timestamp -r]] 0
156 # Check marker file for correct timestamp ordering.
157 set ret [$marker get CHILDDONE]
159 set ret [$marker get PARENTDONE]
166 error_check_good marker_db_close [$marker clos
[all...]
H A Drep048script.tcl53 # Create marker file
54 set marker [open $masterdir/marker.file w]
55 close $marker
H A Drep078.tcl196 if { [file exists $testdir/marker.db] == 0 } {
202 set marker [berkdb_open -unknown -env $markerenv \
203 -auto_commit marker.db]
204 set kd [$marker get CHILD1]
208 set kd [$marker get CHILD1]
255 [$marker put PARENT1 [timestamp -r]] 0
257 set kd [$marker get CHILD2]
261 set kd [$marker get CHILD2]
276 [$marker put PARENT2 [timestamp -r]] 0
278 set kd [$marker ge
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorColorEditingController.js26 WebInspector.CodeMirrorColorEditingController = function(codeMirror, marker)
28 WebInspector.CodeMirrorEditingController.call(this, codeMirror, marker);
H A DCodeMirrorEditingController.js26 WebInspector.CodeMirrorEditingController = function(codeMirror, marker)
31 this._marker = marker;
34 this._range = marker.range;
48 get marker()
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djdmarker.c11 * suspension: if not all of the data for a marker is available,
13 * the marker.
21 typedef enum { /* JPEG marker codes */
94 /* Application-overridable marker processing methods */
98 /* Limit on marker data length to save for each marker type */
102 /* Status of COM/APPn marker saving */
103 jpeg_saved_marker_ptr cur_marker; /* NULL if not processing a marker */
104 unsigned int bytes_read; /* data bytes read so far in marker */
169 * Entry condition: JPEG marker itsel
779 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
1240 int marker = cinfo->unread_marker; local
1290 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
1310 my_marker_ptr marker; local
1349 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
1398 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
[all...]
H A Djcapimin.c185 (*cinfo->marker->write_file_trailer) (cinfo);
193 * Write a special marker.
200 jpeg_write_marker (j_compress_ptr cinfo, int marker, argument
211 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
212 write_marker_byte = cinfo->marker->write_marker_byte; /* copy for speed */
222 jpeg_write_m_header (j_compress_ptr cinfo, int marker, unsigned int datalen) argument
230 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
236 (*cinfo->marker
[all...]
H A Dwrjpgcom.c9 * user-supplied text as a COM (comment) marker in a JFIF file.
135 write_marker (int marker) argument
138 PUTBYTE(marker);
152 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
153 * code byte (which is not an FF). Here are the marker codes of interest
177 * Find the next JPEG marker and return its marker code.
182 * NB: this routine must not be used after seeing SOS marker, since it will
198 /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs
214 * Read the initial marker, whic
291 int marker; local
421 int marker; local
[all...]
/macosx-10.10/libarchive-30/libarchive/libarchive/test/
H A Dtest_acl_freebsd.c133 int *marker; local
142 marker = malloc(sizeof(marker[0]) * n);
144 marker[i] = i;
156 if (acl_match(acl_entry, &myacls[marker[i]])) {
158 marker[i] = marker[n - 1];
173 myacls[marker[i]].type, myacls[marker[i]].permset,
174 myacls[marker[
[all...]
H A Dtest_acl_basic.c123 int *marker = malloc(sizeof(marker[0]) * n); local
131 marker[i] = i;
137 if (acl_match(&acls[marker[i]], type, permset,
140 marker[i] = marker[n - 1];
176 acls[marker[0]].type, acls[marker[0]].permset,
177 acls[marker[0]].tag, acls[marker[
[all...]
H A Dtest_acl_pax.c345 int *marker = malloc(sizeof(marker[0]) * n); local
353 marker[i] = i;
359 if (acl_match(&acls[marker[i]], type, permset,
362 marker[i] = marker[n - 1];
398 acls[marker[0]].type, acls[marker[0]].permset,
399 acls[marker[0]].tag, acls[marker[
[all...]
/macosx-10.10/ruby-106/ruby/tool/
H A Dstrip-rdoc.rb5 marker, comment = $1, $2
20 "/*#{marker}#{doxybody}*/"
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Ddb_iterator.c113 char *marker = strchr(result, NCURSES_PATHSEP); local
116 * Put a null on the marker if a separator was found. Set the offset
117 * to the next position after the marker so we can call this function
120 if (marker == 0) {
122 marker = result + *offset;
124 *marker++ = 0;
125 *offset = marker - ThisDbList;
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp130 static bool checkExifHeader(jpeg_saved_marker_ptr marker, bool& isBigEndian, unsigned& ifdOffset) argument
139 if (!(marker->marker == exifMarker
140 && marker->data_length >= exifHeaderSize
141 && marker->data[0] == 'E'
142 && marker->data[1] == 'x'
143 && marker->data[2] == 'i'
144 && marker->data[3] == 'f'
145 && marker->data[4] == '\0'
147 && ((marker
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTimelineRuler.css86 .timeline-ruler > .markers > .marker {
98 .timeline-ruler > .markers > .marker.current-time {
103 .timeline-ruler > .markers > .marker.current-time::before {
117 .timeline-ruler > .markers > .marker.load-event {
121 .timeline-ruler > .markers > .marker.dom-content-event {
125 .timeline-ruler > .markers > .marker.timestamp {
/macosx-10.10/OpenSSH-189/openssh/
H A Dhostfile.h30 HostkeyMarker marker; member in struct:hostkey_entry
/macosx-10.10/emacs-93/emacs/lisp/mh-e/
H A Dmh-xface.el320 (defvar mh-x-image-marker nil)
328 (marker (set-marker (make-marker) (point))))
329 (set (make-local-variable 'mh-x-image-marker) marker)
332 (mh-x-image-display cache-filename marker))
337 (set-marker marker nil))
340 (mh-x-image-url-fetch-image url cache-filename marker
[all...]

Completed in 196 milliseconds

12345678910