Searched +refs:diff +refs:find +refs:text (Results 1 - 21 of 21) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGInlineText.cpp80 void RenderSVGInlineText::setRenderedText(const String& text) argument
82 RenderText::setRenderedText(text);
87 void RenderSVGInlineText::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
89 RenderText::styleDidChange(diff, oldStyle);
104 if (diff != StyleDifferenceLayout)
107 // The text metrics may be influenced by style changes.
158 // Each <textPath> element starts a new text chunk, regardless of any x/y values.
162 const SVGCharacterDataMap::const_iterator it = m_layoutAttributes.characterDataMap().find(static_cast<unsigned>(position + 1));
179 // Map local point to absolute point, as the character origins stored in the text fragments use absolute coordinates.
/macosx-10.10/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Dcodemirror.js7 // You can find some technical background for some of the code below
154 // A visibility: hidden element used to find the size of things.
292 return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th;
352 var len = line.text.length, merged, cur = line;
354 var found = merged.find(0, true);
360 var found = merged.find(0, true);
361 len -= cur.text.length - found.from.ch;
363 len += cur.text.length - found.to.ch;
540 // information in display.view to find out which nodes are no longer
656 var width = measureChar(cm, display.maxLine, display.maxLine.text
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcodemirror.js7 // You can find some technical background for some of the code below
154 // A visibility: hidden element used to find the size of things.
292 return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th;
352 var len = line.text.length, merged, cur = line;
354 var found = merged.find(0, true);
360 var found = merged.find(0, true);
361 len -= cur.text.length - found.from.ch;
363 len += cur.text.length - found.to.ch;
540 // information in display.view to find out which nodes are no longer
656 var width = measureChar(cm, display.maxLine, display.maxLine.text
[all...]
/macosx-10.10/vim-55/runtime/syntax/
H A D2html.vim118 function! s:HtmlFormat(text, style_name, diff_style_name)
120 let formatted = strtrans(a:text)
122 " separate the two classes by a space to apply them both if there is a diff
140 " Add normal groups to the beginning so diff groups can override them.
150 " Add the diff highlight class to class list if used and it's not there yet.
151 " Add diff groups to the end so they override the other highlighting.
179 if synIDattr(a:id, "underline") | let a = a . "text-decoration: underline; " | endif
298 call add(s:lines, "<meta http-equiv=\"content-type\" content=\"text/html; charset=" . s:settings.encoding . '"' . s:tag_close)
315 \ "<style type=\"text/css\">",
317 \ ".FoldColumn { text
[all...]
H A Dfoxpro.vim132 syn match foxproFunc "\<diff\%[erence]\>\s*("me=e-1
407 syn match foxproCmd "^\s*\<find\>"
603 syn match foxproCmd "^\s*\<set\>\s*\<text\%[merge]\>"
604 syn match foxproCmd "^\s*\<set\>\s*\<text\%[merge]\>\s*\<deli\%[miters]\>"
652 syn match foxproEnBlk "^\s*\<text\>"
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DDOMPatchSupport.cpp54 #include <wtf/text/Base64.h>
55 #include <wtf/text/CString.h>
146 if (child->hasTagName(headTag) && !child->firstChild() && markupCopy.find("</head>") == notFound)
148 if (child->hasTagName(bodyTag) && !child->firstChild() && markupCopy.find("</body>") == notFound)
211 DOMPatchSupport::diff(const Vector<std::unique_ptr<Digest>>& oldList, const Vector<std::unique_ptr<Digest>>& newList) function in class:WebCore::DOMPatchSupport
260 DiffTable::iterator oldIt = oldTable.find(newIt->key);
300 std::pair<ResultMap, ResultMap> resultMaps = diff(oldList, newList);
470 UnusedNodesMap::iterator it = m_unusedNodesMap.find(oldDigest->m_sha1);
/macosx-10.10/emacs-93/emacs/etc/
H A Dfr-drdref.tex39 % but couldn't find anything on the 'net.
180 % title - page title. Argument is title text.
191 % indented, but running text, typically used as headings to group
208 % beginexample...endexample - surrounds literal text, such a code example.
339 \key{modifier les marques par un caract\`ere diff\'erent}{* c}
386 \key{placer un flag sur les diff\'erents fichiers interm\'ediaires}{\&}
407 find-names-dired}
408 \metax{fichier(s) dired contenant un motif}{M-x find-grep-dired}
409 \metax{fichier(s) dired bas\'es sur ce que produit \kbd{find}}{M-x find
[all...]
/macosx-10.10/curl-83.1.2/curl/packages/vms/
H A Dbuild_vms.com140 $! Adjust to find and use ZLIB from the Jean-Francois
180 $! If we can find this file using the default directory
392 $ file = "[...]*curl*.pcsi$text"
394 $ file = "[...]*curl_d*.pcsi$text"
725 $! The logical aname used to find the shared image should just be used
746 $ write sys$output "Can't find OpenSSL ''msg':"
799 $ write sys$output "Can not find [.lib]curl_config*.*in file!"
1006 $! Do a diff of the file specified in P1 with that in P2. If different
1016 $ if (status .ne. %X006C8009) ! if status is not "no diff"
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderBlock.cpp204 TrackedContainerMap::iterator it = containerMap->find(*descendant);
260 void RenderBlock::styleWillChange(StyleDifference diff, const RenderStyle& newStyle) argument
266 if (oldStyle && parent() && diff == StyleDifferenceLayout && oldStyle->position() != newStyle.position()) {
288 RenderBox::styleWillChange(diff, newStyle);
305 void RenderBlock::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
307 RenderBox::styleDidChange(diff, oldStyle);
326 m_hasBorderOrPaddingLogicalWidthChanged = oldStyle && diff == StyleDifferenceLayout && needsLayout() && borderOrPaddingLogicalWidthChanged(oldStyle, &newStyle);
587 // Beginning at |start| we find the largest contiguous run of inlines that
2238 TrackedDescendantsMap::iterator descendantsMapIterator = descendantsMap->find(container);
2645 // If we can't find a
4155 constructTextRun(RenderObject* context, const Font& font, const RenderText* text, const RenderStyle& style, TextRun::ExpansionBehavior expansion) argument
4162 constructTextRun(RenderObject* context, const Font& font, const RenderText* text, unsigned offset, unsigned length, const RenderStyle& style, TextRun::ExpansionBehavior expansion) argument
[all...]
H A DRenderBlockFlow.cpp226 // See <rdar://problem/8049753>, where float property is applied on a text node in a SVG.
600 // Fieldsets need to find their legend and position it inside the border of the object.
601 // The legend then gets skipped during normal layout. The same is true for ruby text.
1009 // Once we find a child with discardMarginBefore all the margins collapsing with us must also discard.
1930 void RenderBlockFlow::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
1932 RenderBlock::styleDidChange(diff, oldStyle);
1935 // blocks, then we need to find the top most parent containing that overhanging float and
1939 if (diff == StyleDifferenceLayout && s_canPropagateFloatIntoSibling && !canPropagateFloatIntoSibling && hasOverhangingFloats()) {
1964 if (diff >= StyleDifferenceRepaint) {
1980 void RenderBlockFlow::styleWillChange(StyleDifference diff, cons argument
3586 RenderText* text = toRenderText(descendent); local
[all...]
/macosx-10.10/vim-55/runtime/
H A Doptwin.vim79 " find the window in which the option applies
196 fun! <SID>Header(text)
197 let line = s:idx . " " . a:text
221 " The text should be sufficient to know what the option is used for.
230 call append("$", "paste\tpaste mode, insert typed text literally")
321 call <SID>Header("displaying text")
379 call append("$", "conceallevel\tcontrols whether concealable text is hidden")
382 call append("$", "concealcursor\tmodes in which text in the cursor line can be concealed")
548 call append("$", "icon\tset the text of the icon for this window")
551 call append("$", "iconstring\twhen not empty, text fo
[all...]
H A Dmenu.vim21 " Try to find a menu translation file for the current language.
55 " (e.g. find menu_de_de.iso_8859-1.vim if s:lang == de_DE).
86 let g:menutrans_help_dialog = "Enter a command or word to find help on:\n\nPrepend i_ for Input mode commands (e.g.: i_CTRL-X)\nPrepend c_ for command-line editing commands (e.g.: c_<Del>)\nPrepend ' for an option name (e.g.: 'shiftwidth')"
113 if has("diff")
211 " Fix text in nameless register to be used with :promptfind.
307 let g:menutrans_textwidth_dialog = "Enter new text width (0 to disable formatting): "
453 echomsg "Could not find other spell files"
483 an 40.340.210 &Tools.&Folding.Fold\ Met&hod.&Diff :set fdm=diff<CR>
501 if has("diff")
H A Dfiletype.vim586 au BufNewFile,BufRead *.diff,*.rej,*.patch setf diff
1297 " recognize Prolog by specific text in the first non-empty line
1658 " Sendmail .mc files are actually m4. Could also be MS Message text file.
1663 " MS message text files use ';', Sendmail files use '#' or 'dnl'
1670 setf msmessages " MS Message text file
2037 " Save position, go to the top of the file, find first non-comment line.
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/
H A DPluginView.cpp73 #include <wtf/text/StringBuilder.h>
1160 // First, try to find a target frame.
1163 // We did not find a target frame. Ask our frame to load the page. This may or may not create a popup window.
1203 if (frame->tree().find(request->target()) != frame) {
1702 float diff = samples[i - 1][j] + samples[i + 1][j] + samples[i][j - 1] + samples[i][j + 1] - 4 * samples[i][j]; local
1703 accumScore += diff * diff;
1803 // This paint behavior is used when drawing the find indicator and there's no need to
1804 // snapshot plug-ins, because they can never be painted as part of the find indicator.
/macosx-10.10/CPANInternal-159.1/Perl-Tidy-20121207/lib/Perl/
H A DTidy.pm760 "skipping file: $input_file: Non-text (override with -f)\n";
1405 "To find error messages search for 'WARNING' with your editor\n");
1619 $add_option->( 'closing-side-comment-maximum-text', 'csct', '=i' );
1831 closing-side-comment-maximum-text=20
2226 Warn "cannot find file given with -pro=$config_file: $!\n";
2978 # Couldn't find a config file
3165 Did not see ending quote character <$quote_char> in this text:
3226 Did not see ending quote character <$quote_char> in this text:
3464 -csct=n maximum number of columns of appended text, default n=20
3474 Delete selected text
[all...]
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Didlwave.el134 ;; replaced by spaces in the text surrounding the paragraph, which
404 '(find-file save-buffer kill-buffer compile-buffer)
410 find-file Add info for new IDLWAVE buffers.
419 (const :tag "When visiting a file" find-file)
437 variable can be set to specify the paths where IDLWAVE can find PRO
449 IDLWAVE uses this to find out which of the library routines belong to
653 make this less interruptive, IDLWAVE can store the class as a text
685 "*Non-nil means, store class of a method call as text property on `->'.
691 When you specify a class, this information can be stored as a text
711 When IDLWAVE stores a class name as text propert
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/
H A Dconfigure107 # We did not find ourselves, most probably we were run as `sh COMMAND'
113 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
336 # Append the text in VALUE to the end of the definition contained in VAR. Take
456 # (the dirname of $[0] is not the place where we might find the
1328 as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
1376 --srcdir=DIR find the sources in DIR [configure dir or \`..']
1526 it to find libraries and programs with nonstandard names/locations.
2136 # Tries to find the compile-time value of EXPR in a program that includes
2673 as_fn_error "cannot find install-sh, install.sh, or shtool in config \"$srcdir\"/config" "$LINENO" 5
4189 # If we don't find a
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/libtiff/
H A Dconfigure.lineno107 # We did not find ourselves, most probably we were run as `sh COMMAND'
113 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
336 # Append the text in VALUE to the end of the definition contained in VAR. Take
456 # (the dirname of $[0] is not the place where we might find the
1328 as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
1376 --srcdir=DIR find the sources in DIR [configure dir or \`..']
1526 it to find libraries and programs with nonstandard names/locations.
2136 # Tries to find the compile-time value of EXPR in a program that includes
2673 as_fn_error "cannot find install-sh, install.sh, or shtool in config \"$srcdir\"/config" "2673" 5
4189 # If we don't find a
[all...]
/macosx-10.10/ntp-92/sntp/
H A Dconfigure105 # We did not find ourselves, most probably we were run as `sh COMMAND'
111 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
325 # Append the text in VALUE to the end of the definition contained in VAR. Take
445 # (the dirname of $[0] is not the place where we might find the
570 # find a string as large as possible, as long as the shell can cope with it
607 # We didn't find a better echo, so look for alternatives.
1392 as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
1440 --srcdir=DIR find the sources in DIR [configure dir or \`..']
1539 it to find libraries and programs with nonstandard names/locations.
1955 # Tries to find th
[all...]
/macosx-10.10/rsync-45/rsync/
H A Dconfigure80 # We did not find ourselves, most probably we were run as `sh COMMAND'
86 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
452 # (the dirname of $[0] is not the place where we might find the
1151 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
1201 --srcdir=DIR find the sources in DIR [configure dir or \`..']
1284 it to find libraries and programs with nonstandard names/locations.
1740 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
1741 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
3180 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
3262 diff "conftes
[all...]
/macosx-10.10/gnutar-453/gnutar/
H A Dconfigure82 # We did not find ourselves, most probably we were run as `sh COMMAND'
88 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
454 # (the dirname of $[0] is not the place where we might find the
1396 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
1446 --srcdir=DIR find the sources in DIR [configure dir or \`..']
1559 it to find libraries and programs with nonstandard names/locations.
2082 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in build-aux \"$srcdir\"/build-aux" >&5
2083 echo "$as_me: error: cannot find install-sh or install.sh in build-aux \"$srcdir\"/build-aux" >&2;}
2583 am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
2584 am__tar_='find "
[all...]

Completed in 285 milliseconds