Home
last modified time | relevance | path

Searched refs:in_quote (Results 1 – 4 of 4) sorted by relevance

/third_party/gn/src/base/strings/
Dstring_tokenizer.h208 bool in_quote; member
211 AdvanceState() : in_quote(false), in_escape(false), quote_char('\0') {} in AdvanceState()
216 if (state->in_quote) { in AdvanceOne()
222 state->in_quote = false; in AdvanceOne()
227 state->in_quote = IsQuote(state->quote_char = c); in AdvanceOne()
/third_party/openssl/apps/
Dwin32_init.c167 int in_quote = 0; in win32_utf8argv() local
181 && (in_quote || (*p != L' ' && *p != L'\t'))) { in win32_utf8argv()
237 if (in_quote && p[1] == L'"') in win32_utf8argv()
240 in_quote = !in_quote; in win32_utf8argv()
/third_party/boost/boost/process/detail/posix/
Dbasic_cmd.hpp73 bool in_quote = false; in build_args() local
81 in_quote ^= true; in build_args()
83 if (!in_quote && (*itr == ' ')) in build_args()
/third_party/boost/libs/flyweight/example/
Dhtml.cpp91 bool in_quote=false; in parse_tag() local
94 if(ch=='>'&&!in_quote){ /* ignore '>'s if inside quotes */ in parse_tag()
123 if(ch=='"')in_quote=!in_quote; in parse_tag()