HomeSort by relevance Sort by last modified time
    Searched refs:IsWhitespace (Results 1 - 6 of 6) sorted by null

  /external/libtextclassifier/utils/utf8/
unilib_test-include.cc 29 EXPECT_FALSE(unilib_.IsWhitespace(')'));
30 EXPECT_TRUE(unilib_.IsWhitespace(' '));
47 EXPECT_FALSE(unilib_.IsWhitespace(0x23F0)); // ALARM CLOCK
48 EXPECT_TRUE(unilib_.IsWhitespace(0x2003)); // EM SPACE
unilib-javaicu.h 46 bool IsWhitespace(char32 codepoint) const;
unilib-javaicu.cc 259 bool UniLib::IsWhitespace(char32 codepoint) const {
  /external/clang/include/clang/AST/
Comment.h 85 /// True if \c IsWhitespace field contains a valid value.
89 mutable unsigned IsWhitespace : 1;
130 /// True if \c IsWhitespace field contains a valid value.
134 mutable unsigned IsWhitespace : 1;
289 bool isWhitespace() const {
291 return TextCommentBits.IsWhitespace;
293 TextCommentBits.IsWhitespace = isWhitespaceNoCache();
295 return TextCommentBits.IsWhitespace;
562 ParagraphCommentBits.IsWhitespace = true;
586 bool isWhitespace() const
    [all...]
  /external/libtextclassifier/utils/
tokenizer.cc 240 if (!unilib_->IsWhitespace(*char_it)) {
  /external/libtextclassifier/annotator/
annotator.cc 567 if (!unilib.IsWhitespace(*it)) {
578 while (it != context_unicode.begin() && unilib.IsWhitespace(*it)) {
583 if (!unilib.IsWhitespace(*it)) {
    [all...]

Completed in 205 milliseconds