HomeSort by relevance Sort by last modified time
    Searched defs:isSpace (Results 1 - 25 of 334) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/gofmt/
internal.go 115 for j < len(src) && isSpace(src[j]) {
166 for i > 0 && isSpace(src[i-1]) {
172 // isSpace reports whether the byte is a space character.
173 // isSpace defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
174 func isSpace(b byte) bool {
  /prebuilts/go/darwin-x86/src/go/format/
internal.go 115 for j < len(src) && isSpace(src[j]) {
166 for i > 0 && isSpace(src[i-1]) {
172 // isSpace reports whether the byte is a space character.
173 // isSpace defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
174 func isSpace(b byte) bool {
  /prebuilts/go/linux-x86/src/cmd/gofmt/
internal.go 115 for j < len(src) && isSpace(src[j]) {
166 for i > 0 && isSpace(src[i-1]) {
172 // isSpace reports whether the byte is a space character.
173 // isSpace defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
174 func isSpace(b byte) bool {
  /prebuilts/go/linux-x86/src/go/format/
internal.go 115 for j < len(src) && isSpace(src[j]) {
166 for i > 0 && isSpace(src[i-1]) {
172 // isSpace reports whether the byte is a space character.
173 // isSpace defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
174 func isSpace(b byte) bool {
  /prebuilts/go/darwin-x86/src/time/
zoneinfo_plan9.go 18 func isSpace(r rune) bool {
29 inField = !isSpace(rune)
40 if isSpace(rune) {
  /prebuilts/go/linux-x86/src/time/
zoneinfo_plan9.go 18 func isSpace(r rune) bool {
29 inField = !isSpace(rune)
40 if isSpace(rune) {
  /prebuilts/go/darwin-x86/src/testing/
match.go 139 case isSpace(r):
151 func isSpace(r rune) bool {
  /prebuilts/go/linux-x86/src/testing/
match.go 139 case isSpace(r):
151 func isSpace(r rune) bool {
  /prebuilts/go/darwin-x86/src/bufio/
scan.go 356 // isSpace reports whether the character is a Unicode white space character.
359 func isSpace(r rune) bool {
384 // unicode.IsSpace.
391 if !isSpace(r) {
399 if isSpace(r) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
lex.go 23 func isSpace(c rune) bool {
178 // pragmaFields is similar to strings.FieldsFunc(s, isSpace)
201 case !inQuote && isSpace(c):
  /prebuilts/go/linux-x86/src/bufio/
scan.go 356 // isSpace reports whether the character is a Unicode white space character.
359 func isSpace(r rune) bool {
384 // unicode.IsSpace.
391 if !isSpace(r) {
399 if isSpace(r) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
lex.go 23 func isSpace(c rune) bool {
178 // pragmaFields is similar to strings.FieldsFunc(s, isSpace)
201 case !inQuote && isSpace(c):
  /external/icu/icu4c/source/test/intltest/
datadrivennumberformattestsuite.cpp 19 static UBool isSpace(UChar c) { return c == 9 || c == 0x20 || c == 0x3000; }
202 while(lineLength > 0 && isSpace(line[lineLength - 1])) { --lineLength; }
  /external/icu/icu4c/source/test/perf/charperf/
charperf.h 143 inline void isSpace(UChar32 ch)
  /prebuilts/go/darwin-x86/src/net/
parse.go 262 for len(x) > 0 && isSpace(x[0]) {
265 for len(x) > 0 && isSpace(x[len(x)-1]) {
271 // isSpace reports whether b is an ASCII space character.
272 func isSpace(b byte) bool {
  /prebuilts/go/linux-x86/src/net/
parse.go 262 for len(x) > 0 && isSpace(x[0]) {
265 for len(x) > 0 && isSpace(x[len(x)-1]) {
271 // isSpace reports whether b is an ASCII space character.
272 func isSpace(b byte) bool {
  /build/kati/
strutil.cc 34 static bool isSpace(char c) {
80 if (!isSpace((*in)[s]))
91 // It's intentional we are not using isSpace here. It seems with
167 if (found != 0 && !isSpace(str[found - 1]))
170 if (end != str.size() && !isSpace(str[end]))
265 if (isSpace(s[i]))
281 if (isSpace(c)) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
XMLChar.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLChar.java 451 public static boolean isSpace(int c) {
453 } // isSpace(int):boolean
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForFSB.java 835 private static boolean isSpace(char ch)
871 if (isSpace(c))
  /external/caliper/examples/src/main/java/examples/
CharacterBenchmark.java 54 @Benchmark boolean isSpace(int reps) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DataDrivenNumberFormatTestUtility.java 261 private static boolean isSpace(char c) {
330 if (!isSpace(line.charAt(idx -1))) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DataDrivenNumberFormatTestUtility.java 258 private static boolean isSpace(char c) {
327 if (!isSpace(line.charAt(idx -1))) {
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner.go 196 func isSpace(c byte) bool {
202 if c <= ' ' && isSpace(c) {
213 if c <= ' ' && isSpace(c) {
253 if c <= ' ' && isSpace(c) {
266 if c <= ' ' && isSpace(c) {
286 if c <= ' ' && isSpace(c) {
  /prebuilts/go/linux-x86/src/encoding/json/
scanner.go 196 func isSpace(c byte) bool {
202 if c <= ' ' && isSpace(c) {
213 if c <= ' ' && isSpace(c) {
253 if c <= ' ' && isSpace(c) {
266 if c <= ' ' && isSpace(c) {
286 if c <= ' ' && isSpace(c) {

Completed in 680 milliseconds

1 2 3 4 5 6 7 8 91011>>