HomeSort by relevance Sort by last modified time
    Searched defs:ch (Results 151 - 175 of 2799) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketOptionRegistry.java 28 package sun.nio.ch;
MembershipKeyImpl.java 26 package sun.nio.ch;
41 private final MulticastChannel ch; field in class:MembershipKeyImpl
55 private MembershipKeyImpl(MulticastChannel ch,
60 this.ch = ch;
74 Type4(MulticastChannel ch,
82 super(ch, group, interf, source);
109 Type6(MulticastChannel ch,
117 super(ch, group, interf, source);
147 ((DatagramChannelImpl)ch).drop(this)
    [all...]
  /packages/apps/Email/src/com/beetstra/jutf7/
Base64Util.java 75 final char ch = this.alphabet[i]; local
76 if (ch >= 128)
77 throw new IllegalArgumentException("invalid character in alphabet: " + ch);
78 inverseAlphabet[ch] = i;
86 * @param ch The character, as a ASCII encoded byte
90 int getSextet(final byte ch) {
91 if (ch >= 128)
93 return inverseAlphabet[ch];
99 * @param ch The character
100 * @return true if the alphabet contains <code>ch</code>, false otherwise
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Dispatcher1.java 83 public void register(SelectableChannel ch, int ops, Handler h)
85 ch.register(sel, ops, h);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Dispatcher1.java 83 public void register(SelectableChannel ch, int ops, Handler h)
85 ch.register(sel, ops, h);
  /system/core/healthd/
charger.cpp 83 int ch; local
87 while ((ch = getopt(argc, argv, "cr")) != -1) {
88 switch (ch) {
  /system/core/toolbox/upstream-netbsd/bin/dd/
conv.c 120 int ch = 0; /* pacify gcc */ local
153 cnt < maxlen && (ch = *inp++) != '\n'; ++cnt)
154 *outp++ = t[ch];
157 cnt < maxlen && (ch = *inp++) != '\n'; ++cnt)
158 *outp++ = ch;
163 if (ch != '\n' && in.dbcnt < cbsz) {
170 if (ch == '\n')
  /system/extras/simpleperf/
build_id.h 48 unsigned char ch = 0; local
50 ch <<= 4;
52 ch |= s[j] - '0';
54 ch |= s[j] - 'a' + 10;
56 ch |= s[j] - 'A' + 10;
59 data_[i / 2] = ch;
  /system/sepolicy/tools/sepolicy-analyze/
attribute.c 78 char ch; local
86 while ((ch = getopt_long(argc, argv, "lr", attribute_options, NULL)) != -1) {
87 switch (ch) {
  /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/slf4j/log4j-over-slf4j/compatibility/lib/
logback-core-0.9.8-SNAPSHOT.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/tools/common/m2/repository/xpp3/xpp3_min/1.1.4c/
xpp3_min-1.1.4c.jar 
  /bionic/libc/dns/nameser/
ns_ttl.c 84 int ch; local
86 for (p = odst; (ch = *p) != '\0'; p++)
87 if (isascii(ch) && isupper(ch))
88 *p = tolower(ch);
99 int ch, digits, dirty; local
105 while ((ch = *src++) != '\0') {
106 if (!isascii(ch) || !isprint(ch))
108 if (isdigit(ch)) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytes_methods.c 220 register const unsigned char ch = *p; local
222 if (Py_ISUPPER(ch)) {
228 else if (Py_ISLOWER(ch)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytes_methods.c 220 register const unsigned char ch = *p; local
222 if (Py_ISUPPER(ch)) {
228 else if (Py_ISLOWER(ch)) {
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_ttl.c 114 int ch; local
116 for (p = odst; (ch = *p) != '\0'; p++)
117 if (isascii(ch) && isupper(ch))
118 *p = (char)( tolower(ch));
127 int ch, digits, dirty; local
133 while ((ch = *src++) != '\0') {
134 if (!isascii(ch) || !isprint(ch))
136 if (isdigit(ch)) {
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
strptime.c 357 unsigned char ch; local
362 ch = *buf;
363 if (ch < '0' || ch > '9')
368 result += ch - '0';
370 ch = *++buf;
371 } while ((result * 10 <= ulim) && rulim && ch >= '0' && ch <= '9');
  /external/aac/libFDK/src/
FDK_qmf_domain.cpp 206 int ch; local
208 for (ch = 0; ch < ((8) + (1)); ch++) {
209 if (qd->QmfDomainIn[ch].pAnaQmfStates) {
211 FreeAnaQmfStates16(&qd->QmfDomainIn[ch].pAnaQmfStates);
214 FreeAnaQmfStates24(&qd->QmfDomainIn[ch].pAnaQmfStates);
217 FreeAnaQmfStates32(&qd->QmfDomainIn[ch].pAnaQmfStates);
219 FreeAnaQmfStates(&qd->QmfDomainIn[ch].pAnaQmfStates);
223 if (qd->QmfDomainIn[ch].pOverlapBuffer)
266 int ch; local
391 int ch, size; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
SerializerSwitcher.java 107 ContentHandler ch = serializer.asContentHandler(); local
109 transformer.setContentHandler(ch);
  /external/e2fsprogs/lib/support/
argv_parse.c 49 char **argv, **new_argv, *buf, ch; local
59 for (cp = in_buf; (ch = *cp); cp++) {
61 if (isspace((int) ch))
79 if (ch == '"')
82 *outcp++ = ch;
86 if (isspace((int) ch)) {
95 if (ch == '"') {
99 if (ch == '\\') {
100 ch = *++cp;
101 switch (ch) {
    [all...]
  /external/eigen/unsupported/test/
matrix_exponential.cpp 53 T angle, ch, sh; local
58 ch = std::cosh(angle);
61 B << ch, sh*imagUnit, -sh*imagUnit, ch; local

Completed in 1430 milliseconds

1 2 3 4 5 67 8 91011>>