/packages/services/Telephony/src/com/android/phone/ |
DTMFTonePlayer.java | 50 /** Hash Map to map a character to a tone*/ 51 private static final Map<Character, Integer> mToneMap = 52 ImmutableMap.<Character, Integer>builder() 80 private Queue<Character> mDTMFQueue = new LinkedList<Character>(); 260 * Sends the dtmf character over the network for short DTMF settings 268 mDTMFQueue.add(new Character(dtmfDigit)); 270 String dtmfStr = Character.toString(dtmfDigit); 282 Character dtmfChar = null; 287 Log.i(LOG_TAG, "The dtmf character removed from queue" + dtmfChar) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Lists.java | 531 * Character} values. 535 @Beta public static ImmutableList<Character> charactersOf(String string) { 541 extends ImmutableList<Character> { 554 return (object instanceof Character) 555 ? string.indexOf((Character) object) : -1; 559 return (object instanceof Character) 560 ? string.lastIndexOf((Character) object) : -1; 563 @Override public UnmodifiableListIterator<Character> listIterator( 565 return new AbstractIndexedListIterator<Character>(size(), index) { 566 @Override protected Character get(int index) [all...] |
/libcore/luni/src/main/java/java/nio/charset/ |
CharsetEncoder.java | 28 * <p>The input character sequence is a {@link java.nio.CharBuffer CharBuffer} and the 52 * signifies that the input character sequence is not legal, while <i>unmappable character</i> 54 * cannot represent the character, for example). 110 * maximum number of bytes created by this encoder for one input character. 116 * input character, must be positive. 119 * for one single input character, must be positive. 153 * input character. 160 * Tests whether the given character can be encoded by this encoder. 223 * This method encodes the remaining character sequence of the give [all...] |
/external/blktrace/doc/ |
blkparse.1 | 93 event type. The single\-character \fItyp\fR field is one of the 294 7-character string containing the major and minor numbers of 338 left-aligned specifier. These precede field specifiers, with a '%' character, 342 Thus, to specify the command in a 12-character field that is left aligned: 396 This is a small string containing at least one character ('R' for read, 'W' 413 CPU ID (2-character field). 419 5-character field for the seconds portion of the time stamp and a 9-character field for the nanoseconds in the time stamp. 422 5-character field for the process ID. 425 2-character field for one of the actions [all...] |
/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck_worditerator.cc | 226 // Decompose a Hangul character to a Hangul vowel and consonants used by our 227 // spellchecker. A Hangul character of Unicode is a ligature consisting of a 229 // U+1161 "a", and U+11A8 "g". That is, we can treat each Hangul character as 231 // consonant). Therefore, we can compose a Hangul character from a vowel and 233 // character = 0xAC00 + 237 // We can also decompose a Hangul character with linear decomposition: 238 // first consonant = (character - 0xAC00) / 28 / 21; 239 // vowel = (character - 0xAC00) / 28 % 21; 240 // last consonant = (character - 0xAC00) % 28; 256 // should output this character when it is a Hangul syllable [all...] |
/external/guava/guava-tests/test/com/google/common/primitives/ |
CharsTest.java | 46 private static final char LEAST = Character.MIN_VALUE; 47 private static final char GREATEST = Character.MAX_VALUE; 54 assertEquals(((Character) value).hashCode(), Chars.hashCode(value)); 93 Character.valueOf(x).compareTo(y), 317 List<Character> none = Arrays.<Character>asList(); 320 List<Character> one = Arrays.asList((char) 1); 325 List<Character> three = Arrays.asList((char) 0, (char) 1, 'A'); 334 List<Character> list = Chars.asList(VALUES).subList(0, i); 335 Collection<Character> misleadingSize [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
FastPrintWriter.java | 416 * Prints the string representation of the specified character array 420 * the character array to print to the target. 433 * Prints the string representation of the specified character to the 437 * the character to print to the target. 527 * Prints the string representation of the character array {@code chars} followed by a newline. 554 * the index of the first character in {@code buffer} to write. 572 * Writes one character to the target. Only the two least significant bytes 579 * the character to write to the target. 614 * the index of the first character in {@code str} to write. 632 * Appends a subsequence of the character sequence {@code csq} to th [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
ostream | 243 * character that would have been inserted is not extracted), or 244 * - an exception occurs while getting a character from @a sb, which 274 * @param c The character to insert. 295 * @brief Character string insertion. 427 // [27.6.2.5.4] character insertion templates 430 * @brief Character inserters 432 * @param c A character. 437 * status, this function inserts a single character and any required 441 * If @a c is of type @c char and the character type of the stream is not 442 * @c char, the character is widened before insertion [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ |
ostream | 245 * character that would have been inserted is not extracted), or 246 * - an exception occurs while getting a character from @a sb, which 276 * @param c The character to insert. 297 * @brief Character string insertion. 432 // [27.6.2.5.4] character insertion templates 435 * @brief Character inserters 437 * @param c A character. 442 * status, this function inserts a single character and any required 446 * If @a c is of type @c char and the character type of the stream is not 447 * @c char, the character is widened before insertion [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ |
ostream | 245 * character that would have been inserted is not extracted), or 246 * - an exception occurs while getting a character from @a sb, which 276 * @param c The character to insert. 297 * @brief Character string insertion. 432 // [27.6.2.5.4] character insertion templates 435 * @brief Character inserters 437 * @param c A character. 442 * status, this function inserts a single character and any required 446 * If @a c is of type @c char and the character type of the stream is not 447 * @c char, the character is widened before insertion [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
ostream | 243 * character that would have been inserted is not extracted), or 244 * - an exception occurs while getting a character from @a sb, which 274 * @param c The character to insert. 295 * @brief Character string insertion. 427 // [27.6.2.5.4] character insertion templates 430 * @brief Character inserters 432 * @param c A character. 437 * status, this function inserts a single character and any required 441 * If @a c is of type @c char and the character type of the stream is not 442 * @c char, the character is widened before insertion [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
ostream | 243 * character that would have been inserted is not extracted), or 244 * - an exception occurs while getting a character from @a sb, which 274 * @param c The character to insert. 295 * @brief Character string insertion. 427 // [27.6.2.5.4] character insertion templates 430 * @brief Character inserters 432 * @param c A character. 437 * status, this function inserts a single character and any required 441 * If @a c is of type @c char and the character type of the stream is not 442 * @c char, the character is widened before insertion [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ |
ostream | 243 * character that would have been inserted is not extracted), or 244 * - an exception occurs while getting a character from @a sb, which 274 * @param c The character to insert. 295 * @brief Character string insertion. 427 // [27.6.2.5.4] character insertion templates 430 * @brief Character inserters 432 * @param c A character. 437 * status, this function inserts a single character and any required 441 * If @a c is of type @c char and the character type of the stream is not 442 * @c char, the character is widened before insertion [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
ostream | 243 * character that would have been inserted is not extracted), or 244 * - an exception occurs while getting a character from @a sb, which 274 * @param c The character to insert. 295 * @brief Character string insertion. 427 // [27.6.2.5.4] character insertion templates 430 * @brief Character inserters 432 * @param c A character. 437 * status, this function inserts a single character and any required 441 * If @a c is of type @c char and the character type of the stream is not 442 * @c char, the character is widened before insertion [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
ostream | 245 * character that would have been inserted is not extracted), or 246 * - an exception occurs while getting a character from @a sb, which 276 * @param c The character to insert. 297 * @brief Character string insertion. 432 // [27.6.2.5.4] character insertion templates 435 * @brief Character inserters 437 * @param c A character. 442 * status, this function inserts a single character and any required 446 * If @a c is of type @c char and the character type of the stream is not 447 * @c char, the character is widened before insertion [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
ostream | 245 * character that would have been inserted is not extracted), or 246 * - an exception occurs while getting a character from @a sb, which 276 * @param c The character to insert. 297 * @brief Character string insertion. 432 // [27.6.2.5.4] character insertion templates 435 * @brief Character inserters 437 * @param c A character. 442 * status, this function inserts a single character and any required 446 * If @a c is of type @c char and the character type of the stream is not 447 * @c char, the character is widened before insertion [all...] |
/external/chromium_org/base/strings/ |
string_piece.cc | 111 // For each character in characters_wanted, sets the index corresponding 112 // to the ASCII code of that character to 1 in table. This is used by 113 // the find_.*_of methods below to tell whether or not a character is in 134 // Avoid the cost of BuildLookupTable() for a single-character search. 157 // Avoid the cost of BuildLookupTable() for a single-character search. 191 // Avoid the cost of BuildLookupTable() for a single-character search. 216 // Avoid the cost of BuildLookupTable() for a single-character search.
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
StringHasher.h | 62 void addCharacter(UChar character) 66 addCharactersAssumingAligned(m_pendingCharacter, character); 70 m_pendingCharacter = character; 256 static UChar defaultConverter(UChar character) 258 return character; 261 static UChar defaultConverter(LChar character) 263 return character;
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/ |
string_piece.cc | 86 // For each character in characters_wanted, sets the index corresponding 87 // to the ASCII code of that character to 1 in table. This is used by 88 // the find_.*_of methods below to tell whether or not a character is in 108 // Avoid the cost of BuildLookupTable() for a single-character search. 130 // Avoid the cost of BuildLookupTable() for a single-character search. 160 // Avoid the cost of BuildLookupTable() for a single-character search. 184 // Avoid the cost of BuildLookupTable() for a single-character search.
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
HtmlWhiteSpaceStripper.java | 24 * the first character, and removes lines of nothing but whitespace. 39 * as just reading every character from a string (20% slower). 55 // Has any non-whitespace character been seen since the start of the line. 59 // character. 0 signifies no pending whitespace. 128 // This is the first character in an HTML tag. 134 // This is the first non-'/' character in an HTML tag. 270 * Note, we treat '\n' as a separate special character as it has special rules since it determines
|
/external/llvm/lib/Support/ |
regex2.h | 73 #define OCHAR (2LU<<OPSHIFT) /* character unsigned char */ 94 * Structure for [] character-set representation. Character sets are 102 * a string of multi-character elements, and decide the size of the 120 /* stuff for character categories */ 144 int ncategories; /* how many character categories */ 156 #define OUT (CHAR_MAX+1) /* a non-character value */
|
/frameworks/av/media/libstagefright/timedtext/ |
TimedTextSRTSource.cpp | 181 char character; local 182 if ((readSize = mSource->readAt(*offset, &character, 1)) < 1) { 192 if (character == 10) { 194 } else if (character == 13) { 195 if ((readSize = mSource->readAt(*offset, &character, 1)) < 1) { 203 if (character != 10) { 208 data->append(character);
|
/frameworks/base/core/java/android/text/ |
Spanned.java | 33 * A MARK is "attached" to the character before, while a POINT will stick to the character 36 * As a result, inserting a new character between a MARK and a POINT will leave the MARK 37 * unchanged, while the POINT will be shifted, now located after the inserted character and 38 * still glued to the same character after it. 41 * will hence be expanded to <i>include</i> the new character (when the span is using a MARK at 81 * immediately after a \n character, and if the \n
|
TextLine.java | 161 // Replace the first character of each replacement run with the 162 // object-replacement character and the remainder with zero width 223 codept = Character.codePointAt(mChars, j); 273 * @param offset the line-relative character offset, between 0 and the 275 * @param trailing true to measure the trailing edge of the character 276 * before offset, false to measure the leading edge of the character 279 * character, can be null. 281 * character edge. 318 codept = Character.codePointAt(chars, j); 410 * of the character at offset, based on the run (not paragraph) directio [all...] |
/ndk/sources/host-tools/ndk-stack/regex/ |
regex2.h | 73 #define OCHAR (2LU<<OPSHIFT) /* character unsigned char */ 94 * Structure for [] character-set representation. Character sets are 102 * a string of multi-character elements, and decide the size of the 120 /* stuff for character categories */ 144 int ncategories; /* how many character categories */ 156 #define OUT (CHAR_MAX+1) /* a non-character value */
|