Searched refs:ch (Results 201 - 225 of 1393) sorted by relevance

1234567891011>>

/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java368 char ch;
384 ch = patArr[i];
385 if (ch != '?') {
386 if (different(caseSensitive, ch, strArr[i])) {
400 ch = patArr[patIdxStart];
401 if (ch == '*' || strIdxStart > strIdxEnd) {
404 if (ch != '?') {
405 if (different(caseSensitive, ch, strArr[strIdxStart])) {
420 ch = patArr[patIdxEnd];
421 if (ch
496 different( boolean caseSensitive, char ch, char other) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToStream.java940 protected boolean escapingNotNeeded(char ch) argument
943 if (ch < 127)
947 if (ch >= CharInfo.S_SPACE || (CharInfo.S_LINEFEED == ch ||
948 CharInfo.S_CARRIAGERETURN == ch || CharInfo.S_HORIZONAL_TAB == ch))
954 ret = m_encodingInfo.isInEncoding(ch);
972 * @param ch Character array.
983 protected int writeUTF16Surrogate(char c, char ch[], int i, int end) argument
996 final char low = ch[
1057 accumDefaultEntity( java.io.Writer writer, char ch, int i, char[] chars, int len, boolean fromTextNode, boolean escLF) argument
1107 writeNormalizedChars( char ch[], int start, int length, boolean isCData, boolean useSystemLineSeparator) argument
1256 cdata(char ch[], int start, final int length) argument
1344 charactersRaw(char ch[], int start, int length) argument
1674 isCharacterInC0orC1Range(char ch) argument
1689 isNELorLSEPCharacter(char ch) argument
1706 processDirty( char[] chars, int end, int i, char ch, int lastDirty, boolean fromTextNode) argument
1783 accumDefaultEscape( Writer writer, char ch, int i, char[] chars, int len, boolean fromTextNode, boolean escLF) argument
2391 comment(char ch[], int start, int length) argument
2536 ignorableWhitespace(char ch[], int start, int length) argument
2983 setContentHandler(ContentHandler ch) argument
[all...]
H A DEncodingInfo.java30 * isInEncoding(char ch);
99 * @param ch the char in question.
104 public boolean isInEncoding(char ch) { argument
113 return m_encoding.isInEncoding(ch);
172 public boolean isInEncoding(char ch); argument
373 // needing to call inEncoding(char ch, String encoding)
378 // inEncoding(char ch, String encoding)
418 * @param ch the char in question, that is not a high char of
425 private static boolean inEncoding(char ch, String encoding) { argument
429 cArray[0] = ch;
494 inEncoding(char ch, byte[] data) argument
[all...]
/external/qemu/android/base/files/
H A DPathUtils_unittest.cpp28 int ch; member in struct:android::base::__anon29044
39 int ch = kData[n].ch; local
41 PathUtils::isDirSeparator(ch, kHostPosix))
42 << "Testing '" << ch << "'";
44 PathUtils::isDirSeparator(ch, kHostWin32))
45 << "Testing '" << ch << "'";
47 PathUtils::isDirSeparator(ch))
48 << "Testing '" << ch << "'";
54 int ch; member in struct:android::base::__anon29045
65 int ch = kData[n].ch; local
[all...]
/external/openssl/crypto/bio/
H A Db_print.c178 char ch; local
192 ch = *format++;
195 if (ch == '\0' || (buffer == NULL && currlen >= *maxlen))
200 if (ch == '%')
203 doapr_outch(sbuffer,buffer, &currlen, maxlen, ch);
204 ch = *format++;
207 switch (ch) {
210 ch = *format++;
214 ch = *format++;
218 ch
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dmatchbrackets.js20 var line = cm.getLineHandle(where.line), pos = where.ch - 1;
24 if (strict && (dir > 0) != (pos == where.ch)) return null;
30 match: found && found.ch == match.charAt(0), forward: dir > 0};
53 if (lineNo == where.line) pos = where.ch - (dir < 0 ? 1 : 0);
55 var ch = line.charAt(pos);
56 if (re.test(ch) && (style === undefined || cm.getTokenTypeAt(Pos(lineNo, pos + 1)) == style)) {
57 var match = matching[ch];
58 if ((match.charAt(1) == ">") == (dir > 0)) stack.push(ch);
59 else if (!stack.length) return {pos: Pos(lineNo, pos), ch: ch};
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DUnicodeRange.cpp430 unsigned findCharUnicodeRange(UChar32 ch) argument
432 if (ch >= 0xFFFF)
438 range = gUnicodeSubrangeTable[0][ch >> 12];
445 range = gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x0f00) >> 8];
449 return gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x00f0) >> 4];
452 return gUnicodeTertiaryRangeTable[(ch - 0x0700) >> 7];
/external/chromium_org/third_party/icu/source/io/
H A Dustream.cpp90 char ch; local
97 ch = stream.get();
105 sLimit = &ch + (int)continueReading;
107 s = &ch;
129 buffer[idx++] = ch;
154 buffer[idx++] = ch;
/external/icu/icu4c/source/io/
H A Dustream.cpp90 char ch; local
97 ch = stream.get();
105 sLimit = &ch + (int)continueReading;
107 s = &ch;
129 buffer[idx++] = ch;
154 buffer[idx++] = ch;
/external/oprofile/libutil++/
H A Dstring_manip.cpp23 string erase_to_last_of(string const & str, char ch) argument
26 string::size_type pos = result.find_last_of(ch);
60 char ch = str[pos]; local
61 if (ch == '\\') {
68 } else if (ch == sep) {
73 next += ch;
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DFilterUrlByProtocolAttributePolicy.java97 char ch = s.charAt(i);
98 switch (ch) {
106 ch = s.charAt(i);
107 switch (ch) {
117 if (ch > 0x100 && !colonsIrrelevant) {
123 switch (ch) {
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DElementPolicyTest.java22 final char ch; field in class:ElementPolicyTest.HasCharElementPolicy
24 HasCharElementPolicy(char ch) { argument
25 this.ch = ch;
31 return elementName.indexOf(ch) >= 0 ? elementName : null;
36 return "(has '" + ch + "')";
/external/qemu/scripts/
H A Dqapi.py43 for ch in schema.src[0:schema.pos]:
44 if ch == '\n':
47 elif ch == '\t':
84 ch = self.src[self.cursor]
86 if ch == '\n':
90 string += ch
92 elif ch == "\\":
94 elif ch == "'":
98 string += ch
202 for ch i
[all...]
/external/aac/libAACdec/src/
H A Daacdecoder.cpp794 int ch; local
799 for (ch=0; ch<(8); ch++) {
800 if (self->pAacDecoderStaticChannelInfo[ch] != NULL) {
801 if (self->pAacDecoderStaticChannelInfo[ch]->pOverlapBuffer != NULL) {
802 FreeOverlapBuffer (&self->pAacDecoderStaticChannelInfo[ch]->pOverlapBuffer);
804 if (self->pAacDecoderStaticChannelInfo[ch] != NULL) {
805 FreeAacDecoderStaticChannelInfo (&self->pAacDecoderStaticChannelInfo[ch]);
808 if (self->pAacDecoderChannelInfo[ch] !
840 INT ascChannels, ch, ascChanged = 0; local
1147 int ch; local
1186 int ch; local
1248 int ch; local
[all...]
/external/chromium_org/content/test/plugin/
H A Dplugin_test.cc58 const char ch = sIn.at(idx); local
59 if (isalnum(ch)) {
60 sOut.append(1, ch);
61 } else if (isspace(ch) && ((ch != '\n') && (ch != '\r'))) {
65 sOut.append(1, toHex(ch>>4));
66 sOut.append(1, toHex(ch%16));
/external/chromium_org/media/base/
H A Daudio_bus_unittest.cc47 for (int ch = 0; ch < result->channels(); ++ch) {
49 SCOPED_TRACE(base::StringPrintf("ch=%d, i=%d", ch, i));
51 ASSERT_FLOAT_EQ(expected->channel(ch)[i], result->channel(ch)[i]);
53 ASSERT_NEAR(expected->channel(ch)[i], result->channel(ch)[i],
268 for (int ch
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableSectionElement.idl23 [Reflect=char] attribute DOMString ch;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer1.c79 unsigned char ch = argv[1][i]; local
81 if( ch>=0x80 ){
85 t->delim[ch] = 1;
193 unsigned char ch = p[iStartOffset+i]; local
194 c->pToken[i] = (ch>='A' && ch<='Z') ? (ch - 'A' + 'a') : ch;
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_tokenizer1.c80 unsigned char ch = argv[1][i]; local
82 if( ch>=0x80 ){
86 t->delim[ch] = 1;
197 unsigned char ch = p[iStartOffset+i]; local
198 c->pToken[i] = (char)((ch>='A' && ch<='Z') ? ch-'A'+'a' : ch);
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_external_media_impl.cc75 voe::ChannelOwner ch = local
77 voe::Channel* channelPtr = ch.channel();
119 voe::ChannelOwner ch = local
121 voe::Channel* channelPtr = ch.channel();
157 voe::ChannelOwner ch = shared_->channel_manager().GetChannel(channel); local
158 voe::Channel* channelPtr = ch.channel();
195 voe::ChannelOwner ch = shared_->channel_manager().GetChannel(channel); local
196 voe::Channel* channelPtr = ch.channel();
H A Dvoe_network_impl.cc57 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
58 voe::Channel* channelPtr = ch.channel();
78 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
79 voe::Channel* channelPtr = ch.channel();
120 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
121 voe::Channel* channelPtr = ch.channel();
161 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
162 voe::Channel* channelPtr = ch.channel();
H A Dvoe_file_impl.cc74 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
75 voe::Channel* channelPtr = ch.channel();
110 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
111 voe::Channel* channelPtr = ch.channel();
136 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
137 voe::Channel* channelPtr = ch.channel();
156 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
157 voe::Channel* channelPtr = ch.channel();
216 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
217 voe::Channel* channelPtr = ch
293 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
337 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
365 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
400 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
430 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
457 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
[all...]
/external/clang/test/SemaCXX/
H A Dcxx11-inheriting-ctors.cpp21 U<S, char> foo(char ch) { return U<S, char>(ch); } argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js19 var ch=typeStr.substring(idx+1, idx+2)
20 switch (ch) {
/external/chromium_org/net/base/
H A Ddns_util.cc19 char ch; local
24 ch = *buf++;
26 if (ch == '.') {
39 label[labellen++] = ch;

Completed in 596 milliseconds

1234567891011>>