HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 326 - 350 of 4247) sorted by null

<<11121314151617181920>>

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetwc.c 63 int ch = __sgetc(fp); local
65 if (ch == EOF) {
69 c = ch;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
IntTrie.java 116 * @param ch codepoint
119 public final int getCodePointValue(int ch)
124 if(0 <= ch && ch < UTF16.LEAD_SURROGATE_MIN_VALUE) {
126 offset = (m_index_[ch >> INDEX_STAGE_1_SHIFT_] << INDEX_STAGE_2_SHIFT_)
127 + (ch & INDEX_STAGE_3_MASK_);
132 offset = getCodePointOffset(ch);
142 * @param ch lead surrogate character
145 public final int getLeadValue(char ch)
147 return m_data_[getLeadOffset(ch)];
    [all...]
  /external/icu/icu4c/source/test/letest/
SimpleFontInstance.h 51 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
55 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
57 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const;
  /external/icu/icu4c/source/test/perf/leperf/
SimpleFontInstance.h 55 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
59 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
61 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
IntTrie.java 115 * @param ch codepoint
118 public final int getCodePointValue(int ch)
123 if(0 <= ch && ch < UTF16.LEAD_SURROGATE_MIN_VALUE) {
125 offset = (m_index_[ch >> INDEX_STAGE_1_SHIFT_] << INDEX_STAGE_2_SHIFT_)
126 + (ch & INDEX_STAGE_3_MASK_);
131 offset = getCodePointOffset(ch);
141 * @param ch lead surrogate character
144 public final int getLeadValue(char ch)
146 return m_data_[getLeadOffset(ch)];
    [all...]
  /external/libpcap/msdos/
bin2c.c 20 int ch, i; local
34 while ((ch = fgetc(inFile)) != EOF)
38 fprintf (outFile, "0x%02X,", ch);
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_utility.cpp 123 uint8_t ch = src_buf[i]; local
124 if (ch >= 0x80 || PDFCharIsWhitespace(ch) || ch == '#' ||
125 PDFCharIsDelimiter(ch)) {
138 uint8_t ch = src_buf[i]; local
139 if (ch >= 0x80 || PDFCharIsWhitespace(ch) || ch == '#' ||
140 PDFCharIsDelimiter(ch)) {
    [all...]
  /external/pdfium/fxbarcode/oned/
BC_OnedCode128Writer.cpp 88 for (const auto& ch : contents) {
89 int32_t patternIndex = static_cast<int32_t>(ch);
100 wchar_t ch = contents[i]; local
101 if (ch > 175) {
105 filterChineseChar += ch;
109 for (const auto& ch : filterChineseChar) {
110 if (ch >= 32 && ch <= limit)
111 filtercontents += ch;
193 char ch = contents[position] local
    [all...]
  /external/scapy/test/tls/
example_client.py 25 ch = TLSClientHello(ciphers=int(sys.argv[1], 16)) variable
27 ch = None variable
29 t = TLSClientAutomaton(client_hello=ch,
  /external/syslinux/com32/lib/sys/
stdcon_read.c 46 char ch; local
52 ch = *bufp++ = *fp->i.datap++;
55 if (ch == '\n')
  /external/valgrind/none/tests/
syscall-restart1.c 33 char ch = '?'; local
44 ret = read(fds[0], &ch, 1);
48 ret, strerror(errno), ch);
  /libcore/luni/src/main/java/libcore/util/
CharsetUtils.java 57 char ch = s.charAt(i); local
58 result[resultIndex++] = (byte) (ch >> 8);
59 result[resultIndex++] = (byte) ch;
68 * char ch = (char) (data[start++] & 0xff);
69 * value[i] = (ch <= 0x7f) ? ch : REPLACEMENT_CHAR;
  /libcore/ojluni/src/main/java/sun/nio/ch/
SelectionKeyImpl.java 26 package sun.nio.ch;
50 SelectionKeyImpl(SelChImpl ch, SelectorImpl sel) {
51 channel = ch;
  /system/core/libutils/
Tokenizer.cpp 30 static inline bool isDelimiter(char ch, const char* delimiters) {
31 return strchr(delimiters, ch) != NULL;
116 char ch = *eol; local
117 if (ch == '\n') {
132 char ch = *mCurrent; local
133 if (ch == '\n' || isDelimiter(ch, delimiters)) {
147 char ch = *(mCurrent++); local
148 if (ch == '\n') {
161 char ch = *mCurrent local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
StringEscapeUtils.java 41 char ch = str.charAt(i); local
43 switch (ch) {
51 out.append(ch);
  /external/libchrome/base/strings/
safe_sprintf.cc 154 // Emits one |ch| character into the |buffer_| and updates the |count_| of
160 inline bool Out(char ch) {
162 buffer_[count_] = ch;
417 char ch = *back; local
419 *front++ = ch;
451 char ch = *fmt++; local
453 switch (ch) {
459 pad = ch == '0' ? '0' : ' ';
465 10*padding > max_padding - (ch - '0')) {
467 10*padding <= max_padding - (ch - '0'))
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/
3-1.c 133 pid_t ch, ctl; local
152 ch = fork();
154 if (ch == -1) {
158 if (ch == 0) { /* child */
197 ctl = waitpid(ch, &status, 0);
199 if (ctl != ch) {
  /external/python/cpython2/Lib/curses/
textpad.py 66 def _insert_printable_char(self, ch):
75 self.win.addch(ch)
84 def do_command(self, ch):
87 self.lastcmd = ch
88 if curses.ascii.isprint(ch):
90 self._insert_printable_char(ch)
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE):
104 elif ch == curses.ascii.EOT: # ^
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
dump_graph.cc 41 char ch = name[i]; local
42 if (ch == '/' || ch == '[' || ch == ']' || ch == '*' || ch == '?') {
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
Charsets.java 87 char ch = chars[i]; local
88 result[resultIndex++] = (byte) (ch >> 8);
89 result[resultIndex++] = (byte) ch;
98 * char ch = (char) (data[start++] & 0xff);
99 * value[i] = (ch <= 0x7f) ? ch : REPLACEMENT_CHAR;
109 char ch = (char) (bytes[start++] & 0xff); local
110 chars[i] = (ch <= 0x7f) ? ch : REPLACEMENT_CHAR;
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
textpad.py 66 def _insert_printable_char(self, ch):
75 self.win.addch(ch)
84 def do_command(self, ch):
87 self.lastcmd = ch
88 if curses.ascii.isprint(ch):
90 self._insert_printable_char(ch)
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE):
104 elif ch == curses.ascii.EOT: # ^
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
textpad.py 66 def _insert_printable_char(self, ch):
75 self.win.addch(ch)
84 def do_command(self, ch):
87 self.lastcmd = ch
88 if curses.ascii.isprint(ch):
90 self._insert_printable_char(ch)
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE):
104 elif ch == curses.ascii.EOT: # ^
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
timeout2.go 16 ch := make(chan Result, 1)
20 case ch <- c.DoQuery(query):
25 return <-ch
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue8017.go 14 var ch chan int
16 case <-ch:
17 case <-make(chan int, len([2][]int{([][]int{})[len(ch)], []int{}})):
  /prebuilts/go/linux-x86/doc/progs/
timeout2.go 16 ch := make(chan Result, 1)
20 case ch <- c.DoQuery(query):
25 return <-ch

Completed in 715 milliseconds

<<11121314151617181920>>