Home
last modified time | relevance | path

Searched refs:token_end_ (Results 1 – 9 of 9) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/base/strings/
H A Dstring_tokenizer.h140 token_end_ = start_pos_; in Reset()
165 token_end_ = string_begin; in Init()
179 if (token_end_ == end_) { in QuickGetNext()
183 ++token_end_; in QuickGetNext()
188 while (token_end_ != end_ && delims_.find(*token_end_) == str::npos) in QuickGetNext()
189 ++token_end_; in QuickGetNext()
214 while (token_end_ != end_ && AdvanceOne(&state, *token_end_)) { in FullGetNext()
215 ++token_end_; in FullGetNext()
241 if (token_end_ == end_) in FullGetNext()
245 ++token_end_; in FullGetNext()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/strings/
H A Dstring_tokenizer.h140 token_end_ = start_pos_; in Reset()
165 token_end_ = string_begin; in Init()
179 if (token_end_ == end_) { in QuickGetNext()
183 ++token_end_; in QuickGetNext()
188 while (token_end_ != end_ && delims_.find(*token_end_) == str::npos) in QuickGetNext()
189 ++token_end_; in QuickGetNext()
214 while (token_end_ != end_ && AdvanceOne(&state, *token_end_)) { in FullGetNext()
215 ++token_end_; in FullGetNext()
241 if (token_end_ == end_) in FullGetNext()
245 ++token_end_; in FullGetNext()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/gn/base/strings/
H A Dstring_tokenizer.h156 token_end_ = string_begin; in Init()
169 token_begin_ = token_end_; in QuickGetNext()
170 if (token_end_ == end_) in QuickGetNext()
172 ++token_end_; in QuickGetNext()
177 while (token_end_ != end_ && delims_.find(*token_end_) == str::npos) in QuickGetNext()
178 ++token_end_; in QuickGetNext()
188 if (token_end_ == end_) in FullGetNext()
190 ++token_end_; in FullGetNext()
199 while (token_end_ != end_ && AdvanceOne(&state, *token_end_)) in FullGetNext()
200 ++token_end_; in FullGetNext()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/gn/src/base/strings/
H A Dstring_tokenizer.h155 token_end_ = string_begin; in Init()
168 token_begin_ = token_end_; in QuickGetNext()
169 if (token_end_ == end_) in QuickGetNext()
171 ++token_end_; in QuickGetNext()
176 while (token_end_ != end_ && delims_.find(*token_end_) == str::npos) in QuickGetNext()
177 ++token_end_; in QuickGetNext()
187 if (token_end_ == end_) in FullGetNext()
189 ++token_end_; in FullGetNext()
198 while (token_end_ != end_ && AdvanceOne(&state, *token_end_)) in FullGetNext()
199 ++token_end_; in FullGetNext()
[all …]
/dports/devel/gn/gn-1962/src/base/strings/
H A Dstring_tokenizer.h155 token_end_ = string_begin; in Init()
168 token_begin_ = token_end_; in QuickGetNext()
169 if (token_end_ == end_) in QuickGetNext()
171 ++token_end_; in QuickGetNext()
176 while (token_end_ != end_ && delims_.find(*token_end_) == str::npos) in QuickGetNext()
177 ++token_end_; in QuickGetNext()
187 if (token_end_ == end_) in FullGetNext()
189 ++token_end_; in FullGetNext()
198 while (token_end_ != end_ && AdvanceOne(&state, *token_end_)) in FullGetNext()
199 ++token_end_; in FullGetNext()
[all …]
/dports/cad/openroad/OpenROAD-2.0/src/sta/util/
H A DTokenParser.cc32 token_end_ = strpbrk(token_, delimiters_); in TokenParser()
33 if (token_end_) { in TokenParser()
35 token_delimiter_ = *token_end_; in TokenParser()
37 *token_end_ = '\0'; in TokenParser()
46 if (token_end_) { in hasNext()
47 *token_end_ = token_delimiter_; in hasNext()
48 token_ = token_end_ + 1; in hasNext()
58 token_end_ = strpbrk(token_, delimiters_); in hasNext()
59 if (token_end_) { in hasNext()
61 token_delimiter_ = *token_end_; in hasNext()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/link_header_util/
H A Dlink_header_util.cc24 : token_begin_(begin), token_end_(begin), end_(end) {} in ValueTokenizer()
31 net::HttpUtil::TrimLWS(&token_begin_, &token_end_); in GetNext()
34 if (token_begin_ != token_end_) in GetNext()
49 if (token_end_ == end_) in GetNextInternal()
53 if (*token_end_ == ',') in GetNextInternal()
54 ++token_end_; in GetNextInternal()
58 token_begin_ = token_end_; in GetNextInternal()
73 while (token_end_ != end_) { in GetNextInternal()
74 char c = *token_end_; in GetNextInternal()
92 ++token_end_; in GetNextInternal()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/link_header_util/
H A Dlink_header_util.cc24 : token_begin_(begin), token_end_(begin), end_(end) {} in ValueTokenizer()
31 net::HttpUtil::TrimLWS(&token_begin_, &token_end_); in GetNext()
34 if (token_begin_ != token_end_) in GetNext()
49 if (token_end_ == end_) in GetNextInternal()
53 if (*token_end_ == ',') in GetNextInternal()
54 ++token_end_; in GetNextInternal()
58 token_begin_ = token_end_; in GetNextInternal()
73 while (token_end_ != end_) { in GetNextInternal()
74 char c = *token_end_; in GetNextInternal()
92 ++token_end_; in GetNextInternal()
[all …]
/dports/cad/openroad/OpenROAD-2.0/src/sta/include/sta/
H A DTokenParser.hh43 char *token_end_; member in sta::TokenParser