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

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/xml/parsers/
FilePathToURI.java 43 char ch; external variable declarations
45 ch = escChs[i];
46 gNeedEscaping[ch] = true;
47 gAfterEscaping1[ch] = gHexChs[ch >> 4];
48 gAfterEscaping2[ch] = gHexChs[ch & 0xf];
63 int len = path.length(), ch; local
68 ch = Character.toUpperCase(path.charAt(0));
69 if (ch >= 'A' && ch <= 'Z')
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/stream/
FilePathToURI.java 43 char ch; external variable declarations
45 ch = escChs[i];
46 gNeedEscaping[ch] = true;
47 gAfterEscaping1[ch] = gHexChs[ch >> 4];
48 gAfterEscaping2[ch] = gHexChs[ch & 0xf];
63 int len = path.length(), ch; local
68 ch = Character.toUpperCase(path.charAt(0));
69 if (ch >= 'A' && ch <= 'Z')
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/smartdial/map/
BulgarianSmartDialMap.java 40 Optional<Character> normalizeCharacter(char ch) {
41 ch = Character.toLowerCase(ch);
42 return isValidDialpadAlphabeticChar(ch) ? Optional.of(ch) : Optional.absent();
CompositeSmartDialMap.java 58 public static boolean isValidDialpadCharacter(Context context, char ch) {
59 if (DEFAULT_MAP.isValidDialpadCharacter(ch)) {
64 return extraMap.isPresent() && extraMap.get().isValidDialpadCharacter(ch);
73 public static boolean isValidDialpadAlphabeticChar(Context context, char ch) {
74 if (DEFAULT_MAP.isValidDialpadAlphabeticChar(ch)) {
79 return extraMap.isPresent() && extraMap.get().isValidDialpadAlphabeticChar(ch);
85 public static boolean isValidDialpadNumericChar(Context context, char ch) {
86 if (DEFAULT_MAP.isValidDialpadNumericChar(ch)) {
91 return extraMap.isPresent() && extraMap.get().isValidDialpadNumericChar(ch);
102 public static byte getDialpadIndex(Context context, char ch) {
    [all...]
RussianSmartDialMap.java 40 Optional<Character> normalizeCharacter(char ch) {
41 ch = Character.toLowerCase(ch);
42 return isValidDialpadAlphabeticChar(ch) ? Optional.of(ch) : Optional.absent();
UkrainianSmartDialMap.java 39 Optional<Character> normalizeCharacter(char ch) {
40 ch = Character.toLowerCase(ch);
41 return isValidDialpadAlphabeticChar(ch) ? Optional.of(ch) : Optional.absent();
  /external/turbine/java/com/google/turbine/parse/
StreamLexer.java 32 private char ch; field in class:StreamLexer
61 ch = reader.next();
87 switch (ch) {
99 switch (ch) {
103 switch (ch) {
120 switch (ch) {
143 if (ch == '=') {
258 switch (ch) {
311 switch (ch) {
315 if (ch == '.')
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLCharacterRecognizer.java 24 * Class used to verify whether the specified <var>ch</var>
32 * Returns whether the specified <var>ch</var> conforms to the XML 1.0 definition
35 * @param ch Character to check as XML whitespace.
36 * @return =true if <var>ch</var> is XML whitespace; otherwise =false.
38 public static boolean isWhiteSpace(char ch)
40 return (ch == 0x20) || (ch == 0x09) || (ch == 0xD) || (ch == 0xA);
46 * @param ch Character array to check as XML whitespace
    [all...]
  /external/python/cpython3/Modules/clinic/
_cursesmodule.c.h 6 "addch([y, x,] ch, [attr])\n"
7 "Paint character ch at (y, x) with attributes attr.\n"
13 " ch\n"
18 "Paint character ch at (y, x) with attributes attr,\n"
28 int x, PyObject *ch, int group_right_1, long attr);
37 PyObject *ch; local
43 if (!PyArg_ParseTuple(args, "O:addch", &ch)) {
48 if (!PyArg_ParseTuple(args, "Ol:addch", &ch, &attr)) {
54 if (!PyArg_ParseTuple(args, "iiO:addch", &y, &x, &ch)) {
60 if (!PyArg_ParseTuple(args, "iiOl:addch", &y, &x, &ch, &attr))
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V40.java 65 char ch = text.charAt(i); local
66 if (ch == '\\' && i < length - 1) {
74 builder.append(ch);
80 public static String unescapeCharacter(final char ch) {
81 if (ch == 'n' || ch == 'N') {
84 return String.valueOf(ch);
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileLockImpl.java 26 package sun.nio.ch;
56 Channel ch = acquiredBy(); local
57 if (!ch.isOpen())
60 if (ch instanceof FileChannelImpl)
61 ((FileChannelImpl)ch).release(this);
62 else if (ch instanceof AsynchronousFileChannelImpl)
63 ((AsynchronousFileChannelImpl)ch).release(this);
ChannelInputStream.java 27 package sun.nio.ch;
53 public static int read(ReadableByteChannel ch, ByteBuffer bb)
56 if (ch instanceof SelectableChannel) {
57 SelectableChannel sc = (SelectableChannel)ch;
65 int n = ch.read(bb);
72 return ch.read(bb);
76 protected final ReadableByteChannel ch; field in class:ChannelInputStream
81 public ChannelInputStream(ReadableByteChannel ch) {
82 this.ch = ch;
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
PpScanner.cpp 102 int TPpContext::lFloatConst(int len, int ch, TPpToken* ppToken)
118 const auto saveName = [&](int ch) {
120 ppToken->name[len++] = static_cast<char>(ch);
125 if (ch == '.') {
127 saveName(ch);
128 ch = getChar();
131 if (ch == '#') {
139 if ((ch = getChar()) != 'I' ||
140 (ch = getChar()) != 'N' ||
141 (ch = getChar()) != 'F'
266 int ch = getChar(); local
333 int ch = 0; local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/dram/
suspend.c 23 #define CRU_SFTRST_DDR_CTRL(ch, n) ((0x1 << (8 + 16 + (ch) * 4)) | \
24 ((n) << (8 + (ch) * 4)))
25 #define CRU_SFTRST_DDR_PHY(ch, n) ((0x1 << (9 + 16 + (ch) * 4)) | \
26 ((n) << (9 + (ch) * 4)))
131 static __pmusramfunc void phy_pctrl_reset(uint32_t ch)
133 rkclk_ddr_reset(ch, 1, 1);
135 rkclk_ddr_reset(ch, 1, 0);
137 rkclk_ddr_reset(ch, 0, 0)
429 struct rk3399_sdram_channel *ch = &sdram_params->ch[channel]; local
544 uint32_t ch, ch_count; local
666 uint32_t ch, byte, i; local
    [all...]
  /external/python/cpython3/Objects/stringlib/
codecs.h 18 #define IS_CONTINUATION_BYTE(ch) ((ch) >= 0x80 && (ch) < 0xC0)
25 Py_UCS4 ch; local
31 ch = (unsigned char)*s;
33 if (ch < 0x80) {
87 ch = (unsigned char)*s;
89 if (ch < 0x80) {
91 *p++ = ch;
96 if (ch < 0xE0)
295 Py_UCS4 ch = data[i++]; local
497 Py_UCS4 ch; local
646 Py_UCS4 ch = *in++; local
773 Py_UCS4 ch; local
802 Py_UCS4 ch = *in++; local
    [all...]
  /dalvik/dx/src/com/android/dex/
Mutf8.java 70 char ch = s.charAt(i); local
71 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
73 } else if (ch <= 2047) {
92 char ch = s.charAt(i); local
93 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
94 dst[offset++] = (byte) ch;
95 } else if (ch <= 2047) {
96 dst[offset++] = (byte) (0xc0 | (0x1f & (ch >> 6)))
    [all...]
  /external/curl/docs/examples/
usercertinmem.c 177 CURL *ch; local
181 ch = curl_easy_init();
182 rv = curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
183 rv = curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
184 rv = curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
185 rv = curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L);
186 rv = curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, writefunction);
187 rv = curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout);
188 rv = curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, writefunction);
189 rv = curl_easy_setopt(ch, CURLOPT_HEADERDATA, stderr)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UnicodeNormalizer.java 104 int ch; local
107 ch = UTF16Util.nextCodePoint(source, i);
108 i+=UTF16Util.codePointLength(ch);
109 data.getRecursiveDecomposition(canonical, ch, buffer);
116 ch = UTF16Util.nextCodePoint(buffer, j);
117 j+=UTF16Util.codePointLength(ch);
118 int chClass = data.getCanonicalClass(ch);
130 UTF16Util.insertCodePoint(target, k, ch);
152 int ch = UTF16Util.nextCodePoint(target, decompPos); local
153 decompPos += UTF16Util.codePointLength(ch);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UnicodeNormalizer.java 101 int ch; local
104 ch = UTF16Util.nextCodePoint(source, i);
105 i+=UTF16Util.codePointLength(ch);
106 data.getRecursiveDecomposition(canonical, ch, buffer);
113 ch = UTF16Util.nextCodePoint(buffer, j);
114 j+=UTF16Util.codePointLength(ch);
115 int chClass = data.getCanonicalClass(ch);
127 UTF16Util.insertCodePoint(target, k, ch);
149 int ch = UTF16Util.nextCodePoint(target, decompPos); local
150 decompPos += UTF16Util.codePointLength(ch);
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java 247 final char ch = this.currentHeader.charAt(from); local
248 if (isTokenSeparator(ch) || isWhitespace(ch)) {
300 final char ch = this.currentHeader.charAt(from); local
301 if (isTokenSeparator(ch)) {
303 } else if (isWhitespace(ch)) {
305 } else if (isTokenChar(ch)) {
353 * @param ch the character to check
358 protected boolean isTokenSeparator(char ch) {
359 return (ch == ',')
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
sieve.go 7 // Send the sequence 2, 3, 4, ... to channel 'ch'.
8 func Generate(ch chan<- int) {
10 ch <- i // Send 'i' to channel 'ch'.
27 ch := make(chan int) // Create a new channel.
28 go Generate(ch) // Launch Generate goroutine.
30 prime := <-ch
33 go Filter(ch, ch1, prime)
34 ch = ch1
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
reflect_test.go 13 ch := make(chan bool, 1)
18 ch <- true
21 <-ch
25 ch := make(chan bool, 1)
30 ch <- true
33 <-ch
37 ch := make(chan bool, 1)
42 ch <- true
45 <-ch
  /prebuilts/go/linux-x86/doc/play/
sieve.go 7 // Send the sequence 2, 3, 4, ... to channel 'ch'.
8 func Generate(ch chan<- int) {
10 ch <- i // Send 'i' to channel 'ch'.
27 ch := make(chan int) // Create a new channel.
28 go Generate(ch) // Launch Generate goroutine.
30 prime := <-ch
33 go Filter(ch, ch1, prime)
34 ch = ch1
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
reflect_test.go 13 ch := make(chan bool, 1)
18 ch <- true
21 <-ch
25 ch := make(chan bool, 1)
30 ch <- true
33 <-ch
37 ch := make(chan bool, 1)
42 ch <- true
45 <-ch
  /external/libjpeg-turbo/
rdswitch.c 29 register int ch; local
31 ch = getc(file);
32 if (ch == '#') {
34 ch = getc(file);
35 } while (ch != '\n' && ch != EOF);
37 return ch;
46 register int ch; local
51 ch = text_getc(file);
52 if (ch == EOF)
148 register int ch; local
326 char ch; local
366 char ch; local
    [all...]

Completed in 1727 milliseconds

1 2 3 45 6 7 8 91011>>