Home
last modified time | relevance | path

Searched refs:IsASCII (Results 1 – 10 of 10) sorted by relevance

/external/dng_sdk/source/
Ddng_string.cpp481 static bool IsASCII (const char *s) in IsASCII() function
579 bool dng_string::IsASCII () const in IsASCII() function in dng_string
582 return ::IsASCII (Get ()); in IsASCII()
642 if (::IsASCII (s)) in Set_ASCII()
760 if (IsASCII ()) in Get_SystemEncoding()
802 if (::IsASCII (s)) in Set_SystemEncoding()
860 if (IsASCII ()) in ValidSystemEncoding()
884 if (::IsASCII (s)) in Set_JIS_X208_1990()
1076 if (::IsASCII (s)) in Set_UTF8_or_System()
2069 if (!IsASCII ()) in ForceASCII()
Ddng_string.h51 bool IsASCII () const;
Ddng_parse_utils.cpp3149 if (encoding == dng_encoding_ascii && !s.IsASCII ()) in ParseEncodedStringTag()
Ddng_image_writer.cpp228 else if (!fString.IsASCII ()) in tag_string()
261 if (fText.IsASCII ()) in tag_encoded_text()
/external/llvm/lib/Fuzzer/
DFuzzerUtil.cpp167 bool IsASCII(const Unit &U) { return IsASCII(U.data(), U.size()); } in IsASCII() function
169 bool IsASCII(const uint8_t *Data, size_t Size) { in IsASCII() function
DFuzzerInternal.h126 bool IsASCII(const Unit &U);
127 bool IsASCII(const uint8_t *Data, size_t Size);
DFuzzerLoop.cpp489 assert(IsASCII(U)); in WriteToOutputCorpus()
/external/libedit/src/
Dchartype.h95 #define IsASCII(x) (x < 0x100) macro
150 #define IsASCII(x) isascii((unsigned char)x) macro
Dchartype.c350 else if (IsASCII(c) && Iscntrl(c)) in ct_chr_class()
/external/compiler-rt/lib/asan/
Dasan_report.cc244 static bool IsASCII(unsigned char c) { in IsASCII() function
265 if (c == '\0' || !IsASCII(c)) return; in PrintGlobalNameIfASCII()