Home
last modified time | relevance | path

Searched defs:node (Results 1 – 25 of 2320) sorted by relevance

12345678910>>...93

/third_party/typescript/src/compiler/factory/
DnodeFactory.ts13 // Do not set an `original` pointer when updating a node. enumerator
549 const node = createBaseNode(kind); constant
570 const node = createBaseDeclaration( constant
608 const node = createBaseNamedDeclaration( constant
629 const node = createBaseGenericNamedDeclaration( constant
661 const node = createBaseSignatureDeclaration( constant
691 const node = createBaseGenericNamedDeclaration( constant
712 const node = createBaseInterfaceOrClassLikeDeclaration( constant
732 const node = createBaseNamedDeclaration( constant
751 const node = createBaseBindingLikeDeclaration( constant
[all …]
/third_party/cef/tools/yapf/yapf/yapflib/
Dsubtype_assigner.py63 def Visit_dictsetmaker(self, node): # pylint: disable=invalid-name argument
106 def Visit_expr_stmt(self, node): # pylint: disable=invalid-name argument
114 def Visit_or_test(self, node): # pylint: disable=invalid-name argument
121 def Visit_and_test(self, node): # pylint: disable=invalid-name argument
128 def Visit_not_test(self, node): # pylint: disable=invalid-name argument
135 def Visit_comparison(self, node): # pylint: disable=invalid-name argument
147 def Visit_star_expr(self, node): # pylint: disable=invalid-name argument
154 def Visit_expr(self, node): # pylint: disable=invalid-name argument
161 def Visit_xor_expr(self, node): # pylint: disable=invalid-name argument
168 def Visit_and_expr(self, node): # pylint: disable=invalid-name argument
[all …]
Dsplit_penalty.py64 def Visit_import_as_names(self, node): # pyline: disable=invalid-name argument
74 def Visit_classdef(self, node): # pylint: disable=invalid-name argument
86 def Visit_funcdef(self, node): # pylint: disable=invalid-name argument
110 def Visit_lambdef(self, node): # pylint: disable=invalid-name argument
118 def Visit_parameters(self, node): # pylint: disable=invalid-name argument
127 def Visit_arglist(self, node): # pylint: disable=invalid-name argument
137 def Visit_argument(self, node): # pylint: disable=invalid-name argument
150 def Visit_dotted_name(self, node): # pylint: disable=invalid-name argument
154 def Visit_dictsetmaker(self, node): # pylint: disable=invalid-name argument
165 def Visit_trailer(self, node): # pylint: disable=invalid-name argument
[all …]
Dpytree_unwrapper.py125 def Visit_simple_stmt(self, node): argument
146 def _VisitCompoundStatement(self, node, substatement_names): argument
170 def Visit_if_stmt(self, node): # pylint: disable=invalid-name argument
175 def Visit_while_stmt(self, node): # pylint: disable=invalid-name argument
180 def Visit_for_stmt(self, node): # pylint: disable=invalid-name argument
185 def Visit_try_stmt(self, node): # pylint: disable=invalid-name argument
190 def Visit_except_clause(self, node): # pylint: disable=invalid-name argument
195 def Visit_funcdef(self, node): # pylint: disable=invalid-name argument
198 def Visit_async_funcdef(self, node): # pylint: disable=invalid-name argument
211 def Visit_classdef(self, node): # pylint: disable=invalid-name argument
[all …]
Dblank_line_calculator.py66 def Visit_simple_stmt(self, node): # pylint: disable=invalid-name argument
71 def Visit_decorator(self, node): # pylint: disable=invalid-name argument
81 def Visit_classdef(self, node): # pylint: disable=invalid-name argument
91 def Visit_funcdef(self, node): # pylint: disable=invalid-name argument
107 def DefaultNodeVisit(self, node): argument
123 def _SetBlankLinesBetweenCommentAndClassFunc(self, node): argument
154 def _GetNumNewlines(self, node): argument
161 def _SetNumNewlines(self, node, num_newlines): argument
165 def _IsTopLevel(self, node): argument
170 def _StartsInZerothColumn(node): argument
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/source/util/
Dmove_to_front.h127 Node& node = nodes_.back(); in CreateNode() local
151 Val ValueOf(uint32_t node) const { in ValueOf()
156 uint32_t LeftOf(uint32_t node) const { in LeftOf()
161 uint32_t RightOf(uint32_t node) const { in RightOf()
166 uint32_t ParentOf(uint32_t node) const { in ParentOf()
171 uint32_t TimestampOf(uint32_t node) const { in TimestampOf()
177 uint32_t SizeOf(uint32_t node) const { in SizeOf()
182 uint32_t HeightOf(uint32_t node) const { in HeightOf()
187 Val& MutableValueOf(uint32_t node) { in MutableValueOf()
193 uint32_t& MutableLeftOf(uint32_t node) { in MutableLeftOf()
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DIntermRebuild.cpp49 TIntermRebuild::BaseResult::BaseResult(TIntermNode &node, VisitBits visit) in BaseResult()
53 TIntermRebuild::BaseResult::BaseResult(TIntermNode *node, VisitBits visit) in BaseResult()
117 PreResult::PreResult(TIntermNode &node, VisitBits visit) : BaseResult(node, visit) {} in PreResult()
118 PreResult::PreResult(TIntermNode *node, VisitBits visit) : BaseResult(node, visit) {} in PreResult()
134 PostResult::PostResult(TIntermNode &node) : BaseResult(node, VisitBits::Neither) {} in PostResult()
135 PostResult::PostResult(TIntermNode *node) : BaseResult(node, VisitBits::Neither) {} in PostResult()
191 bool TIntermRebuild::rebuildInPlace(TIntermAggregate &node) in rebuildInPlace()
196 bool TIntermRebuild::rebuildInPlace(TIntermBlock &node) in rebuildInPlace()
201 bool TIntermRebuild::rebuildInPlace(TIntermDeclaration &node) in rebuildInPlace()
207 bool TIntermRebuild::rebuildInPlaceImpl(Node &node) in rebuildInPlaceImpl()
[all …]
/third_party/node/deps/acorn/acorn-walk/dist/
Dwalk.js25 function simple(node, visitors, baseVisitor, state, override) { argument
27 ; }(function c(node, st, override) { argument
37 function ancestor(node, visitors, baseVisitor, state, override) { argument
40 ; }(function c(node, st, override) { argument
55 function recursive(node, state, funcs, baseVisitor, override) { argument
57 ;(function c(node, st, override) { argument
71 var Found = function Found(node, state) { this.node = node; this.state = state; }; argument
74 function full(node, callback, baseVisitor, state, override) { argument
77 ;(function c(node, st, override) { argument
89 function fullAncestor(node, callback, baseVisitor, state) { argument
[all …]
Dwalk.mjs19 function simple(node, visitors, baseVisitor, state, override) { argument
21 ; }(function c(node, st, override) { argument
31 function ancestor(node, visitors, baseVisitor, state, override) { argument
34 ; }(function c(node, st, override) { argument
49 function recursive(node, state, funcs, baseVisitor, override) { argument
51 ;(function c(node, st, override) { argument
65 var Found = function Found(node, state) { this.node = node; this.state = state; }; argument
68 function full(node, callback, baseVisitor, state, override) { argument
71 ;(function c(node, st, override) { argument
83 function fullAncestor(node, callback, baseVisitor, state) { argument
[all …]
/third_party/python/Lib/
Dast.py65 def _raise_malformed_node(node): argument
67 def _convert_num(node): argument
71 def _convert_signed_num(node): argument
79 def _convert(node): argument
108 def dump(node, annotate_fields=True, include_attributes=False, *, indent=None): argument
120 def _format(node, level=0): argument
192 def fix_missing_locations(node): argument
200 def _fix(node, lineno, col_offset, end_lineno, end_col_offset): argument
227 def increment_lineno(node, n=1): argument
244 def iter_fields(node): argument
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DValidateAST.cpp85 void ValidateAST::visitNode(Visit visit, TIntermNode *node) in visitNode()
110 void ValidateAST::expectNonNullChildren(Visit visit, TIntermNode *node, size_t least_count) in expectNonNullChildren()
132 void ValidateAST::visitSymbol(TIntermSymbol *node) in visitSymbol()
137 void ValidateAST::visitConstantUnion(TIntermConstantUnion *node) in visitConstantUnion()
142 bool ValidateAST::visitSwizzle(Visit visit, TIntermSwizzle *node) in visitSwizzle()
148 bool ValidateAST::visitBinary(Visit visit, TIntermBinary *node) in visitBinary()
154 bool ValidateAST::visitUnary(Visit visit, TIntermUnary *node) in visitUnary()
160 bool ValidateAST::visitTernary(Visit visit, TIntermTernary *node) in visitTernary()
166 bool ValidateAST::visitIfElse(Visit visit, TIntermIfElse *node) in visitIfElse()
172 bool ValidateAST::visitSwitch(Visit visit, TIntermSwitch *node) in visitSwitch()
[all …]
DOutputTree.cpp66 void OutputTreeText(TInfoSinkBase &out, TIntermNode *node, const int depth) in OutputTreeText()
85 void TOutputTraverser::visitSymbol(TIntermSymbol *node) in visitSymbol()
102 bool TOutputTraverser::visitSwizzle(Visit visit, TIntermSwizzle *node) in visitSwizzle()
114 bool TOutputTraverser::visitBinary(Visit visit, TIntermBinary *node) in visitBinary()
300 bool TOutputTraverser::visitUnary(Visit visit, TIntermUnary *node) in visitUnary()
354 bool TOutputTraverser::visitFunctionDefinition(Visit visit, TIntermFunctionDefinition *node) in visitFunctionDefinition()
361 bool TOutputTraverser::visitInvariantDeclaration(Visit visit, TIntermInvariantDeclaration *node) in visitInvariantDeclaration()
368 void TOutputTraverser::visitFunctionPrototype(TIntermFunctionPrototype *node) in visitFunctionPrototype()
383 bool TOutputTraverser::visitAggregate(Visit visit, TIntermAggregate *node) in visitAggregate()
455 bool TOutputTraverser::visitBlock(Visit visit, TIntermBlock *node) in visitBlock()
[all …]
/third_party/uboot/u-boot-2020.01/drivers/core/
Dofnode.c18 int ofnode_read_u32(ofnode node, const char *propname, u32 *outp) in ofnode_read_u32()
42 u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def) in ofnode_read_u32_default()
50 int ofnode_read_s32_default(ofnode node, const char *propname, s32 def) in ofnode_read_s32_default()
58 int ofnode_read_u64(ofnode node, const char *propname, u64 *outp) in ofnode_read_u64()
82 u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def) in ofnode_read_u64_default()
90 bool ofnode_read_bool(ofnode node, const char *propname) in ofnode_read_bool()
104 const char *ofnode_read_string(ofnode node, const char *propname) in ofnode_read_string()
137 ofnode ofnode_find_subnode(ofnode node, const char *subnode_name) in ofnode_find_subnode()
163 int ofnode_read_u32_array(ofnode node, const char *propname, in ofnode_read_u32_array()
179 ofnode ofnode_first_subnode(ofnode node) in ofnode_first_subnode()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DIntermNodePatternMatcher.cpp27 TIntermTyped *node = sequence[ii]->getAsTyped(); in ContainsMatrixNode() local
38 TIntermTyped *node = sequence[ii]->getAsTyped(); in ContainsVectorNode() local
50 bool IntermNodePatternMatcher::IsDynamicIndexingOfNonSSBOVectorOrMatrix(TIntermBinary *node) in IsDynamicIndexingOfNonSSBOVectorOrMatrix()
56 bool IntermNodePatternMatcher::IsDynamicIndexingOfVectorOrMatrix(TIntermBinary *node) in IsDynamicIndexingOfVectorOrMatrix()
62 bool IntermNodePatternMatcher::matchInternal(TIntermBinary *node, TIntermNode *parentNode) in matchInternal()
84 bool IntermNodePatternMatcher::match(TIntermUnary *node) in match()
96 bool IntermNodePatternMatcher::match(TIntermBinary *node, TIntermNode *parentNode) in match()
105 bool IntermNodePatternMatcher::match(TIntermBinary *node, in match()
123 bool IntermNodePatternMatcher::match(TIntermAggregate *node, TIntermNode *parentNode) in match()
158 bool IntermNodePatternMatcher::match(TIntermTernary *node) in match()
[all …]
/third_party/pyyaml/lib3/yaml/
Dconstructor.py54 def construct_document(self, node): argument
67 def construct_object(self, node, deep=False): argument
117 def construct_scalar(self, node): argument
124 def construct_sequence(self, node, deep=False): argument
132 def construct_mapping(self, node, deep=False): argument
147 def construct_pairs(self, node, deep=False): argument
173 def construct_scalar(self, node): argument
180 def flatten_mapping(self, node): argument
215 def construct_mapping(self, node, deep=False): argument
220 def construct_yaml_null(self, node): argument
[all …]
/third_party/selinux/libsepol/cil/src/
Dcil_tree.c53 struct cil_tree_node *cil_tree_get_next_path(struct cil_tree_node *node, char **info_kind, uint32_t… in cil_tree_get_next_path()
106 char *cil_tree_get_cil_path(struct cil_tree_node *node) in cil_tree_get_cil_path()
122 __attribute__((format (printf, 3, 4))) void cil_tree_log(struct cil_tree_node *node, enum cil_log_l… in cil_tree_log()
161 int cil_tree_subtree_has_decl(struct cil_tree_node *node) in cil_tree_subtree_has_decl()
199 void cil_tree_subtree_destroy(struct cil_tree_node *node) in cil_tree_subtree_destroy()
205 void cil_tree_children_destroy(struct cil_tree_node *node) in cil_tree_children_destroy()
224 void cil_tree_node_init(struct cil_tree_node **node) in cil_tree_node_init()
239 void cil_tree_node_destroy(struct cil_tree_node **node) in cil_tree_node_destroy()
276 int cil_tree_walk_core(struct cil_tree_node *node, in cil_tree_walk_core()
277 int (*process_node)(struct cil_tree_node *node, uint32_t *finished, void *extra_args), in cil_tree_walk_core()
[all …]
/third_party/boost/libs/coroutine/example/asymmetric/
Dsame_fringe.cpp20 struct node struct
22 typedef boost::shared_ptr< node > ptr_t; argument
31 node(const std::string& v): in node() argument
35 node(ptr_t l, const std::string& v, ptr_t r): in node() function
41 return ptr_t(new node(v)); in create() argument
46 return ptr_t(new node(l, v, r)); in create() argument
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DOutputTree.cpp67 void OutputTreeText(TInfoSinkBase &out, TIntermNode *node, const int depth) in OutputTreeText()
86 void TOutputTraverser::visitSymbol(TIntermSymbol *node) in visitSymbol()
103 bool TOutputTraverser::visitSwizzle(Visit visit, TIntermSwizzle *node) in visitSwizzle()
115 bool TOutputTraverser::visitBinary(Visit visit, TIntermBinary *node) in visitBinary()
301 bool TOutputTraverser::visitUnary(Visit visit, TIntermUnary *node) in visitUnary()
364 bool TOutputTraverser::visitFunctionDefinition(Visit visit, TIntermFunctionDefinition *node) in visitFunctionDefinition()
372 TIntermGlobalQualifierDeclaration *node) in visitGlobalQualifierDeclaration()
386 void TOutputTraverser::visitFunctionPrototype(TIntermFunctionPrototype *node) in visitFunctionPrototype()
401 bool TOutputTraverser::visitAggregate(Visit visit, TIntermAggregate *node) in visitAggregate()
479 bool TOutputTraverser::visitBlock(Visit visit, TIntermBlock *node) in visitBlock()
[all …]
/third_party/glib/glib/
Dgnode.c93 #define g_node_free(node) g_slice_free (GNode, node) argument
108 GNode *node = g_node_alloc0 (); in g_node_new() local
114 g_nodes_free (GNode *node) in g_nodes_free()
151 g_node_unlink (GNode *node) in g_node_unlink()
182 g_node_copy_deep (GNode *node, in g_node_copy_deep()
217 g_node_copy (GNode *node) in g_node_copy()
248 GNode *node) in g_node_insert()
278 GNode *node) in g_node_insert_before()
335 GNode *node) in g_node_insert_after()
379 GNode *node) in g_node_prepend()
[all …]
/third_party/typescript/src/services/
Dbreakpoints.ts273 const { left, operatorToken } = <BinaryExpression>node; constant
343 … const { initializer, type } = <VariableDeclaration | ParameterDeclaration>node.parent; constant
350 const { left } = <BinaryExpression>node.parent; constant
539 …const elements: NodeArray<Expression | ObjectLiteralElement> = node.kind === SyntaxKind.ArrayLiter… constant
559 const enumDeclaration = <EnumDeclaration>node.parent; constant
563 const classDeclaration = <ClassDeclaration>node.parent; constant
600 const caseBlock = <CaseBlock>node.parent; constant
609 const bindingPattern = <BindingPattern>node.parent; constant
616 const objectLiteral = <ObjectLiteralExpression>node.parent; constant
627 const bindingPattern = <BindingPattern>node.parent; constant
[all …]
/third_party/node/tools/inspector_protocol/jinja2/
Dcompiler.py64 def new_func(self, node, frame, **kwargs): argument
74 def generate(node, environment, name, filename, stream=None, argument
123 def __init__(self, node): argument
203 def visit_Filter(self, node): argument
207 def visit_Test(self, node): argument
211 def visit_Block(self, node): argument
225 def visit_Name(self, node): argument
233 def visit_Block(self, node): argument
353 def start_write(self, frame, node=None): argument
365 def simple_write(self, s, frame, node=None): argument
[all …]
/third_party/jinja2/
Dcompiler.py67 def new_func(self, node, frame, **kwargs): argument
79 node, environment, name, filename, stream=None, defer_init=False, optimized=True argument
127 def __init__(self, node): argument
206 def visit_Filter(self, node): argument
210 def visit_Test(self, node): argument
214 def visit_Block(self, node): argument
228 def visit_Name(self, node): argument
236 def visit_Block(self, node): argument
356 def start_write(self, frame, node=None): argument
368 def simple_write(self, s, frame, node=None): argument
[all …]
/third_party/skia/third_party/externals/jinja2/
Dcompiler.py67 def new_func(self, node, frame, **kwargs): argument
79 node, environment, name, filename, stream=None, defer_init=False, optimized=True argument
127 def __init__(self, node): argument
206 def visit_Filter(self, node): argument
210 def visit_Test(self, node): argument
214 def visit_Block(self, node): argument
228 def visit_Name(self, node): argument
236 def visit_Block(self, node): argument
356 def start_write(self, frame, node=None): argument
368 def simple_write(self, s, frame, node=None): argument
[all …]
/third_party/uboot/u-boot-2020.01/include/dm/
Dofnode.h56 ofnode node; member
69 static inline const struct device_node *ofnode_to_np(ofnode node) in ofnode_to_np()
86 static inline int ofnode_to_offset(ofnode node) in ofnode_to_offset()
100 static inline bool ofnode_valid(ofnode node) in ofnode_valid()
116 ofnode node; in offset_to_ofnode() local
134 ofnode node; in np_to_ofnode() local
152 static inline bool ofnode_is_np(ofnode node) in ofnode_is_np()
185 ofnode node; in ofnode_null() local
213 static inline int ofnode_read_s32(ofnode node, const char *propname, in ofnode_read_s32()
764 #define ofnode_for_each_subnode(node, parent) \ argument
/third_party/pyyaml/lib/yaml/
Dconstructor.py85 def construct_document(self, node): argument
98 def construct_object(self, node, deep=False): argument
148 def construct_scalar(self, node): argument
155 def construct_sequence(self, node, deep=False): argument
163 def construct_mapping(self, node, deep=False): argument
180 def construct_pairs(self, node, deep=False): argument
206 def construct_scalar(self, node): argument
213 def flatten_mapping(self, node): argument
248 def construct_mapping(self, node, deep=False): argument
253 def construct_yaml_null(self, node): argument
[all …]

12345678910>>...93