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

  /external/clang/unittests/Basic/
CharInfoTest.cpp 290 TEST(CharInfoTest, isPunctuation) {
291 EXPECT_FALSE(isPunctuation('0'));
292 EXPECT_FALSE(isPunctuation('9'));
294 EXPECT_FALSE(isPunctuation('a'));
295 EXPECT_FALSE(isPunctuation('A'));
297 EXPECT_FALSE(isPunctuation('z'));
298 EXPECT_FALSE(isPunctuation('Z'));
300 EXPECT_TRUE(isPunctuation('.'));
301 EXPECT_TRUE(isPunctuation('_'));
303 EXPECT_TRUE(isPunctuation('/'));
    [all...]
  /frameworks/base/core/java/android/text/method/
WordIterator.java 283 * by {@link #isPunctuation(int)}, returns the index of the first character
298 * by {@link #isPunctuation(int)}, returns the index of the last character
313 * as defined by {@link #isPunctuation(int)}.
322 return isPunctuation(codePoint);
329 * as defined by {@link #isPunctuation(int)}.
338 return isPunctuation(codePoint);
351 private boolean isPunctuation(int cp) {
  /external/clang/include/clang/Basic/
CharInfo.h 132 LLVM_READONLY static inline bool isPunctuation(unsigned char c) {
  /external/clang/lib/Basic/
Diagnostic.cpp 419 if (!isDigit(*I) && !isPunctuation(*I)) {
670 } else if (isPunctuation(DiagStr[1])) {
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 417 if (Character.isWhitespace(ch2) || isPunctuation(ch2)) {
421 } else if (isPunctuation(ch)) {
587 } else if (isPunctuation(ch)) {
628 private static boolean isPunctuation(char ch) {
    [all...]
  /external/zxing/core/
core.jar 

Completed in 183 milliseconds