HomeSort by relevance Sort by last modified time
    Searched refs:isspace (Results 326 - 350 of 654) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/closure_linter/closure_linter/
error_fixer.py 108 if iterator.type == Type.DOC_START_BRACE or iterator.string.isspace():
127 if iterator.type == Type.DOC_END_BRACE or iterator.string.isspace():
140 if iterator.type == Type.DOC_START_BRACE or iterator.string.isspace():
267 while last_type.string.isspace():
  /external/chromium_org/third_party/libevent/
evutil.c 193 while (isspace(*s))
  /external/chromium_org/third_party/sqlite/src/tool/
speedtest16.c 143 while( i<j && isspace(zSql[i]) ){ i++; }
speedtest8inst1.c 200 while( i<j && isspace(zSql[i]) ){ i++; }
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
yasm-options.c 79 if (c != '\0' && c != '=' && !isspace(c))
  /external/chromium_org/tools/measure_page_load_time/ie_bho/
MeasurePageLoadTimeBHO.cpp 197 for (i = (int)strlen(strURL)-1; i >= 0 && isspace(strURL[i]); i--)
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 559 while (mPos < mBuf.length && isspace(mBuf[mPos])) {
646 while (mPos < mBuf.length && !isspace(mBuf[mPos]) && !issep(mBuf[mPos], parenIsSep)) {
661 && ((!isspace(mBuf[mPos]) && !issep(mBuf[mPos], parenIsSep)) || genericDepth != 0));
670 static boolean isspace(char c) { method in class:ApiFile
  /external/gtest/test/
gtest_xml_test_utils.py 141 not child.nodeValue.isspace()):
  /external/libcxx/include/support/android/
locale_bionic.h 60 return isspace(c);
  /external/protobuf/gtest/test/
gtest_xml_test_utils.py 136 not child.nodeValue.isspace()):
  /external/srec/portable/include/
ptypes.h 305 * LCHAR version of isspace()
307 #define LISSPACE(c) isspace((unsigned char) c)
  /ndk/sources/host-tools/sed-4.2.1/
basicdefs.h 160 #define ISSPACE(c) (ISASCII (c) && isspace (c))
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 139 not child.nodeValue.isspace()):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32) function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
formatter.py 179 prespace = data[:1].isspace()
180 postspace = data[-1:].isspace()
408 atbreak = self.atbreak or data[0].isspace()
424 self.atbreak = data[-1].isspace()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bool.py 216 self.assertIs(" ".isspace(), True)
217 self.assertIs("XYZ".isspace(), False)
240 self.assertIs(unicode(" ", 'ascii').isspace(), True)
241 self.assertIs(unicode("XYZ", 'ascii').isspace(), False)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32) function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
formatter.py 179 prespace = data[:1].isspace()
180 postspace = data[-1:].isspace()
408 atbreak = self.atbreak or data[0].isspace()
424 self.atbreak = data[-1].isspace()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bool.py 216 self.assertIs(" ".isspace(), True)
217 self.assertIs("XYZ".isspace(), False)
240 self.assertIs(unicode(" ", 'ascii').isspace(), True)
241 self.assertIs(unicode("XYZ", 'ascii').isspace(), False)
  /system/core/libbacktrace/
map_info.c 106 while (isspace(line[name_pos])) {
  /external/arduino/hardware/arduino/cores/arduino/
WString.cpp 409 if ( !isspace(_buffer[i]) )
415 if ( !isspace(_buffer[j]) )
  /external/bluetooth/bluedroid/osi/src/
config.c 166 while (isspace(*str))
173 while (end_str > str && isspace(*end_str))
  /external/e2fsprogs/misc/
e2initrd_helper.c 170 while (*cp && isspace(*cp))
177 while (*cp && !isspace(*cp))
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
annotate.c 235 while (s[0] != '\0' && !isspace(s[0]))
250 while (comment[0] != '\0' && isspace(comment[0]))
283 while (s[0] != '\0' && !isspace(s[0]))
298 while (comment[0] != '\0' && isspace(comment[0]))
512 while (isspace(name[0]))
520 while ((*rawp)[0] != '\0' && !isspace((*rawp)[0]))
534 while (isspace((*rawp)[0]))
778 while (line_len != 0 && isspace(line[line_len - 1]))
    [all...]
  /external/lldb/source/Commands/
CommandObjectExpression.cpp 469 if (::isspace (end_options[0]))
472 while (::isspace (*expr))

Completed in 2284 milliseconds

<<11121314151617181920>>