MCPcopy Create free account
hub / github.com/CyanogenMod/android_frameworks_base / isWhitespace

Function isWhitespace

tools/aapt/XMLNode.cpp:40–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38 };
39
40bool isWhitespace(const char16_t* str)
41{
42 while (*str != 0 && *str < 128 && isspace(*str)) {
43 str++;
44 }
45 return *str == 0;
46}
47
48static const String16 RESOURCES_PREFIX(RESOURCES_ROOT_NAMESPACE);
49static const String16 RESOURCES_PREFIX_AUTO_PACKAGE(RESOURCES_AUTO_PACKAGE_NAMESPACE);

Callers 1

compileResourceFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected