Searched refs:ch (Results 226 - 250 of 1393) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/common/unicode/
H A Dsymtable.h83 * @param ch a 32-bit code point from 0 to 0x10FFFF inclusive.
85 * character, or NULL if there is no mapping for ch.
88 virtual const UnicodeFunctor* lookupMatcher(UChar32 ch) const = 0;
/external/chromium_org/third_party/icu/source/common/
H A Dushape.cpp398 changeLamAlef(UChar ch) { argument
399 switch(ch) {
419 getLink(UChar ch) { argument
420 if(ch >= 0x0622 && ch <= 0x06D3) {
421 return(araLink[ch-0x0622]);
422 } else if(ch == 0x200D) {
424 } else if(ch >= 0x206D && ch <= 0x206F) {
426 }else if(ch >
463 isTashkeelChar(UChar ch) argument
472 isTashkeelCharFE(UChar ch) argument
481 isAlefChar(UChar ch) argument
490 isLamAlefChar(UChar ch) argument
500 isTailChar(UChar ch) argument
515 isSeenTailFamilyChar(UChar ch) argument
529 isSeenFamilyChar(UChar ch) argument
544 isAlefMaksouraChar(UChar ch) argument
554 isYehHamzaChar(UChar ch) argument
570 isTashkeelOnTatweelChar(UChar ch) argument
589 isIsolatedTashkeelChar(UChar ch) argument
[all...]
/external/chromium_org/third_party/pexpect/
H A Dscreen.py101 def fill (self, ch=SPACE):
103 self.fill_region (1,1,self.rows,self.cols, ch)
105 def fill_region (self, rs,cs, re,ce, ch=SPACE):
117 self.put_abs (r,c,ch)
153 def put_abs (self, r, c, ch):
159 ch = str(ch)[0]
160 self.w[r-1][c-1] = ch
162 def put (self, ch):
167 self.put_abs (self.cur_r, self.cur_c, ch)
[all...]
/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/icu/icu4c/source/common/unicode/
H A Dsymtable.h83 * @param ch a 32-bit code point from 0 to 0x10FFFF inclusive.
85 * character, or NULL if there is no mapping for ch.
88 virtual const UnicodeFunctor* lookupMatcher(UChar32 ch) const = 0;
/external/icu/icu4c/source/common/
H A Dushape.cpp422 changeLamAlef(UChar ch) { argument
423 switch(ch) {
443 getLink(UChar ch) { argument
444 if(ch >= 0x0622 && ch <= 0x06D3) {
445 return(araLink[ch-0x0622]);
446 } else if(ch == 0x200D) {
448 } else if(ch >= 0x206D && ch <= 0x206F) {
450 }else if(ch >
487 isTashkeelChar(UChar ch) argument
496 isTashkeelCharFE(UChar ch) argument
505 isAlefChar(UChar ch) argument
514 isLamAlefChar(UChar ch) argument
524 isTailChar(UChar ch) argument
539 isSeenTailFamilyChar(UChar ch) argument
553 isSeenFamilyChar(UChar ch) argument
568 isAlefMaksouraChar(UChar ch) argument
578 isYehHamzaChar(UChar ch) argument
594 isTashkeelOnTatweelChar(UChar ch) argument
613 isIsolatedTashkeelChar(UChar ch) argument
[all...]
/external/icu/icu4c/source/layout/
H A DDefaultCharMapper.h53 LEUnicode32 mapChar(LEUnicode32 ch) const;
H A DThaiShaping.cpp31 le_uint8 ThaiShaping::getCharClass(LEUnicode ch) argument
35 if (ch >= 0x0E00 && ch <= 0x0E5B) {
36 charClass = classTable[ch - 0x0E00];
228 le_uint8 ThaiShaping::getNextState(LEUnicode ch, le_uint8 prevState, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar, argument
233 charClass = getCharClass(ch);
236 return doTransition(transition, ch, inputIndex, glyphSet, errorChar, output, glyphStorage, outputIndex);
239 le_bool ThaiShaping::isLegalHere(LEUnicode ch, le_uint8 prevState) argument
241 le_uint8 charClass = getCharClass(ch);
276 LEUnicode ch local
[all...]
/external/lldb/test/pexpect-2.4/
H A Dscreen.py85 def fill (self, ch=SPACE):
87 self.fill_region (1,1,self.rows,self.cols, ch)
89 def fill_region (self, rs,cs, re,ce, ch=SPACE):
101 self.put_abs (r,c,ch)
137 def put_abs (self, r, c, ch):
143 ch = str(ch)[0]
144 self.w[r-1][c-1] = ch
146 def put (self, ch):
151 self.put_abs (self.cur_r, self.cur_c, ch)
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_unicode.cpp15 FX_BOOL FX_IsCtrlCode(FX_WCHAR ch) argument
17 FX_DWORD dwRet = (gs_FX_TextLayout_CodeProperties[(FX_WORD)ch] & FX_CHARTYPEBITSMASK);
20 FX_BOOL FX_IsRotationCode(FX_WCHAR ch) argument
22 return (gs_FX_TextLayout_CodeProperties[(FX_WORD)ch] & 0x8000) != 0;
/external/qemu/
H A DMakefile23 %.c: %.w %.ch
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DLatin1Converter.java171 * @param ch
175 private static byte[] convertToUTF8(byte ch) argument
177 int c = ch & 0xFF;
188 return new String(new byte[] { ch }, "cp1252").getBytes("UTF-8");
195 return new byte[] { ch };
/external/chromium_org/third_party/skia/src/animator/
H A DSkScript.cpp169 char ch = start[0]; local
170 if (! is_between(ch, 'a' , 'z') && ! is_between(ch, 'A', 'Z') && ch != '_' && ch != '$')
174 ch = start[++length];
175 while (is_between(ch, 'a' , 'z') || is_between(ch, 'A', 'Z') || is_between(ch, '0', '9') ||
176 ch
201 arithmeticOp(char ch, char nextChar, bool lastPush) argument
399 char ch; // see if it is a simple member or a function local
440 char ch; local
520 char ch; local
1075 logicalOp(char ch, char nextChar) argument
[all...]
/external/skia/src/animator/
H A DSkScript.cpp169 char ch = start[0]; local
170 if (! is_between(ch, 'a' , 'z') && ! is_between(ch, 'A', 'Z') && ch != '_' && ch != '$')
174 ch = start[++length];
175 while (is_between(ch, 'a' , 'z') || is_between(ch, 'A', 'Z') || is_between(ch, '0', '9') ||
176 ch
201 arithmeticOp(char ch, char nextChar, bool lastPush) argument
399 char ch; // see if it is a simple member or a function local
440 char ch; local
520 char ch; local
1075 logicalOp(char ch, char nextChar) argument
[all...]
/external/aac/libSBRenc/src/
H A Denv_est.cpp1004 int ch, i, j, c, YSzShift = h_envChan[0]->sbrExtractEnvelope.YBufferSzShift; local
1109 for (ch = 0; ch < nChannels;ch++)
1111 HANDLE_ENV_CHANNEL hEnvChan = h_envChan[ch];
1113 SBR_ENV_TEMP_DATA *ed = &eData[ch];
1192 } /* ch */
1199 for (ch = 0; ch < nChannels;ch
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERGenerator.java80 int ch;
82 while ((ch = contentStream.read()) >= 0)
84 _out.write(ch);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A D_stream_base.py158 ch = self._read(1)
159 if ch == delim_char:
161 bytes.append(ch)
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-validate-input.js41 var ch = zip.charAt(i);
42 if (ch < "0" || ch > "9") {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-validate-input.js41 var ch = zip.charAt(i);
42 if (ch < "0" || ch > "9") {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dstring-validate-input.js41 var ch = zip.charAt(i);
42 if (ch < "0" || ch > "9") {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A D_stream_base.py174 ch = self._read(1)
175 if ch == delim_char:
177 read_bytes.append(ch)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnptrans.cpp125 UBool NamePrepTransform::isProhibited(UChar32 ch){ argument
126 return (UBool)(ch != ASCII_SPACE);
164 UChar32 ch =0 ; local
166 U16_NEXT(buffer, bufIndex, bufLen, ch);
167 if(unassigned.contains(ch)){
228 UChar32 ch = 0; local
230 U16_NEXT(b1, b1Index, b1Len, ch);
232 if(prohibited.contains(ch) && ch!=0x0020){
238 direction = u_charDirection(ch);
274 isLabelSeparator(UChar32 ch, UErrorCode& status) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
H A Dcpp-preproc.c294 int ch = '\0'; local
304 while (ch != ':')
305 ch = fgetc(pp->f_deps);
309 while (ch != ' ' && ch != EOF)
310 ch = fgetc(pp->f_deps);
312 if (ch == EOF)
317 ch = fgetc(pp->f_deps);
319 if (ch == ' ' || ch
[all...]
/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/test/intltest/
H A Dnptrans.cpp125 UBool NamePrepTransform::isProhibited(UChar32 ch){ argument
126 return (UBool)(ch != ASCII_SPACE);
164 UChar32 ch =0 ; local
166 U16_NEXT(buffer, bufIndex, bufLen, ch);
167 if(unassigned.contains(ch)){
228 UChar32 ch = 0; local
230 U16_NEXT(b1, b1Index, b1Len, ch);
232 if(prohibited.contains(ch) && ch!=0x0020){
238 direction = u_charDirection(ch);
274 isLabelSeparator(UChar32 ch, UErrorCode& status) argument
[all...]

Completed in 615 milliseconds

1234567891011>>