/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prdtoa.h | 44 ** the value represented by the character string pointed to by 46 ** character. 49 ** the character terminating the scan is returned in the location pointed
|
/external/chromium_org/third_party/sqlite/src/ext/icu/ |
icu.c | 71 const UChar32 uEsc /* The escape character */ 79 int prevEscape = 0; /* True if the previous character was uEsc */ 83 /* Read (and consume) the next character from the input pattern. */ 90 ** 1. uPattern is an unescaped match-all character "%", 91 ** 2. uPattern is an unescaped match-one character "_", 92 ** 3. uPattern is an unescaped escape character, or 93 ** 4. uPattern is to be handled as an ordinary character 100 ** MATCH_ALL. For each MATCH_ONE, skip one character in the 153 ** is implemented as like(B, A). If there is an escape character E, 178 /* The escape character string must consist of a single UTF-8 character [all...] |
/external/chromium_org/v8/src/ |
debug-agent.cc | 264 char c = '\0'; // One character receive buffer. 265 char prev_c = '\0'; // Previous character. 276 // Add character to header buffer. 398 uint16_t character = message[i]; local 399 utf8_len += unibrow::Utf8::Length(character, previous); 400 previous = character; 420 // Write next UTF-8 encoded character to buffer. 421 uint16_t character = message[i]; local 423 unibrow::Utf8::Encode(buffer + buffer_position, character, previous); 426 // Send buffer if full or last character is encoded [all...] |
/external/clang/include/clang/Lex/ |
TokenConcatenation.h | 40 /// token's requirements, and it needs to know the first character of the 45 /// requirements, but it doesn't need to know the first character of the 50 /// character. For example, "<<" turns into "<<=" when followed by an =.
|
/external/clang/test/CodeGen/ |
char-literal.c | 12 // Should truncate value (equal to last character). 36 // Should pick second character. 86 // Should pick second character.
|
/external/eigen/blas/ |
lsame.f | 8 CHARACTER CA,CB 20 * CA (input) CHARACTER*1 22 * CB (input) CHARACTER*1
|
/external/grub/stage2/ |
term.h | 63 /* Put a character. */ 65 /* Check if any input character is available. */ 67 /* Get a character. */
|
/external/guava/guava-tests/test/com/google/common/collect/ |
SingletonImmutableTableTest.java | 30 private final ImmutableTable<Character, Integer, String> testTable = 31 new SingletonImmutableTable<Character, Integer, String>('a', 1, "blah"); 125 @Override Iterable<ImmutableTable<Character, Integer, String>>
|
/external/icu4c/common/ |
cstring.h | 93 /* Conversion from a digit to the character with radix base from 2-19 */ 128 * limited to the ASCII character repertoire. 135 * limited to the ASCII character repertoire.
|
ubidiwrt.c | 195 /* preserve character integrity */ 200 /* collect code units for one base character */ 203 /* copy this base character */ 223 /* preserve character integrity */ 228 /* collect code units and modifier letters for one base character */ 233 /* copy this "user character" */ 272 /* preserve character integrity */ 277 /* collect code units for one base character */ 280 /* collect modifier letters for this base character */ 287 /* do not copy this BiDi control character */ [all...] |
/external/icu4c/layout/ |
GXLayoutEngine.h | 86 * input character codes to glyph indices using mapCharsToGlyphs, and then 90 * @param chars - the input character context 91 * @param offset - the index of the first character to process
|
GXLayoutEngine2.h | 85 * input character codes to glyph indices using mapCharsToGlyphs, and then 89 * @param chars - the input character context 90 * @param offset - the index of the first character to process
|
TibetanReordering.cpp | 36 // they are also used to know where a character should be placed (location in reference to the base character) 37 // and also to know if a character, when independtly displayed, should be displayed with a dotted-circle to 59 // Character class tables 111 // Below we define how a character in the input string is either in the tibetanCharClasses table 251 // of component... for example, state 2 is a base, with is always a first character 253 // it is the first character that is analysed (in ground state). 297 // calculate, using the state table, which one is the last character of the syllable 340 // a character that has the Dotted circle flag (a character that cannot be a base [all...] |
/external/icu4c/tools/toolutil/ |
flagparser.c | 106 * Extract the setting after the '=' and store it in flag excluding the newline character. 124 /* Indicates a new line character. End here. */ 154 * Get the position after the '=' character.
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestWalkingChar.java | 81 * A walking animated character followed by a 3rd person camera on a terrain with LOD. 87 //character 88 CharacterControl character; field in class:TestWalkingChar 296 character = new CharacterControl(capsule, 0.01f); 299 model.addControl(character); 300 character.setPhysicsLocation(new Vector3f(-140, 15, -10)); 302 getPhysicsSpace().add(character); 339 if (!character.onGround()) { 349 character.setViewDirection(walkDirection); 358 character.setWalkDirection(walkDirection) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
SimpleEscapingFunction.java | 25 * one where each character in the input is treated independently and there is no runtime state. The 26 * only decision you make is whether the current character should be escaped into some different 30 * escaped. This is because (for speed) we use an array of escaped strings, indexed by character
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
BaseUrlValidateFunction.java | 22 import java.lang.Character.UnicodeBlock; 90 (Character.UnicodeBlock.of(ch) == UnicodeBlock.BASIC_LATIN) 91 ? Character.toLowerCase(ch)
|
/external/mockito/src/org/mockito/internal/util/ |
Primitives.java | 59 primitiveTypes.put(Character.class, Character.TYPE);
70 primitiveOrWrapperDefaultValues.put(Character.class, '\u0000');
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
RFC2396UrlDecoder.java | 60 //an UTF-8 encoded string, and in UTF-8 one character can be encoded as multiple bytes 72 throw new IllegalArgumentException("% character should be followed by 2 hexadecimal characters."); 84 //a normal character
|
/external/openssh/openbsd-compat/ |
vis.h | 71 #define UNVIS_VALID 1 /* character valid */ 72 #define UNVIS_VALIDPUSH 2 /* character valid, push back passed char */ 73 #define UNVIS_NOCHAR 3 /* valid sequence, no character produced */
|
/external/proguard/src/proguard/io/ |
DataEntryRewriter.java | 85 // Is the character part of a word? 87 if (Character.isJavaIdentifierPart(c) || 100 // Write out the character that terminated it.
|
/external/v8/src/ |
debug-agent.cc | 243 char c = '\0'; // One character receive buffer. 244 char prev_c = '\0'; // Previous character. 255 // Add character to header buffer. 377 uint16_t character = message[i]; local 378 utf8_len += unibrow::Utf8::Length(character, previous); 379 previous = character; 396 // Write next UTF-8 encoded character to buffer. 397 uint16_t character = message[i]; local 399 unibrow::Utf8::Encode(buffer + buffer_position, character, previous); 402 // Send buffer if full or last character is encoded [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
ATResponseParser.java | 136 if (!Character.isWhitespace(c)) { 157 while (mNext < len && Character.isWhitespace(c)) { 161 if (Character.isWhitespace(c)) {
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
characterdataappenddata.java | 32 * of the character data of the node. 34 * Retrieve the character data from the second child 37 * the specified data to the already existing character
|
characterdatadeletedatabegining.java | 33 * of the character data. 34 * Retrieve the character data from the last child of the 38 * 0 thru position 16. The new value of the character data
|