OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isPunctuation
(Results
1 - 11
of
11
) 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
...]
/external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417HighLevelEncoder.h
55
static FX_BOOL
isPunctuation
(FX_WCHAR ch);
BC_PDF417HighLevelEncoder.cpp
221
if (
isPunctuation
(next)) {
233
if (
isPunctuation
(ch)) {
334
FX_BOOL CBC_PDF417HighLevelEncoder::
isPunctuation
(FX_WCHAR ch) {
/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
432
if (!isDigit(*I) && !
isPunctuation
(*I)) {
683
} 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
/external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar
android-all-5.0.0_r2-robolectric-1.jar
android-all-5.1.1_r9-robolectric-1.jar
Completed in 5979 milliseconds