HomeSort by relevance Sort by last modified time
    Searched full:character (Results 726 - 750 of 12872) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
basic_ios.h 58 * @tparam _CharT Type of character stream.
59 * @tparam _Traits Traits for character type, defaults to
358 * @brief Retrieves the @a empty character.
359 * @return The current fill character.
375 * @brief Sets a new @a empty character.
376 * @param __ch The new character.
377 * @return The previous fill character.
379 * The fill character is used to fill out space when P+ characters
408 * @param __c The character to narrow.
409 * @param __dfault The character to narrow
    [all...]
basic_string.h 51 * @brief Managing sequences of characters and character-like objects.
56 * @tparam _CharT Type of character
57 * @tparam _Traits Traits for character type, defaults to
83 * Where the _M_p points to the first character in the string, and
95 * The reason you want _M_data pointing to the character %array and
167 // with a terminating character and m _CharT elements, it'd
459 * @param __pos Index of first character to copy from.
467 * @param __pos Index of first character to copy from.
475 * @brief Construct string initialized by a character %array.
476 * @param __s Source character %array
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
basic_ios.h 58 * @tparam _CharT Type of character stream.
59 * @tparam _Traits Traits for character type, defaults to
358 * @brief Retrieves the @a empty character.
359 * @return The current fill character.
375 * @brief Sets a new @a empty character.
376 * @param __ch The new character.
377 * @return The previous fill character.
379 * The fill character is used to fill out space when P+ characters
408 * @param __c The character to narrow.
409 * @param __dfault The character to narrow
    [all...]
basic_string.h 51 * @brief Managing sequences of characters and character-like objects.
56 * @tparam _CharT Type of character
57 * @tparam _Traits Traits for character type, defaults to
83 * Where the _M_p points to the first character in the string, and
95 * The reason you want _M_data pointing to the character %array and
167 // with a terminating character and m _CharT elements, it'd
459 * @param __pos Index of first character to copy from.
467 * @param __pos Index of first character to copy from.
475 * @brief Construct string initialized by a character %array.
476 * @param __s Source character %array
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_ios.h 58 * @tparam _CharT Type of character stream.
59 * @tparam _Traits Traits for character type, defaults to
358 * @brief Retrieves the @a empty character.
359 * @return The current fill character.
375 * @brief Sets a new @a empty character.
376 * @param __ch The new character.
377 * @return The previous fill character.
379 * The fill character is used to fill out space when P+ characters
408 * @param __c The character to narrow.
409 * @param __dfault The character to narrow
    [all...]
basic_string.h 51 * @brief Managing sequences of characters and character-like objects.
56 * @tparam _CharT Type of character
57 * @tparam _Traits Traits for character type, defaults to
83 * Where the _M_p points to the first character in the string, and
95 * The reason you want _M_data pointing to the character %array and
167 // with a terminating character and m _CharT elements, it'd
464 * @param __pos Index of first character to copy from.
472 * @param __pos Index of first character to copy from.
480 * @brief Construct string initialized by a character %array.
481 * @param __s Source character %array
    [all...]
  /external/bison/darwin-lib/
string.h 611 GB18030 and the character to be searched is a digit. */
614 _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings "
771 _GL_WARN_ON_USE (strcspn, "strcspn cannot work correctly on character strings "
776 /* Find the first occurrence in S of any character in ACCEPT. */
803 _GL_WARN_ON_USE (strpbrk, "strpbrk cannot work correctly on character strings "
820 _GL_WARN_ON_USE (strspn, "strspn cannot work correctly on character strings "
827 GB18030 and the character to be searched is a digit. */
830 _GL_WARN_ON_USE (strrchr, "strrchr cannot work correctly on character strings "
    [all...]
  /external/bison/linux-lib/
string.h 611 GB18030 and the character to be searched is a digit. */
614 _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings "
771 _GL_WARN_ON_USE (strcspn, "strcspn cannot work correctly on character strings "
776 /* Find the first occurrence in S of any character in ACCEPT. */
803 _GL_WARN_ON_USE (strpbrk, "strpbrk cannot work correctly on character strings "
820 _GL_WARN_ON_USE (strspn, "strspn cannot work correctly on character strings "
827 GB18030 and the character to be searched is a digit. */
830 _GL_WARN_ON_USE (strrchr, "strrchr cannot work correctly on character strings "
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 74 private HashMap<Character,Format> formatStart;
106 this.formatStart = new HashMap<Character,Format>();
139 Character.isWhitespace(text.charAt(3))) {
252 * Looks for a music track (\u266B is first character, everything else is
326 /** Determines if this is an allowable domain character. */
328 return c == '-' || Character.isLetter(c) || Character.isDigit(c);
388 // also be a punctuation character.
391 if (Character.isDigit(ch)) {
394 Character.isDigit(text.charAt(index)))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UTF16.java 13 * Standalone utility class providing UTF16 character conversions and indexing conversions.
88 * character [offset16 - (value &gt;&gt; 2), offset16 + (value &amp; 3)]
186 * character will be returned. If a complete supplementary character is not found the incomplete
187 * character will be returned
190 * @param offset16 UTF-16 offset to the start of the character.
217 return Character.toCodePoint(single, trail);
226 return Character.toCodePoint(lead, single);
239 * character will be returned. If a complete supplementary character is not found the incomplet
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UTF16.java 12 * Standalone utility class providing UTF16 character conversions and indexing conversions.
87 * character [offset16 - (value &gt;&gt; 2), offset16 + (value &amp; 3)]
205 * character will be returned. If a complete supplementary character is not found the incomplete
206 * character will be returned
209 * @param offset16 UTF-16 offset to the start of the character.
237 return Character.toCodePoint(single, trail);
246 return Character.toCodePoint(lead, single);
259 * character will be returned. If a complete supplementary character is not found the incomplet
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
basic_string.h 51 * @brief Managing sequences of characters and character-like objects.
56 * @tparam _CharT Type of character
57 * @tparam _Traits Traits for character type, defaults to
83 * Where the _M_p points to the first character in the string, and
95 * The reason you want _M_data pointing to the character %array and
167 // with a terminating character and m _CharT elements, it'd
459 * @param __pos Index of first character to copy from.
467 * @param __pos Index of first character to copy from.
475 * @brief Construct string initialized by a character %array.
476 * @param __s Source character %array
    [all...]
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 62 * a character is guaranteed to be at a normalization boundary,
367 * "no" or "maybe" character: The end index is at a normalization boundary.
386 * Tests if the character always has a normalization boundary before it,
388 * If true, then the character does not normalization-interact with
390 * In other words, a string containing this character can be normalized
391 * by processing portions before this character and starting from this
392 * character independently.
394 * @param c character to test
401 * Tests if the character always has a normalization boundary after it,
403 * If true, then the character does not normalization-interact wit
    [all...]
  /libcore/ojluni/src/main/java/java/io/
PrintWriter.java 43 * <tt>format</tt> methods is invoked, rather than whenever a newline character
45 * separator rather than the newline character.
59 * The underlying character-output stream of this
97 * @param out A character-output stream
106 * @param out A character-output stream
124 * into bytes using the default character encoding.
138 * default character encoding.
398 * Writes a single character.
399 * @param c int specifying a character to be written.
498 * according to the platform's default character encoding, and these byte
    [all...]
  /bootable/recovery/minzip/
SysUtil.h 34 * begins with an '@' character, it is a map of blocks to be mapped,
  /development/apps/CustomLocale/src/com/android/customlocale2/
CustomLocaleReceiver.java 63 is_ok = Character.isLetter(locale.charAt(0)) &&
64 Character.isLetter(locale.charAt(1));
68 Character.isLetter(locale.charAt(3)) &&
69 Character.isLetter(locale.charAt(4));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 69 /** What character index in the stream did the current token start at?
75 /** The line on which the first character of the token resides */
78 /** The character position of first character within the line */
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 68 /** What character index in the stream did the current token start at?
74 /** The line on which the first character of the token resides */
77 /** The character position of first character within the line */
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognizerSharedState.pm 87 # What character index in the stream did the current token start at?
96 # The line on which the first character of the token resides
102 # The character position of first character within the line
  /external/bison/lib/
iswblank.c 1 /* Test wide character for being blank.
  /external/boringssl/src/crypto/x509/
charmap.h 2 * Mask of various character properties
  /external/chromium-trace/catapult/third_party/coverage/coverage/htmlfiles/
jquery.hotkeys.js 53 character = String.fromCharCode( event.which ).toLowerCase(),
78 possible[ modif + character ] = true;
79 possible[ modif + jQuery.hotkeys.shiftNums[ character ] ] = true;
83 possible[ jQuery.hotkeys.shiftNums[ character ] ] = true;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/
TODO 1 * Specialize ASN.1 character and useful types
  /external/clang/test/CodeGen/
c-unicode.c 7 // DENIED: warning: universal character names are only valid in C99 or C++; treating as '\' followed by identifier [-Wunicode]
  /external/curl/docs/libcurl/opts/
CURLOPT_WILDCARDMATCH.3 48 Question mark matches any (exactly one) character.
56 right bracket and matches exactly one character. Some examples follow:
58 \fB[a-zA-Z0\-9]\fP or \fB[f\-gF\-G]\fP \- character interval
60 \fB[abc]\fP - character enumeration

Completed in 912 milliseconds

<<21222324252627282930>>