HomeSort by relevance Sort by last modified time
    Searched full:trailing (Results 126 - 150 of 1030) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/build/platforms/android-5/arch-x86/usr/include/net/
if_dl.h 65 u_char sdl_nlen; /* interface name length, no trailing 0 reqd. */
  /ndk/build/platforms/android-8/arch-arm/usr/include/net/
if_dl.h 65 u_char sdl_nlen; /* interface name length, no trailing 0 reqd. */
  /ndk/build/platforms/android-8/arch-x86/usr/include/net/
if_dl.h 65 u_char sdl_nlen; /* interface name length, no trailing 0 reqd. */
  /system/core/sh/bltin/
echo.1 76 last argument to suppress the trailing newline that
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/
parse.c 938 * will be marked as a trailing context
949 /* We need to treat this as variable trailing
959 "trailing context made variable due to preceding '|' action" );
967 { /* variable trailing context rule */
969 * accepting "head" part of a trailing
991 { synerr( "trailing context used twice" ); }
1005 synerr( "trailing context used twice" );
1015 "trailing context made variable due to preceding '|' action" );
1069 * reduction will occur before the trailing
1074 synerr( "trailing context used twice" )
    [all...]
  /external/bluetooth/glib/glib/
gstrfuncs.h 154 /* removes trailing spaces */
156 /* removes leading & trailing spaces */
gfileutils.c     [all...]
  /external/qemu/android/
config.c 199 * from trailing whitespace.
214 /* strip trailing whitespace */
  /external/svox/pico/lib/
picosa.h 77 CMD(...FLUSH...) already converted to PUNC(...FLUSH...) and trailing
97 together with the trailing PUNC item results in:
  /external/icu4c/i18n/
digitlst.cpp 334 // Trim trailing zeros after the decimal point. This does not change
389 // Trim trailing zeros after the decimal point. This does not change
454 // Don't copy trailing zeros
538 // Eliminate trailing zeros.
581 // Eliminate trailing zeros.
686 // finally, we trim off trailing zeros. we don't alter fDecimalAt,
regexcst.txt 84 # trailing quantifier - *, +, ?, *?, etc.
389 # any set or range like item where the trailing single '-' should
391 # A trailing "--" is still a difference operator.
  /external/webkit/WebKitTools/android/flex-2.5.4a/
dfa.c 80 * "dangerous" trailing context
87 * Trailing context is "dangerous" if both the head and the trailing
90 * which occur after the beginning of the trailing context.
93 * in the DFA state indicates the beginning of the trailing context or
130 _( "dangerous trailing context" ),
flexdef.h 175 /* Mask to mark a trailing context accepting number. */
178 /* Mask to mark the accepting number of the "head" of a trailing context
378 * having "reject" set for variable trailing context)
476 * of a normal rule, the leading state in a trailing context
479 * the trailing context), or a subsequent state in a trailing
482 * normal rule or one which has variable head & trailing
509 * and trailing context, false otherwise.
725 /* Check to see if NFA state set constitutes "dangerous" trailing context. */
934 * not trailing context associated) state
    [all...]
scan.l 189 /* Skip trailing whitespace. */
363 * otherwise we get variable trailing context, so
440 nmstr[yyleng - 2] = '\0'; /* chop trailing brace */
  /external/libxml2/
encoding.c 224 int trailing; local
239 if (d < 0x80) { c= d; trailing= 0; }
241 /* trailing byte in leading position */
245 } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; }
246 else if (d < 0xF0) { c= d & 0x0F; trailing= 2; }
247 else if (d < 0xF8) { c= d & 0x07; trailing= 3; }
255 if (inend - in < trailing) {
259 for ( ; trailing; trailing--) {
397 int trailing; local
576 int trailing; local
818 int trailing; local
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 87 // note, omits trailing paragraph char
545 private float getHorizontal(int offset, boolean trailing, boolean alt) {
548 return getHorizontal(offset, trailing, alt, line);
551 private float getHorizontal(int offset, boolean trailing, boolean alt,
565 dir, directions, trailing, alt, tab, tabs);
660 * trailing whitespace.
668 * trailing whitespace.
    [all...]
  /external/icu4c/common/
unormimp.h 155 * preceded by a 16-bit word with the leading and trailing cc
581 * value is used together with the following trailing surrogate
631 * leading and trailing cc's.
638 * - The 16-bit words with the leading and trailing cc's.
642 * Low byte: trailing cc==cc of the last code point in the decomposition string
692 * The trailing surrogate is stored in the third word.
700 * and the low byte contains the trailing cc of the character.
util.cpp 156 * will back up limit past trailing whitespace.
159 * leading or trailing whitespace, respectively
161 * leading or trailing whitespace, respectively
  /external/dnsmasq/contrib/dns-loc/
dnsmasq2-loc-rfc1876.patch 257 + while (!isspace(*cp)) /* if any trailing garbage */
298 + while (!isspace(*cp)) /* if any trailing garbage */
372 + /* if trailing garbage or m */
382 + while (!isspace(*cp) && (cp < maxcp))/*if trailing garbage or m*/
393 + while (!isspace(*cp) && (cp < maxcp))/*if trailing garbage or m*/
  /frameworks/base/awt/java/awt/font/
TextLayout.java 764 * between leading (advance) and trailing whitespace.
771 // Trailing whitespace _SHOULD_ be reordered (Unicode spec) to
772 // base direction, so it is also trailing
897 return breaker.isLTR() ? TextHitInfo.trailing(breaker.getCharCount() - 1) : TextHitInfo
902 return breaker.isLTR() ? TextHitInfo.leading(0) : TextHitInfo.trailing(breaker
  /bionic/libc/netbsd/net/
base64.c 290 * on a byte boundary, and/or with erroneous trailing characters.
305 /* Make sure there is another trailing = sign. */
309 /* Fall through to "single trailing =" case. */
  /external/guava/src/com/google/common/base/
Splitter.java 81 * similar JDK methods; for instance, it does not silently discard trailing
295 * automatically removes leading and trailing {@linkplain
309 * removes all leading or trailing characters matching the given {@code
  /external/guava/src/com/google/common/io/
CharStreams.java 269 * characters, but does include other leading and trailing whitespace.
291 * characters, but do include other leading and trailing whitespace.
313 * leading and trailing whitespace.
  /external/tinyxml/
xmltest.cpp 914 const char* doctype0 = "<element> This has leading and trailing space </element>";
916 const char* doctype2 = "<element> This has leading, trailing, and internal space </element>";
922 XmlTest( "White space kept.", " This has leading and trailing space ", text->Value() );
932 XmlTest( "White space kept.", " This has leading, trailing, and internal space ", text->Value() );
938 XmlTest( "White space condensed.", "This has leading and trailing space", text->Value() );
948 XmlTest( "White space condensed.", "This has leading, trailing, and internal space", text->Value() );
  /dalvik/libcore/luni/src/main/java/java/io/
File.java 107 * given, but without duplicate adjacent slashes and without trailing
115 * This is suitable for direct use by our JNI, and includes a trailing NUL.
215 // Add a trailing NUL, because this byte[] is going to be used as a char*.
230 // Removes duplicate adjacent slashes and any trailing slash.
249 // Remove any trailing slash (unless this is the root of the file system).
560 // remove trailing slash
    [all...]

Completed in 6420 milliseconds

1 2 3 4 56 7 8 91011>>