Searched refs:character (Results 1 - 25 of 334) sorted by relevance

1234567891011>>

/external/syslinux/gpxe/src/core/
H A Dgetkey.c36 * Read character from console if available within timeout period
39 * @ret character Character read from console
64 int character; local
67 character = getchar();
68 if ( character != ESC )
69 return character;
71 while ( ( character = getchar_timeout ( GETKEY_TIMEOUT ) ) >= 0 ) {
72 if ( character == '[' )
74 if ( isdigit ( character ) ) {
75 n = ( ( n * 10 ) + ( character
[all...]
H A Dconsole.c11 * Write a single character to each console device.
13 * @v character Character to be written
17 * The character is written out to all enabled console devices, using
21 void putchar ( int character ) {
25 if ( character == '\n' )
30 console->putchar ( character );
60 * Read a single character from any console.
63 * @ret character Character read from a console.
66 * A character will be read from the first enabled console device that
77 * The character rea
82 int character; local
[all...]
/external/sfntly/cpp/src/sample/subtly/
H A Dcharacter_predicate.cc31 bool AcceptRange::operator()(int32_t character) const {
32 return start_ <= character && character <= end_;
44 bool AcceptSet::operator()(int32_t character) const {
45 return characters_->find(character) != characters_->end();
49 bool AcceptAll::operator()(int32_t character) const {
50 UNREFERENCED_PARAMETER(character);
H A Dcharacter_predicate.h28 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/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
H A DReaderException.java23 private final char character; field in class:ReaderException
26 public ReaderException(String name, int position, char character, String message) { argument
29 this.character = character;
38 return character;
47 return "unacceptable character '" + character + "' (0x"
48 + Integer.toHexString((int) character).toUpperCase() + ") " + getMessage()
/external/v8/src/
H A Dunicode-decoder.cc24 uint32_t character = Utf8::ValueOf(stream, stream_length, &cursor); local
28 bool is_two_characters = character > Utf16::kMaxNonSurrogateCharCode;
36 *buffer++ = Utf16::LeadSurrogate(character);
37 *buffer++ = Utf16::TrailSurrogate(character);
39 *buffer++ = character;
42 // Just wrote last character of buffer
66 uint32_t character = Utf8::ValueOf(stream, stream_length, &cursor); local
72 if (character > unibrow::Utf16::kMaxNonSurrogateCharCode) {
73 *data++ = Utf16::LeadSurrogate(character);
74 *data++ = Utf16::TrailSurrogate(character);
[all...]
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
H A DText_Suite.py38 """color - The color of the first character. """
42 """font - The name of the font of the first character. """
46 """size - The size in points of the first character. """
56 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem
57 """character - This subdivides the text into characters. """
64 characters = character
100 'character' : character,
114 'character' : character,
[all...]
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Terminal/
H A DText_Suite.py38 """color - The color of the first character. """
42 """font - The name of the font of the first character. """
46 """size - The size in points of the first character. """
56 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem
57 """character - This subdivides the text into characters. """
64 characters = character
100 'character' : character,
114 'character' : character,
[all...]
/external/proguard/src/proguard/
H A DWordReader.java194 // The next word is starting with a quote character.
198 // The next word is a quoted character string.
244 // The next word is a single delimiting character.
249 // The next word is a simple character string.
347 private boolean isOption(char character) argument
349 return character == '-';
353 private boolean isComment(char character) argument
355 return character == COMMENT_CHARACTER;
359 private boolean isDelimiter(char character) argument
361 return character
372 isFileDelimiter(char character) argument
382 isQuote(char character) argument
[all...]
/external/syslinux/gpxe/src/include/
H A Dconsole.h43 /** Write a character to the console.
45 * @v character Character to be written
50 void ( *putchar ) ( int character );
63 /** Read a character from the console.
66 * @ret character Character read
69 * If no character is available to be read, this method will
70 * block. The character read should not be echoed back to the
114 extern void putchar ( int character );
/external/parameter-framework/upstream/utility/
H A DTokenizer.cpp48 for (const auto character : _input) {
49 if (_delimiters.find(character) != string::npos) {
68 token += character;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DArabicCharacterData.java44 private Record(int character) argument
46 codePoint = character;
47 generalCategory = UCharacter.getType(character);
48 decompositionType = UCharacter.getIntPropertyValue(character, UProperty.DECOMPOSITION_TYPE);
55 decomposition = Normalizer.compose(UCharacter.toString(character), true);
59 decomposition = Normalizer.decompose(UCharacter.toString(character), true);
78 private void add(int character) argument
80 records[recordIndex++] = new Record(character);
H A DCanonicalCharacterData.java28 Record(int character, int script) argument
30 String char32 = UCharacter.toString(character);
34 composed = character;
54 dumpEquivalents(character, equivs);
89 private void dumpEquivalents(int character, Vector equivs) argument
93 System.out.println(Utility.hex(character, 6) + " - " + count + ":");
122 public void add(int character) argument
124 int script = UScript.getScript(character);
131 recordVector.add(new Record(character, script));
/external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
H A Dbios_console.c50 /** Current character attribute */
148 * Print a character to BIOS console
150 * @v character Character to be printed
152 static void bios_putchar ( int character ) {
156 character = ansiesc_process ( &bios_ansiesc_ctx, character );
157 if ( character < 0 )
160 /* Print character with attribute */
170 /* Print character */
177 : "a" ( character ), "
239 unsigned int character; local
[all...]
/external/clang/test/PCH/
H A Dcxx_exprs.cpp12 char character; variable
26 const_cast_result char_ptr = &character;
/external/python/cpython2/Lib/importlib/
H A D__init__.py32 for character in name:
33 if character != '.':
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
H A DText_Suite.py32 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem
33 """character - A character """
56 """color - the color of the first character """
60 """font - the name of the font of the first character """
68 """size - the size in points of the first character """
72 """style - the text style of the first character of the first character """
115 character._superclassnames = ['text']
116 character
[all...]
/external/curl/docs/cmdline-opts/
H A Ddata-raw.d9 interpretation of the @ character.
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
/external/junit-params/src/test/java/junitparams/
H A DCastingParamsTest.java35 public void cartoonCharacters(PersonTest.Person character) { argument
36 assertThat(character.getName()).isIn("Tarzan", "Jane");
37 assertThat(character.getAge()).isIn(0, 20);

Completed in 3377 milliseconds

1234567891011>>