HomeSort by relevance Sort by last modified time
    Searched full:ending (Results 1 - 25 of 1014) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseFirstEOL.pl 34 $title = "parseFirstEOL: Line without a line ending character";
35 ok(!defined(firstEOLInString("This line doesn't have a line ending character.")), $title);
38 $title = "parseFirstEOL: Line with Windows line ending.";
39 ok(firstEOLInString("This line ends with a Windows line ending.\r\n") eq "\r\n", $title);
42 $title = "parseFirstEOL: Line with Unix line ending.";
43 ok(firstEOLInString("This line ends with a Unix line ending.\n") eq "\n", $title);
46 $title = "parseFirstEOL: Line with Mac line ending.";
47 ok(firstEOLInString("This line ends with a Mac line ending.\r") eq "\r", $title);
50 $title = "parseFirstEOL: Line with Mac line ending followed by line without a line ending."
    [all...]
removeEOL.pl 43 $title = "removeEOL: Line with Windows line ending.";
44 ok(removeEOL("This line ends with a Windows line ending.\r\n") eq "This line ends with a Windows line ending.", $title);
47 $title = "removeEOL: Line with Unix line ending.";
48 ok(removeEOL("This line ends with a Unix line ending.\n") eq "This line ends with a Unix line ending.", $title);
51 $title = "removeEOL: Line with Mac line ending.";
52 ok(removeEOL("This line ends with a Mac line ending.\r") eq "This line ends with a Mac line ending.", $title);
  /external/llvm/test/CodeGen/AArch64/
inline-asm-constraints-badK.ll 4 ; 32-bit bitpattern ending in 1101 can't be produced.
inline-asm-constraints-badK2.ll 4 ; 32-bit bitpattern ending in 1101 can't be produced.
inline-asm-constraints-badL.ll 4 ; 32-bit bitpattern ending in 1101 can't be produced.
  /external/markdown/MarkdownTest/Tests_2007/
Links, shortcut references.html 7 break</a> with a line-ending space.</p>
Links, shortcut references.text 11 break] with a line-ending space.
Links, reference style.text 68 breaks] across lines, but with a line-ending space.
Links, reference style.html 52 breaks</a> across lines, but with a line-ending space.</p>
  /external/webkit/Source/WebCore/manual-tests/
open-url-undefined.html 8 bar of the new window should be empty. If it contains a URL (ending with &ldquo;undefined&rdquo;), WebKit failed the test.
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/
StrictLineReaderTest.java 64 "buffers and ending with LF at th" +
66 "pad\nLine ending with CRLF split" +
70 "line ending with CRLF\r\n" +
71 "this is a long line with embedded CR \r ending with CRLF and having more than " +
  /libcore/luni/src/test/java/libcore/io/
StrictLineReaderTest.java 71 "buffers and ending with LF at th" +
73 "pad\nLine ending with CRLF split" +
77 "line ending with CRLF\r\n" +
78 "this is a long line with embedded CR \r ending with CRLF and having more than " +
  /external/replicaisland/src/com/replica/replicaisland/
EventRecorder.java 45 synchronized void setLastEnding(int ending) {
46 mLastEnding = ending;
  /development/tools/line_endings/
line_endings.c 28 enum { UNIX, DOS } ending; local
36 ending = UNIX;
39 ending = DOS;
81 if (ending == UNIX) {
  /external/llvm/lib/DebugInfo/
DWARFDebugRangeList.h 28 // An ending address offset. This address offset again has the size of
31 // address past the end of the address range. The ending address must
36 // and a 0 for the ending address offset.
44 // use in interpreting the beginning and ending address offsets of
  /frameworks/base/sax/java/android/sax/
ElementListener.java 20 * Listens for the beginning and ending of elements.
TextElementListener.java 20 * Listens for the beginning and ending of text elements.
  /external/srec/portable/src/
LCHAR.c 28 size_t beginning, ending, len; local
35 for (ending = len - 1; ending > beginning && LISSPACE(text[ending]); --ending);
37 if (beginning > 0 && beginning <= ending)
38 LMEMMOVE(text, text + beginning, ending - beginning + 1);
39 text[ending-beginning+1] = '\0';
PFileSystem.c 68 const LCHAR* ending; local
86 ending = LSTRCHR(beginning, L('/'));
87 if (ending == NULL)
88 ending = beginning + LSTRLEN(beginning);
89 value = MALLOC(sizeof(LCHAR) * (ending - beginning + 1 + 1), MTAG);
96 LSTRNCPY(value, beginning, ending - beginning + 1);
97 value[ending-beginning+1] = L('\0');
109 if (*ending == 0)
111 beginning = ending + 1;
  /external/chromium/chrome/browser/ui/cocoa/
nsimage_cache_unittest.mm 69 << "Image ending in 'Template' should be marked as being a template";
73 << "Image not ending in 'Template' should not be marked as being a "
view_resizer.h 22 // Optional method called when an animation is beginning or ending. Resize
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLComponent.h 40 // Helper that returns a component created with the given begin and ending
41 // points. The ending point is non-inclusive.
  /dalvik/dx/tests/086-ssa-edge-split/
Blort.java 56 * Presently, any basic block ending in an instruction with
  /external/iptables/extensions/
libip6t_REJECT.man 4 so it is a terminating TARGET, ending rule traversal.
libipt_REJECT.man 4 so it is a terminating TARGET, ending rule traversal.

Completed in 726 milliseconds

1 2 3 4 5 6 7 8 91011>>