Home
last modified time | relevance | path

Searched refs:HasSpace (Results 1 – 8 of 8) sorted by relevance

/external/crosvm/kernel_cmdline/src/
Dkernel_cmdline.rs16 HasSpace, enumerator
29 HasSpace => "string contains a space", in fmt()
57 Err(Error::HasSpace) in valid_element()
175 assert_eq!(cl.insert("a ", "b"), Err(Error::HasSpace)); in insert_space()
176 assert_eq!(cl.insert("a", "b "), Err(Error::HasSpace)); in insert_space()
177 assert_eq!(cl.insert("a ", "b "), Err(Error::HasSpace)); in insert_space()
178 assert_eq!(cl.insert(" a", "b"), Err(Error::HasSpace)); in insert_space()
/external/llvm-project/clang/lib/Frontend/Rewrite/
DRewriteMacros.cpp168 bool HasSpace = RawTok.hasLeadingSpace(); in RewriteMacrosInInput() local
169 RB.InsertTextAfter(RawOffs, &" /*"[HasSpace]); in RewriteMacrosInInput()
/external/clang/lib/Frontend/Rewrite/
DRewriteMacros.cpp169 bool HasSpace = RawTok.hasLeadingSpace(); in RewriteMacrosInInput() local
170 RB.InsertTextAfter(RawOffs, &" /*"[HasSpace]); in RewriteMacrosInInput()
/external/pigweed/pw_kvs/public/pw_kvs/internal/
Dsectors.h70 bool HasSpace(size_t required_space) const { in HasSpace() function
/external/pigweed/pw_kvs/
Dsectors.cc109 if (!sector->Empty(sector_size_bytes) && sector->HasSpace(size)) { in Find()
/external/clang/lib/Lex/
DLexer.cpp2073 bool HasSpace = false; in SkipLineComment() local
2076 HasSpace = true; in SkipLineComment()
2088 if (HasSpace && !isLexingRawMode()) in SkipLineComment()
2228 bool HasSpace = false; in isEndOfBlockCommentWithEscapedNewLine() local
2231 HasSpace = true; in isEndOfBlockCommentWithEscapedNewLine()
2262 if (HasSpace && !L->isLexingRawMode()) in isEndOfBlockCommentWithEscapedNewLine()
/external/llvm-project/clang/lib/Lex/
DLexer.cpp2301 bool HasSpace = false; in SkipLineComment() local
2304 HasSpace = true; in SkipLineComment()
2318 if (HasSpace && !isLexingRawMode()) in SkipLineComment()
2458 bool HasSpace = false; in isEndOfBlockCommentWithEscapedNewLine() local
2461 HasSpace = true; in isEndOfBlockCommentWithEscapedNewLine()
2492 if (HasSpace && !L->isLexingRawMode()) in isEndOfBlockCommentWithEscapedNewLine()
/external/llvm-project/clang/lib/Driver/
DDriver.cpp1646 const bool HasSpace = PassedFlags.endswith(","); in HandleAutocompletions() local
1679 if (SuggestedCompletions.empty() && HasSpace && !Flags.empty()) { in HandleAutocompletions()