Home
last modified time | relevance | path

Searched refs:walk (Results 1 - 25 of 173) sorted by relevance

1234567

/third_party/libwebsockets/lib/roles/http/
H A Dminilex.c242 int walk; in issue() local
279 walk = 0; in issue()
290 for (y = 0; y < state[walk].count; y++) in issue()
291 if (state[walk].c[y] == rset[n][m]) { in issue()
293 walk = state[walk].state[y]; in issue()
303 state[walk].c[state[walk].count] = rset[n][m]; in issue()
305 state[walk].state[state[walk] in issue()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource12.js9 walk(ast: AST, parent: AST): AST;
42 public walk(ast: AST, parent: AST): AST {
78 public walk(ast: AST, pre: IAstWalkCallback, post?: IAstWalkCallback, options?: AstWalkOptions, state?: any): AST {
79 return this.getWalker(pre, post, options, state).walk(ast, null)
231 preAst.members[i] = walker.walk(preAst.members[i], preAst);
238 preAst.members[i] = walker.walk(preAst.members[i], preAst);
246 preAst.castTerm = walker.walk(preAst.castTerm, preAst);
249 preAst.operand = walker.walk(preAst.operand, preAst);
256 preAst.operand2 = walker.walk(preAst.operand2, preAst);
259 preAst.operand1 = walker.walk(preAs
[all...]
H A DparserRealSource13.js118 export function walk(script: Script, callback: AstWalkerDetailCallback): void {
130 walker.walk(script, null);
157 function walk(script, callback) {
167 walker.walk(script, null);
169 AstWalkerWithDetailCallback.walk = walk;
H A DparserRealSource11.js208 this.members[i] = context.walk(this.members[i], this);
1046 walker.walk(this.bod, this);
1379 context.walk(this.statements, this);
1494 context.walk(this.body, this);
1549 context.walk(this.body, this);
1609 context.walk(this.thenBod, this);
1619 context.walk(this.elseBod, this);
1792 context.walk(this.body, this);
1872 context.walk(this.body, this);
1992 context.walk(thi
[all...]
/third_party/libwebsockets/lib/roles/h2/
H A Dminihuf.c333 int walk; in main() local
353 walk = 0; in main()
359 if (state[walk].state[code_bit(n, m)] != 0xffff) { in main()
361 walk = state[walk].state[code_bit(n, m)]; in main()
367 state[walk].state[code_bit(n, m)] = next; in main()
368 walk = next++; in main()
373 state[walk].terminal = n++; in main()
374 state[walk].state[0] = 0; /* terminal marker */ in main()
377 walk in main()
[all...]
/third_party/libwebsockets/plugins/
H A Dprotocol_lws_openmetrics_export.c112 struct lwsac *walk; /* iterator for ac when writing */ member
383 * hold the data in a way we can walk to write it simply
458 pss->walk = pss->ac; in ome_prepare()
500 if (!pss->walk) in callback_lws_openmetrics_export()
504 ip = (uint8_t *)pss->walk + in callback_lws_openmetrics_export()
505 lwsac_sizeof(pss->walk == pss->ac) + LWS_PRE; in callback_lws_openmetrics_export()
509 if (m > lwsac_get_tail_pos(pss->walk) - in callback_lws_openmetrics_export()
510 lwsac_sizeof(pss->walk == pss->ac)) in callback_lws_openmetrics_export()
519 pss->walk = lwsac_get_next(pss->walk); in callback_lws_openmetrics_export()
[all...]
H A Dprotocol_lws_status.c52 e_walk walk; member
72 if (pss->walk == WALK_NONE) { in trigger_resend()
75 pss->walk = WALK_INITIAL; in trigger_resend()
140 switch (pss->walk) { in callback_lws_status()
152 pss->walk = WALK_LIST; in callback_lws_status()
175 pss->walk = WALK_FINAL; in callback_lws_status()
189 pss->walk = WALK_FINAL; in callback_lws_status()
199 pss->walk = WALK_INITIAL; in callback_lws_status()
201 pss->walk = WALK_NONE; in callback_lws_status()
213 if (pss->walk ! in callback_lws_status()
[all...]
/third_party/skia/src/pathops/
H A DSkOpSpan.cpp166 const SkOpPtT* walk = start; in collapsed() local
167 double min = walk->fT; in collapsed()
171 while ((walk = walk->next()) != start) { in collapsed()
175 if (walk == startNext) { in collapsed()
178 if (walk->segment() != segment) { in collapsed()
181 min = std::min(min, walk->fT); in collapsed()
182 max = std::max(max, walk->fT); in collapsed()
195 const SkOpPtT* walk = start; in contains() local
196 while ((walk in contains()
206 const SkOpPtT* walk = start; contains() local
[all...]
/third_party/node/lib/internal/repl/
H A Dawait.js22 const walk = require('internal/deps/acorn/acorn-walk/dist/walk');
40 walk.base.ClassDeclaration(node, state, c);
46 walk.base.ForOfStatement(node, state, c);
60 walk.base.AwaitExpression(node, state, c);
64 walk.base.ReturnStatement(node, state, c);
135 walk.base.VariableDeclaration(node, state, c);
140 for (const nodeType of ObjectKeys(walk.base)) {
141 const callback = visitorsWithoutAncestors[nodeType] || walk
[all...]
/third_party/musl/src/search/
H A Dtwalk.c4 static void walk(const struct node *r, void (*action)(const void *, VISIT, int), int d) in walk() function
12 walk(r->a[0], action, d+1); in walk()
14 walk(r->a[1], action, d+1); in walk()
21 walk(root, action, 0); in twalk()
/third_party/python/Lib/email/
H A Diterators.py10 'walk',
21 def walk(self):
24 The walk is performed in depth-first order. This method is a
30 yield from subpart.walk()
41 for subpart in msg.walk():
54 for subpart in msg.walk():
20 def walk(self): global() function
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dcontainer.js170 _proto.walk = function walk(callback) { function
174 result = node.walk(callback);
183 return this.walk(function (selector) {
191 return this.walk(function (selector) {
199 return this.walk(function (selector) {
207 return this.walk(function (selector) {
215 return this.walk(function (selector) {
223 return this.walk(function (selector) {
231 return this.walk(functio
[all...]
/third_party/python/Lib/test/test_importlib/
H A Dupdate-zips.py37 for src, rel in walk(root / f'data{suffix}'):
43 def walk(datapath): function
44 for dirpath, dirnames, filenames in os.walk(datapath):
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsclone.c1684 static void walk_runs(struct ntfs_walk_cluster *walk) argument
1693 ctx = walk->image->ctx;
1698 wipe_resident_data(walk->image);
1700 wipe_timestamps(walk->image);
1707 && walk->image->ctx->attr->type == AT_INDEX_ALLOCATION)
1708 wipe_index_allocation_timestamps(walk->image->ni, a);
1714 mft_data = ((walk->image->ni->mft_no == FILE_MFT)
1715 || (walk->image->ni->mft_no == FILE_MFTMirr))
1717 index_i30 = (walk->image->ctx->attr->type == AT_INDEX_ALLOCATION)
1738 dump_clusters(walk
1826 walk_attributes(struct ntfs_walk_cluster *walk) global() argument
1960 walk_clusters(ntfs_volume *volume, struct ntfs_walk_cluster *walk) global() argument
[all...]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DLigatureTree.java145 public void walk(TreeWalker walker) in walk() method in LigatureTree.Lignode
154 subnodes[i].walk(walker); in walk()
236 public void walk(TreeWalker walker) in walk() method in LigatureTree
238 root.walk(walker); in walk()
/third_party/python/Tools/c-analyzer/c_common/
H A Dfsutil.py192 _walk=os.walk,
194 # A wrapper around os.walk that resolves the filenames.
202 walk=_walk_tree,
212 for filename in walk(root):
238 get_files=os.walk,
261 # Use the right "walk" function.
265 _files = _walk_tree if get_files in (os.walk, walk_tree) else get_files
266 get_files = (lambda *a, **k: _walk(*a, walk=_files, **k))
286 walk=walk_tree,
/third_party/node/deps/npm/node_modules/ignore-walk/lib/
H A Dindex.js298 const walk = (opts, callback) => {
307 module.exports = walk
308 walk.sync = walkSync
309 walk.Walker = Walker
310 walk.WalkerSync = WalkerSync
/third_party/skia/third_party/externals/sfntly/cpp/tools/
H A Dutils.py26 # for root, dirs, files in os.walk(path): makes the lint tool unhappy
28 for entry in os.walk(path):
46 for entry in os.walk(path):
/third_party/rust/crates/libc/ci/
H A Dstyle.rs49 walk(Path::new(&arg), &mut errors); in main()
58 fn walk(path: &Path, err: &mut Errors) { in walk() functions
62 walk(&path, err); in walk()
/third_party/skia/tools/
H A Drewrite_includes.py55 for path, _, files in os.walk(root):
71 for path, _, files in os.walk(root):
/third_party/jerryscript/targets/mbedos5/tools/
H A Dgenerate_pins.py69 for root, dirs, files in os.walk(root_dir, topdown=True):
82 for root, dirs, _ in os.walk(root_dir, topdown=True):
135 # now, walk the AST
/third_party/skia/infra/bots/task_drivers/fm_driver/
H A Dfm_driver.go101 walk := func(dir string, exts map[string]bool) (files []string) {
152 "img": walk(*imgs, imgExts),
153 "skp": walk(*skps, map[string]bool{"skp": true}),
154 "svg": walk(*svgs, map[string]bool{"svg": true}),
/third_party/python/PCbuild/
H A Drmpyc.py9 for root, dirs, files in os.walk(root):
/third_party/icu/icu4c/as_is/
H A Dbomlist.py18 tree = os.walk(".")
/third_party/ninja/misc/
H A Dci.py20 for root, directory, filenames in os.walk('.'):

Completed in 15 milliseconds

1234567