MCPcopy Create free account
hub / github.com/BVLC/caffe / IsNormalizableWhitespace

Method IsNormalizableWhitespace

src/gtest/gtest-all.cpp:4322–4324  ·  view source on GitHub ↗

Is c a whitespace character that is normalized to a space character when it appears in an XML attribute value?

Source from the content-addressed store, hash-verified

4320 // Is c a whitespace character that is normalized to a space character
4321 // when it appears in an XML attribute value?
4322 static bool IsNormalizableWhitespace(char c) {
4323 return c == 0x9 || c == 0xA || c == 0xD;
4324 }
4325
4326 // May c appear in a well-formed XML document?
4327 static bool IsValidXmlCharacter(char c) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected