/external/chromium/net/data/proxy_resolver_v8_unittest/ |
international_domain_names.js | 4 // This international hostname has a non-ASCII character. It is represented
|
/external/chromium-libpac/test/js-unittest/ |
international_domain_names.js | 4 // This international hostname has a non-ASCII character. It is represented
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
accelerator_utils_cocoa.mm | 20 // code to a character and use that when comparing against the Accelerator 22 unichar character; 26 &character, 29 [[[NSString alloc] initWithCharacters:&character length:1] autorelease];
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
international_domain_names.js | 4 // This international hostname has a non-ASCII character. It is represented
|
/external/chromium_org/third_party/WebKit/ManualTests/memory/ |
string-growth.html | 8 // x should now be a 2^23 character string, which is 16M in size.
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
SurrogatePairAwareTextIterator.h | 36 inline bool consume(UChar32& character, unsigned& clusterLength) 41 character = *m_characters; 44 if (character < HiraganaLetterSmallA) 47 return consumeSlowCase(character, clusterLength);
|
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/ |
character_predicate.h | 28 virtual bool operator()(int32_t character) const = 0; 37 virtual bool operator()(int32_t character) const; 52 virtual bool operator()(int32_t character) const; 64 virtual bool operator()(int32_t character) const;
|
/external/chromium_org/tools/json_comment_eater/ |
everything.json | 8 "strings": "yes", // Comment with "strings" and " character
|
/external/clang/test/Lexer/ |
c90.c | 32 (void)L"\u1234"; // expected-error {{universal character names are only valid in C99 or C++}} 33 (void)L'\u1234'; // expected-error {{universal character names are only valid in C99 or C++}} 43 #define MY_UCN \u00FC // expected-warning {{universal character names are only valid in C99 or C++; treating as '\' followed by identifier}} 46 extern int idWithUCN\u00FC; // expected-warning {{universal character names are only valid in C99 or C++; treating as '\' followed by identifier}} expected-error {{expected ';'}}
|
eof-char.c | 7 // expected-warning@+1{{missing terminating ' character}} expected-error@+1{{expected expression}} expected-error@+1{{expected ';'}}
|
eof-string.c | 7 // expected-warning@+1{{missing terminating '"' character}} expected-error@+1{{expected expression}} expected-error@+1{{expected ';'}}
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
CharacterPropertyEditor.java | 45 if (value instanceof Character) { 46 return String.valueOf(((Character) value).charValue()); 68 // only one character 77 property.setValue(new Character(text.charAt(0)));
|
/external/icu4c/samples/translit/answers/ |
unaccent.h | 36 * Unaccent a single character using normalizer.
|
/external/sfntly/cpp/src/sample/subtly/ |
character_predicate.h | 28 virtual bool operator()(int32_t character) const = 0; 37 virtual bool operator()(int32_t character) const; 52 virtual bool operator()(int32_t character) const; 64 virtual bool operator()(int32_t character) const;
|
/libcore/luni/src/main/java/java/io/ |
Writer.java | 22 * target in a character-wise manner. Most output streams expect the 86 * Writes the entire character buffer {@code buf} to the target. 102 * the non-null character array to write. 104 * the index of the first character in {@code buf} to write. 116 * Writes one character to the target. Only the two least significant bytes 120 * the character to write to the target. 151 * the index of the first character in {@code str} to write. 172 * Appends the character {@code c} to the target. This method works the same 176 * the character to append to the target stream. 187 * Appends the character sequence {@code csq} to the target. This metho [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
memchr.valgrind | 2 # POSIX states that when the character is found, memchr must not read extra
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
DOMOutputImpl.java | 35 * (possibly with a specifiedencoding), a base URI, and/or a character stream.
36 * The exact definitions of a byte stream and a character stream are binding
75 * writable stream of bytes. If the application knows the character encoding
87 * writable stream of bytes. If the application knows the character encoding
123 * destination. If the application knows the character encoding of the
136 * destination. If the application knows the character encoding of the
148 * The character encoding, if known. The encoding must be a string
150 * "Character Encoding in Entities"). This attribute has no effect when the
151 * application provides a character stream or string data. For other sources
163 * The character encoding, if known. The encoding must be a string [all...] |
/external/arduino/hardware/arduino/cores/arduino/ |
WCharacter.h | 2 WCharacter.h - Character utility functions for Wiring & Arduino 44 // Checks for an alphanumeric character. 52 // Checks for an alphabetic character. 61 // that fits into the ASCII character set. 68 // Checks for a blank character, that is, a space or a tab. 75 // Checks for a control character. 89 // Checks for any printable character except space. 96 // Checks for a lower-case character. 103 // Checks for any printable character including space. 110 // Checks for any printable character which is not a space [all...] |
/external/chromium_org/chrome/test/chromedriver/ |
keycode_text_conversion.h | 17 // with the current keyboard layout, or "" if no character would be produced. 26 // Converts a character to the key code and modifiers that would produce 27 // the character using the current keyboard layout. Returns true on success.
|
/external/chromium_org/content/common/ |
text_input_client_messages.h | 24 // Tells the renderer to send back the character index for a point. 28 // Tells the renderer to send back the rectangle for a given character range. 44 size_t /* character index */)
|
/external/chromium_org/ui/message_center/views/ |
constants.h | 31 // Character limits: Displayed text will be subject to the line limits above, 33 // Character limit = pixels per line * line limit / min. pixels per character.
|
/external/clang/include/clang/Basic/ |
DiagnosticLexKinds.td | 16 def null_in_string : Warning<"null character(s) preserved in string literal">, 18 def null_in_char : Warning<"null character(s) preserved in character literal">, 20 def null_in_file : Warning<"null character ignored">, InGroup<NullCharacter>; 41 def trigraph_converted : Warning<"trigraph converted to '%0' character">, 67 def ext_unterminated_string : ExtWarn<"missing terminating '\"' character">, 69 def ext_unterminated_char : ExtWarn<"missing terminating ' character">, 71 def ext_empty_character : ExtWarn<"empty character constant">, 75 "invalid argument to convert to character">; 76 def err_unterminated___pragma : Error<"missing terminating ')' character">; [all...] |
/external/icu4c/layout/ |
loengine.h | 71 * This routine will compute the glyph, character index and position arrays. 74 * @param chars - the input character context 75 * @param offset - the offset of the first character to process 85 * Note: The glyph, character index and position array can be accessed 89 * function first to free the glyph, character index and position arrays 138 * This function copies the character index array into a caller supplied array. 140 * character index for each glyph. 143 * @param charIndices - the destiniation character index array 154 * This function copies the character index array into a caller supplied array. 156 * character index for each glyph [all...] |
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_EnableUNICODE.3 | 13 To obtain the character codes corresponding to received keyboard events, Unicode translation must first be turned on using this function\&. The translation incurs a slight overhead for each keyboard event and is therefore disabled by default\&. For each subsequently received key down event, the \fBunicode\fR member of the \fI\fBSDL_keysym\fR\fR structure will then contain the corresponding character code, or zero for keysyms that do not correspond to any character code\&.
|
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/ |
TokenParser.java | 84 throw new SaslException("Invalid token character at position " + m_curPos); 106 throw new SaslException("Invalid token character at position " + m_curPos); 150 * This function returns TRUE if the character is a valid token character. 159 * CTL = <any US-ASCII control character 162 * CHAR = <any US-ASCII character (octets 0 - 127)> 164 * @param c character to be validated 166 * @return True if character is valid Token character else it returns 188 * This function returns TRUE if the character is linear white space (LWS) [all...] |