Searched refs:ch (Results 76 - 100 of 1393) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/fips181/
H A Drandpass.h42 char ch; member in struct:sym
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DSanitizers.java88 char ch = value.charAt(i);
89 if (ch == '.') {
92 } else if (!('0' <= ch && ch <= '9')) {
/external/valgrind/main/none/tests/
H A Dsyscall-restart2.c33 char ch = '?'; local
44 ret = read(fds[0], &ch, 1);
46 if (ret != 1 || ch != 'x')
48 ret, strerror(errno), ch);
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_utility.cpp37 FX_BYTE ch; local
43 ch = m_pData[m_dwCurPos++];
44 chartype = _PDF_CharType[ch];
49 ch = m_pData[m_dwCurPos++];
50 chartype = _PDF_CharType[ch];
52 if (ch != '%') {
59 ch = m_pData[m_dwCurPos++];
60 if (ch == '\r' || ch == '\n') {
64 chartype = _PDF_CharType[ch];
251 _hex2dec(char ch) argument
299 FX_BYTE ch = src_buf[i]; local
314 FX_BYTE ch = src_buf[i]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBoundaries.h34 inline bool requiresContextForWordBoundary(UChar32 ch) argument
36 return WTF::Unicode::hasLineBreakingPropertyComplexContext(ch);
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))
H A DDateTimeFormat.cpp92 static DateTimeFormat::FieldType mapCharacterToFieldType(const UChar ch) argument
94 if (isASCIIUpper(ch))
95 return upperCaseToFieldTypeMap[ch - 'A'];
97 if (isASCIILower(ch))
98 return lowerCaseToFieldTypeMap[ch - 'a'];
118 const UChar ch = source[index]; local
121 if (ch == '\'') {
126 literalBuffer.append(ch);
130 if (ch == '\'') {
136 fieldType = mapCharacterToFieldType(ch);
243 isASCIIAlphabetOrQuote(UChar ch) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtestutil.h22 static UnicodeString &appendHex(UnicodeString &buf, UChar32 ch);
24 static UnicodeString hex(UChar32 ch);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_debug.h21 #define NV50_DBGMSG(ch, args...) \
22 if ((NV50_DEBUG) & (NV50_DEBUG_##ch)) \
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
H A Drexx.l4 #define CURSOR ch
5 #define LOADCURSOR ch = *cursor;
18 uchar ch;
271 uchar ch;
/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/icu/icu4c/source/test/intltest/
H A Dtestutil.h22 static UnicodeString &appendHex(UnicodeString &buf, UChar32 ch);
24 static UnicodeString hex(UChar32 ch);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DCssUrlValidateFunction.java45 char ch = in.charAt(i);
46 switch (ch) {
78 out.append(ch);
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_debug.h21 #define NV50_DBGMSG(ch, args...) \
22 if ((NV50_DEBUG) & (NV50_DEBUG_##ch)) \
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-port.cc176 // Returns true iff ch appears anywhere in str (excluding the
178 bool IsInSet(char ch, const char* str) { argument
179 return ch != '\0' && strchr(str, ch) != NULL;
182 // Returns true iff ch belongs to the given classification. Unlike
185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } argument
186 bool IsAsciiPunct(char ch) { argument
187 return IsInSet(ch, "
189 IsRepeat(char ch) argument
190 IsAsciiWhiteSpace(char ch) argument
191 IsAsciiWordChar(char ch) argument
203 AtomMatchesChar(bool escaped, char pattern_char, char ch) argument
261 const char ch = regex[i]; local
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc176 // Returns true iff ch appears anywhere in str (excluding the
178 bool IsInSet(char ch, const char* str) { argument
179 return ch != '\0' && strchr(str, ch) != NULL;
182 // Returns true iff ch belongs to the given classification. Unlike
185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } argument
186 bool IsAsciiPunct(char ch) { argument
187 return IsInSet(ch, "
189 IsRepeat(char ch) argument
190 IsAsciiWhiteSpace(char ch) argument
191 IsAsciiWordChar(char ch) argument
203 AtomMatchesChar(bool escaped, char pattern_char, char ch) argument
261 const char ch = regex[i]; local
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-port.cc176 // Returns true iff ch appears anywhere in str (excluding the
178 bool IsInSet(char ch, const char* str) { argument
179 return ch != '\0' && strchr(str, ch) != NULL;
182 // Returns true iff ch belongs to the given classification. Unlike
185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } argument
186 bool IsAsciiPunct(char ch) { argument
187 return IsInSet(ch, "
189 IsRepeat(char ch) argument
190 IsAsciiWhiteSpace(char ch) argument
191 IsAsciiWordChar(char ch) argument
203 AtomMatchesChar(bool escaped, char pattern_char, char ch) argument
261 const char ch = regex[i]; local
[all...]
/external/protobuf/gtest/src/
H A Dgtest-port.cc165 // Returns true iff ch appears anywhere in str (excluding the
167 bool IsInSet(char ch, const char* str) { argument
168 return ch != '\0' && strchr(str, ch) != NULL;
171 // Returns true iff ch belongs to the given classification. Unlike
174 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; } argument
175 bool IsPunct(char ch) { argument
176 return IsInSet(ch, "
178 IsRepeat(char ch) argument
179 IsWhiteSpace(char ch) argument
180 IsWordChar(char ch) argument
192 AtomMatchesChar(bool escaped, char pattern_char, char ch) argument
250 const char ch = regex[i]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dshell.js42 var ch = stream.next();
44 if (ch === '\\') {
48 if (ch === '\'' || ch === '"' || ch === '`') {
49 state.tokens.unshift(tokenString(ch));
52 if (ch === '#') {
60 if (ch === '$') {
64 if (ch === '+' || ch
[all...]
/external/chromium_org/third_party/icu/source/test/letest/
H A DSimpleFontInstance.cpp91 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
93 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
98 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const argument
100 return LEFontInstance::mapCharToGlyph(ch, mapper);
103 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch) const
105 return (LEGlyphID) ch;
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A DSimpleFontInstance.cpp91 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
93 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
98 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const argument
100 return LEFontInstance::mapCharToGlyph(ch, mapper);
103 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch) const
105 return (LEGlyphID) ch;
/external/icu/icu4c/source/test/letest/
H A DSimpleFontInstance.cpp91 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
93 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
98 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const argument
100 return LEFontInstance::mapCharToGlyph(ch, mapper);
103 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch) const
105 return (LEGlyphID) ch;
/external/icu/icu4c/source/test/perf/leperf/
H A DSimpleFontInstance.cpp91 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
93 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
98 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const argument
100 return LEFontInstance::mapCharToGlyph(ch, mapper);
103 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch) const
105 return (LEGlyphID) ch;
/external/qemu/android/base/files/
H A DPathUtils.h43 // Return true if |ch| is a directory separator for a given |hostType|.
44 static bool isDirSeparator(int ch, HostType hostType);
46 // Return true if |ch| is a directory separator for the current platform.
47 static inline bool isDirSeparator(int ch) { argument
48 return isDirSeparator(ch, HOST_TYPE);
51 // Return true if |ch| is a path separator for a given |hostType|.
52 static bool isPathSeparator(int ch, HostType hostType);
54 // Return true if |ch| is a path separator for the current platform.
55 static inline bool isPathSeparator(int ch) { argument
56 return isPathSeparator(ch, HOST_TYP
[all...]
/external/chromium_org/third_party/opus/src/src/
H A Drepacketizer_demo.c44 static void int_to_char(opus_uint32 i, unsigned char ch[4]) argument
46 ch[0] = i>>24;
47 ch[1] = (i>>16)&0xFF;
48 ch[2] = (i>>8)&0xFF;
49 ch[3] = i&0xFF;
52 static opus_uint32 char_to_int(unsigned char ch[4]) argument
54 return ((opus_uint32)ch[0]<<24) | ((opus_uint32)ch[1]<<16)
55 | ((opus_uint32)ch[2]<< 8) | (opus_uint32)ch[
121 unsigned char ch[4]; local
[all...]

Completed in 795 milliseconds

1234567891011>>