HomeSort by relevance Sort by last modified time
    Searched defs:character (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/core/
getkey.c 36 * 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 ) ) {
    [all...]
console.c 11 * 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
82 int character; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
itercoll.h 96 UChar character; member in struct:CollationIteratorTest::ExpansionRecord
  /external/v8/src/
unicode-decoder.cc 24 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/clang/test/PCH/
cxx_exprs.cpp 12 char character; variable
26 const_cast_result char_ptr = &character;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
ReaderException.java 23 private final char character; field in class:ReaderException
26 public ReaderException(String name, int position, char character, String message) {
29 this.character = character;
38 return character;
47 return "unacceptable character '" + character + "' (0x"
48 + Integer.toHexString((int) character).toUpperCase() + ") " + getMessage()
  /external/syslinux/gpxe/src/hci/mucurses/
ansi_screen.c 34 unsigned int character = ( c & A_CHARTEXT ); local
45 /* ANSI escape sequence to update character attributes */
49 /* Print the actual character */
50 putchar ( character );
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
RecordReader.java 19 char character(String name); method in interface:RecordReader
RecordWriter.java 19 void character(String name, char value); method in interface:RecordWriter
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
RecordReader.java 18 char character(String name); method in interface:RecordReader
RecordWriter.java 18 void character(String name, char value); method in interface:RecordWriter
  /external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 107 int32_t character; local
109 sscanf_s(GetAttribute(*jt, "char")->Value(), "%x", &character);
111 sscanf(GetAttribute(*jt, "char")->Value(), "%x", &character);
114 ASSERT_EQ(cmap->GlyphId(character), glyph_id);
  /external/testng/src/main/java/org/testng/reporters/
XMLUtils.java 126 char character = iterator.current(); local
127 while (character != CharacterIterator.DONE) {
128 if (character == '<') {
130 } else if (character == '>') {
132 } else if (character == '\"') {
134 } else if (character == '\'') {
136 } else if (character == '&') {
139 result.append(character);
141 character = iterator.next();
  /external/junit-params/src/main/java/junitparams/internal/
Utils.java 48 char character = '\0'; local
53 previousCharacter = character;
54 character = input.charAt(i);
56 if (character == ',' || character == '|') {
58 value.setCharAt(value.length() - 1, character); local
66 value.append(character);
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Text_Suite.py 38 """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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Text_Suite.py 38 """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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Text_Suite.py 38 """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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Text_Suite.py 38 """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/lz4/programs/
datagen.c 75 BYTE character = ld <= 0.0 ? 0 : '0'; local
81 while (u < end) lt[u++] = character;
82 character++;
83 if (character > lastChar) character = firstChar;
  /external/sfntly/cpp/src/sample/subtly/
font_assembler.cc 98 // generated by this code without removing any character.
103 int32_t character = it->first; local
105 if (character != last_chararacter + 1) { // new segment
110 // start_code = character
116 Segment(character, -1, 0, last_offset);
120 last_chararacter = character;
font_info.cc 146 fprintf(stderr, "Error creating character map.\n");
180 int32_t character = character_iterator->Next(); local
181 if (!predicate_ || (*predicate_)(character)) {
183 (std::make_pair(character,
184 GlyphId(cmap_->GlyphId(character), font_id_)));
  /external/testng/src/test/java/org/testng/
AssertTest.java 159 char character; field in class:AssertTest.Asymmetric
161 Asymmetric(int integer, char character) {
163 this.character = character;
174 if (character != that.character) return false;
182 result = 31 * result + (int) character;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 28 * An object to convert Chinese character to its corresponding pinyin string.
98 private void tokenize(char character, Token token) {
99 token.source = Character.toString(character);
102 if (character < 128) {
109 if (character < 0x250 || (0x1e00 <= character && character < 0x1eff)) {
134 * space will be put into a Token, One Hanzi character which has pinyin will be treated as a
152 // c. current character is space
154 final char character = input.charAt(i); local
    [all...]
NameLookupBuilder.java 178 int character; local
183 character = name.codePointAt(position++);
184 if ((character == 0x20) || (character == 0x2c) || (character == 0x2E)) {
190 if ((character < 0x1100) || (character > 0x1112 && character < 0x3131) ||
191 (character > 0x314E && character < 0xAC00) |
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
pod_char_traits.h 1 // POD character, std::char_traits specialization -*- C++ -*-
43 // POD character abstraction.
47 /// @brief A POD class that serves as a character abstraction class.
49 struct character struct
54 typedef character<V, I, S> char_type;
78 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs)
83 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs)
93 /// char_traits<__gnu_cxx::character> specialization
    [all...]

Completed in 1541 milliseconds

1 2 3 4 5 6 7 8 91011>>