Home
last modified time | relevance | path

Searched refs:isAlpha (Results 1 – 25 of 29) sorted by relevance

12

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
DAsciiUtil.java123 public static boolean isAlpha(char c) { in isAlpha() method in AsciiUtil
130 if (!isAlpha(s.charAt(i))) { in isAlphaString()
154 return isAlpha(c) || isNumeric(c); in isAlphaNumeric()
DUnicodeLocaleExtension.java102 AsciiUtil.isAlpha(s.charAt(1)); in isKey()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DAsciiUtil.java119 public static boolean isAlpha(char c) { in isAlpha() method in AsciiUtil
126 if (!isAlpha(s.charAt(i))) { in isAlphaString()
150 return isAlpha(c) || isNumeric(c); in isAlphaNumeric()
DUnicodeLocaleExtension.java98 AsciiUtil.isAlpha(s.charAt(1)); in isKey()
/third_party/vk-gl-cts/framework/opengl/
DgluVarTypeUtil.cpp48 static inline bool isAlpha (char c) { return de::inRange(c, 'a', 'z') || de::inRange(c, 'A', 'Z'… in isAlpha() function
49 static inline bool isIdentifierChar (char c) { return isAlpha(c) || isNum(c) || c == '_'; } in isIdentifierChar()
/third_party/flutter/skia/experimental/docs/
Dutilities.js13 function isAlpha(code) { function
DanimationCommon.js269 var useString = "string" == typeof(prop) && isAlpha(prop.charCodeAt(0));
/third_party/skia/experimental/docs/
Dutilities.js13 function isAlpha(code) { function
DanimationCommon.js269 var useString = "string" == typeof(prop) && isAlpha(prop.charCodeAt(0));
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dlexer.js95 isAlpha(ch) { method in Lexer
100 return this.isNum(ch) || this.isAlpha(ch);
/third_party/spirv-tools/tools/sva/src/
Dlexer.js95 isAlpha(ch) { method in Lexer
100 return this.isNum(ch) || this.isAlpha(ch);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dlexer.js95 isAlpha(ch) { method in Lexer
100 return this.isNum(ch) || this.isAlpha(ch);
/third_party/spirv-tools/utils/vscode/src/parser/
Dparser.go254 case isAlpha(r), r == '_':
395 func isAlpha(r rune) bool { return unicode.IsLetter(r) } func
396 func isAlphaNumeric(r rune) bool { return isAlpha(r) || isNumeric(r) }
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/parser/
Dparser.go254 case isAlpha(r), r == '_':
395 func isAlpha(r rune) bool { return unicode.IsLetter(r) } func
396 func isAlphaNumeric(r rune) bool { return isAlpha(r) || isNumeric(r) }
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/parser/
Dparser.go254 case isAlpha(r), r == '_':
395 func isAlpha(r rune) bool { return unicode.IsLetter(r) } func
396 func isAlphaNumeric(r rune) bool { return isAlpha(r) || isNumeric(r) }
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.cpp1719 D3D11_BLEND ConvertBlendFunc(GLenum glBlend, bool isAlpha) in ConvertBlendFunc() argument
1732 d3dBlend = (isAlpha ? D3D11_BLEND_SRC_ALPHA : D3D11_BLEND_SRC_COLOR); in ConvertBlendFunc()
1735 d3dBlend = (isAlpha ? D3D11_BLEND_INV_SRC_ALPHA : D3D11_BLEND_INV_SRC_COLOR); in ConvertBlendFunc()
1738 d3dBlend = (isAlpha ? D3D11_BLEND_DEST_ALPHA : D3D11_BLEND_DEST_COLOR); in ConvertBlendFunc()
1741 d3dBlend = (isAlpha ? D3D11_BLEND_INV_DEST_ALPHA : D3D11_BLEND_INV_DEST_COLOR); in ConvertBlendFunc()
1771 d3dBlend = (isAlpha ? D3D11_BLEND_SRC1_ALPHA : D3D11_BLEND_SRC1_COLOR); in ConvertBlendFunc()
1777 d3dBlend = (isAlpha ? D3D11_BLEND_INV_SRC1_ALPHA : D3D11_BLEND_INV_SRC1_COLOR); in ConvertBlendFunc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringExtras.h82 inline bool isAlpha(char C) { in isAlpha() function
88 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.cpp1717 D3D11_BLEND ConvertBlendFunc(GLenum glBlend, bool isAlpha) in ConvertBlendFunc() argument
1730 d3dBlend = (isAlpha ? D3D11_BLEND_SRC_ALPHA : D3D11_BLEND_SRC_COLOR); in ConvertBlendFunc()
1733 d3dBlend = (isAlpha ? D3D11_BLEND_INV_SRC_ALPHA : D3D11_BLEND_INV_SRC_COLOR); in ConvertBlendFunc()
1736 d3dBlend = (isAlpha ? D3D11_BLEND_DEST_ALPHA : D3D11_BLEND_DEST_COLOR); in ConvertBlendFunc()
1739 d3dBlend = (isAlpha ? D3D11_BLEND_INV_DEST_ALPHA : D3D11_BLEND_INV_DEST_COLOR); in ConvertBlendFunc()
1769 d3dBlend = (isAlpha ? D3D11_BLEND_SRC1_ALPHA : D3D11_BLEND_SRC1_COLOR); in ConvertBlendFunc()
1775 d3dBlend = (isAlpha ? D3D11_BLEND_INV_SRC1_ALPHA : D3D11_BLEND_INV_SRC1_COLOR); in ConvertBlendFunc()
Drenderer11_utils.h42 D3D11_BLEND ConvertBlendFunc(GLenum glBlend, bool isAlpha);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DLocaleIDParser.java248 while(!isTerminatorOrIDSeparator(c = next()) && AsciiUtil.isAlpha(c)) { in parseScript()
285 while (!isTerminatorOrIDSeparator(c = next()) && AsciiUtil.isAlpha(c)); in skipScript()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DLocaleIDParser.java250 while(!isTerminatorOrIDSeparator(c = next()) && AsciiUtil.isAlpha(c)) { in parseScript()
287 while (!isTerminatorOrIDSeparator(c = next()) && AsciiUtil.isAlpha(c)); in skipScript()
/third_party/icu/icu4c/source/test/perf/charperf/
Dcharperf.h123 inline void isAlpha(UChar32 ch) in isAlpha() function
Dcharperf.cpp133 return new CharPerfFunction(isAlpha, MIN_, MAX_); in TestIsAlpha()
/third_party/skia/third_party/externals/swiftshader/src/Device/
DBC_Decoder.cpp1670 const bool isAlpha = (n == 1) && !isNoAlphaU; in Decode() local
1683 color->decode(dstRow, x, y, w, h, dstPitch, dstBpp, isAlpha, false); in Decode()
1697 color->decode(dstRow, x, y, w, h, dstPitch, dstBpp, isAlpha, true); in Decode()
1712 color->decode(dstRow, x, y, w, h, dstPitch, dstBpp, isAlpha, true); in Decode()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcShaderLibrary.cpp75 DE_INLINE deBool isAlpha(char c) in isAlpha() function
369 else if (isAlpha(*m_curPtr)) in advanceToken()

12