Searched defs:ch (Results 51 - 75 of 971) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBoundaries.cpp42 UChar32 ch; local
43 U16_NEXT(characters, i, length, ch);
44 if (!requiresContextForWordBoundary(ch))
54 UChar32 ch; local
55 U16_PREV(characters, 0, i, ch);
56 if (!requiresContextForWordBoundary(ch))
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringHash.h68 template<typename T> static inline UChar foldCase(T ch) argument
70 return WTF::Unicode::foldCase(ch);
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_util.cpp37 String::String(char ch) { argument
39 Assign(&ch, 1);
/external/chromium_org/third_party/icu/source/common/
H A Dbytestrie.cpp435 char ch=(char)c; local
436 out.Append(&ch, 1);
/external/chromium_org/third_party/icu/source/samples/citer/
H A Dciter.cpp25 void printUChar(UChar32 ch) argument
27 if(ch < 127) {
28 u_fprintf(out, "%C", (UChar) ch);
29 } else if (ch == CharacterIterator::DONE) {
32 u_fprintf(out, "[%X]", ch);
/external/chromium_org/third_party/icu/source/samples/datefmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/chromium_org/third_party/icu/source/samples/msgfmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/chromium_org/third_party/icu/source/samples/translit/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/chromium_org/third_party/icu/source/test/perf/strsrchperf/
H A Dstrsrchperf.cpp47 UChar ch = src[end]; local
49 if (ch == 0x000A || ch == 0x000D || ch == 0x2028) {
/external/chromium_org/third_party/libjpeg_turbo/
H A Djerror.c163 char ch; local
184 while ((ch = *msgptr++) != '\0') {
185 if (ch == '%') {
/external/chromium_org/third_party/webrtc/base/
H A Durlencode.cc75 static bool IsValidUrlChar(char ch, bool unsafe_only) { argument
77 return !(ch <= ' ' || strchr("\\\"^&`<>[]{}", ch));
79 return isalnum(ch) || strchr("-_.!~*'()", ch);
102 unsigned char ch = static_cast<unsigned char>(*source); local
105 } else if (IsValidUrlChar(ch, unsafe_only)) {
112 *dest++ = digits[(ch >> 4) & 0x0F];
113 *dest++ = digits[ ch & 0x0F];
/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();
/external/chromium_org/tools/gn/
H A Descape.cc36 inline void NinjaEscapeChar(char ch, DestString* dest) { argument
37 if (ch == '$' || ch == ' ' || ch == ':')
39 dest->push_back(ch);
/external/chromium_org/ui/base/ime/
H A Dinput_method_minimal.cc36 const uint16 ch = event.GetCharacter(); local
37 if (ch) {
38 GetTextInputClient()->InsertChar(ch, event.flags());
/external/chromium_org/url/
H A Durl_file.h18 inline bool IsWindowsDriveSeparator(base::char16 ch) { argument
19 return ch == ':' || ch == '|';
21 inline bool IsWindowsDriveLetter(base::char16 ch) { argument
22 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z');
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp106 char ch = *it; local
107 if (ch == 'C' || ch == 'c') {
109 if (ch == 'c' && it != start && isLetter(*(it - 1)))
/external/deqp/executor/
H A DxeXMLWriter.cpp35 inline const char* getEscapeEntity (char ch) argument
37 switch (ch)
83 int EscapeStreambuf::overflow (int ch) argument
85 if (ch == -1)
89 DE_ASSERT((ch & 0xff) == ch);
90 const char chVal = (char)(deUint8)(ch & 0xff);
91 return xsputn(&chVal, 1) == 1 ? ch : -1;
/external/fsck_msdos/
H A Dmain.c74 int ch; local
77 while ((ch = getopt(argc, argv, "CfFnpy")) != -1) {
78 switch (ch) {
/external/icu/icu4c/source/common/
H A Dbytestrie.cpp435 char ch=(char)c; local
436 out.Append(&ch, 1);
/external/icu/icu4c/source/samples/citer/
H A Dciter.cpp25 void printUChar(UChar32 ch) argument
27 if(ch < 127) {
28 u_fprintf(out, "%C", (UChar) ch);
29 } else if (ch == CharacterIterator::DONE) {
32 u_fprintf(out, "[%X]", ch);
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/samples/translit/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/test/perf/strsrchperf/
H A Dstrsrchperf.cpp47 UChar ch = src[end]; local
49 if (ch == 0x000A || ch == 0x000D || ch == 0x2028) {

Completed in 4147 milliseconds

1234567891011>>