HomeSort by relevance Sort by last modified time
    Searched full:newline (Results 201 - 225 of 1219) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategy.java 57 * <li> Newline handling. In addition to indenting, it can also adjust the following text
58 * appropriately when a newline is inserted. For example, it will reformat
181 // newline on a blank line following say an element) then figure
182 // out the indentation as if the newline had been pressed at the
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlFormatStyle.java 27 * newline between successive elements, whereas in a manifest file there is typically only
  /system/core/include/android/
log.h 52 * Note that a newline character ("\n") will be appended automatically to your
  /system/core/sh/
mktokens 42 TNL 0 newline
syntax.h 40 #define CNL 1 /* newline character */
  /external/webkit/Source/WebCore/editing/
CompositeEditCommand.cpp 306 size_t newline; local
308 newline = text.find('\n', offset);
309 if (newline != offset) {
312 int substringLength = newline == notFound ? length - offset : newline - offset;
315 if (newline != notFound)
318 offset = newline + 1;
319 } while (newline != notFound && offset != length);
678 // We are certain that the position is at a line break, but it may be a br or a preserved newline.
    [all...]
TypingCommand.cpp 379 size_t newline; local
380 while ((newline = text.find('\n', offset)) != notFound) {
381 if (newline != offset)
382 insertTextRunWithoutNewlines(text.substring(offset, newline - offset), false);
384 offset = newline + 1;
437 // Breaking the blockquote would also break apart the table, which is unecessary when inserting a newline
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedWriterTest.java 131 * @tests java.io.BufferedWriter#newLine()
136 bw.newLine();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
DOM3Serializer.java 167 * @param newLine The end-of-line sequence of characters to be used during serialization
169 public void setNewLine(char[] newLine);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/
OpenFlags.java 134 * convert it to the canonical newline convention in use.
135 * (See Determining Server Newline Convention in section 5.3 in the
  /external/grub/docs/
kernel.c 222 newline:
235 goto newline;
kernel.c.texi 222 newline:
235 goto newline;
  /external/jpeg/
rdcolmap.c 123 /* A comment/newline sequence is returned as a newline */