Home
last modified time | relevance | path

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

/external/pigweed/pw_tool/
Dmain.cc58 bool in_quote = false; in TokenizeLine() local
74 in_quote = true; in TokenizeLine()
81 if ((in_quote && line[index] == '"') || in TokenizeLine()
82 (!in_quote && std::isspace(line[index]))) { in TokenizeLine()
88 if (index >= line.size() && in_quote) { in TokenizeLine()
93 in_quote = false; in TokenizeLine()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
Djsmin_2_0_9.py103 in_quote = ''
123 in_quote = previous
137 if in_quote:
156 elif in_quote:
159 if next1 == in_quote:
167 in_quote = ''
221 in_quote = next1
/external/libchrome/base/strings/
Dstring_tokenizer.h216 bool in_quote; member
219 AdvanceState() : in_quote(false), in_escape(false), quote_char('\0') {} in AdvanceState()
224 if (state->in_quote) { in AdvanceOne()
230 state->in_quote = false; in AdvanceOne()
235 state->in_quote = IsQuote(state->quote_char = c); in AdvanceOne()
/external/autotest/frontend/afe/
Dcontrol_file.py126 in_quote = None
129 if in_quote:
139 if not in_quote:
140 in_quote = match.group(2)[0]
141 elif in_quote == match.group(2)[0]:
143 in_quote = None
/external/selinux/libsemanage/src/
Dsemanage_store.c1294 int num_args = 0, in_quote = 0, in_dquote = 0, rc; in split_args() local
1325 } else if (in_quote) { in split_args()
1326 in_quote = 0; in split_args()
1328 in_quote = 1; in split_args()
1337 if (in_quote) { in split_args()
1381 if (isspace(*s) && !in_quote && !in_dquote) { in split_args()