Home
last modified time | relevance | path

Searched refs:parent (Results 201 - 225 of 1793) sorted by relevance

12345678910>>...72

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-repacker.hh115 // it's parent where possible. in modified_distance()
132 unsigned parent; member
324 // referenced from the parent object. in sort_shortest_distance()
550 * parent to the clone. The copy is a shallow copy, objects
566 // to child are from parent. in duplicate()
580 auto& parent = vertices_[parent_idx]; in duplicate() local
581 for (unsigned i = 0; i < parent.obj.links.length; i++) in duplicate()
583 auto& l = parent.obj.links[i]; in duplicate()
603 auto& parent = vertices_[parent_idx].obj; in raise_childrens_priority() local
604 for (unsigned i = 0; i < parent in raise_childrens_priority()
660 const auto& parent = vertices_[o.parent]; print_overflows() local
858 const auto& parent = vertices_[parent_idx]; compute_offset() local
[all...]
/third_party/python/PC/layout/
H A Dmain.py24 __path__ = [str(Path(__file__).resolve().parent)]
121 for dest, src in rglob(Path(tcl_lib).parent, "**/*"):
132 src = src.parent / (src.stem + "_d" + src.suffix)
286 if not ns.precompile or src not in PY_FILES or src.parent in DATA_DIRS:
312 zf.write(str(f), str(dest.parent / f.name))
382 ns.zip.parent.mkdir(parents=True, exist_ok=True)
414 (ns.copy / dest).parent.mkdir(parents=True, exist_ok=True)
426 and src.parent not in DATA_DIRS
432 (ns.temp / "Lib" / dest).parent.mkdir(parents=True, exist_ok=True)
441 (ns.copy / dest).parent
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Drepeated_scalar_container.cc66 Message* message = self->parent->message; in InternalAssignRepeatedField()
80 Message* message = self->parent->message; in Len()
89 cmessage::AssureWritable(self->parent); in AssignItem()
90 Message* message = self->parent->message; in AssignItem()
107 return cmessage::DeleteRepeatedField(self->parent, field_descriptor, in AssignItem()
195 Message* message = self->parent->message; in Item()
344 cmessage::AssureWritable(self->parent); in Subscript()
345 Message* message = self->parent->message; in Subscript()
438 cmessage::AssureWritable(self->parent); in Subscript()
439 Message* message = self->parent in Subscript()
670 NewContainer( CMessage* parent, const FieldDescriptor* parent_field_descriptor) Subscript() argument
[all...]
/third_party/typescript/lib/
H A Dtsserverlibrary.js8169 function containsPath(parent, child, currentDirectory, ignoreCase) {
8171 parent = combinePaths(currentDirectory, parent);
8177 if (parent === undefined || child === undefined)
8179 if (parent === child)
8181 var parentComponents = reducePathComponents(getPathComponents(parent));
8999 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9309 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
H A Dtsserver.js8170 function containsPath(parent, child, currentDirectory, ignoreCase) {
8172 parent = combinePaths(currentDirectory, parent);
8178 if (parent === undefined || child === undefined)
8180 if (parent === child)
8182 var parentComponents = reducePathComponents(getPathComponents(parent));
9000 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9310 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
H A Dtypescript.js8160 function containsPath(parent, child, currentDirectory, ignoreCase) {
8162 parent = combinePaths(currentDirectory, parent);
8168 if (parent === undefined || child === undefined)
8170 if (parent === child)
8172 var parentComponents = reducePathComponents(getPathComponents(parent));
8990 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9300 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
H A DtypescriptServices.js8160 function containsPath(parent, child, currentDirectory, ignoreCase) {
8162 parent = combinePaths(currentDirectory, parent);
8168 if (parent === undefined || child === undefined)
8170 if (parent === child)
8172 var parentComponents = reducePathComponents(getPathComponents(parent));
8990 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9300 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
/third_party/ninja/src/
H A Dparser.cc22 bool Parser::Load(const string& filename, string* err, Lexer* parent) { in Load() argument
23 // If |parent| is not NULL, metrics collection has been started by a parent in Load()
26 METRIC_RECORD_IF(".ninja parse", parent == NULL); in Load()
32 if (parent) in Load()
33 parent->Error(string(*err), err); in Load()
/third_party/libfuse/example/
H A Dpassthrough_ll.c309 static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name, in lo_do_lookup() argument
322 newfd = openat(lo_fd(req, parent), name, O_PATH | O_NOFOLLOW); in lo_do_lookup()
360 (unsigned long long) parent, name, (unsigned long long) e->ino); in lo_do_lookup()
371 static void lo_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in lo_lookup() argument
377 fuse_log(FUSE_LOG_DEBUG, "lo_lookup(parent=%" PRIu64 ", name=%s)\n", in lo_lookup()
378 parent, name); in lo_lookup()
380 err = lo_do_lookup(req, parent, name, &e); in lo_lookup()
387 static void lo_mknod_symlink(fuse_req_t req, fuse_ino_t parent, in lo_mknod_symlink() argument
393 struct lo_inode *dir = lo_inode(req, parent); in lo_mknod_symlink()
402 saverr = lo_do_lookup(req, parent, nam in lo_mknod_symlink()
417 lo_mknod(fuse_req_t req, fuse_ino_t parent, const char *name, mode_t mode, dev_t rdev) lo_mknod() argument
423 lo_mkdir(fuse_req_t req, fuse_ino_t parent, const char *name, mode_t mode) lo_mkdir() argument
429 lo_symlink(fuse_req_t req, const char *link, fuse_ino_t parent, const char *name) lo_symlink() argument
435 lo_link(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent, const char *name) lo_link() argument
477 lo_rmdir(fuse_req_t req, fuse_ino_t parent, const char *name) lo_rmdir() argument
486 lo_rename(fuse_req_t req, fuse_ino_t parent, const char *name, fuse_ino_t newparent, const char *newname, unsigned int flags) lo_rename() argument
503 lo_unlink(fuse_req_t req, fuse_ino_t parent, const char *name) lo_unlink() argument
755 lo_create(fuse_req_t req, fuse_ino_t parent, const char *name, mode_t mode, struct fuse_file_info *fi) lo_create() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Dframesync.c53 .parent_log_context_offset = OFFSET(parent),
79 int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in) in ff_framesync_init() argument
84 av_assert0(parent->nb_outputs == 1); in ff_framesync_init()
87 fs->parent = parent; in ff_framesync_init()
100 ff_outlink_set_status(fs->parent->outputs[0], AVERROR_EOF, AV_NOPTS_VALUE); in framesync_eof()
299 AVFilterContext *ctx = fs->parent; in consume_from_fifos()
353 int ff_framesync_init_dualinput(FFFrameSync *fs, AVFilterContext *parent) in ff_framesync_init_dualinput() argument
357 ret = ff_framesync_init(fs, parent, 2); in ff_framesync_init_dualinput()
360 fs->in[0].time_base = parent in ff_framesync_init_dualinput()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_find_array_copies.c88 node_for_deref(nir_deref_instr *instr, struct match_node *parent, in node_for_deref() argument
118 idx = parent->num_children - 1; in node_for_deref()
124 assert(idx < parent->num_children - 1); in node_for_deref()
126 idx = parent->num_children - 1; in node_for_deref()
138 assert(idx < parent->num_children); in node_for_deref()
139 if (parent->children[idx]) { in node_for_deref()
140 return parent->children[idx]; in node_for_deref()
143 parent->children[idx] = node; in node_for_deref()
149 node_for_wildcard(const struct glsl_type *type, struct match_node *parent, in node_for_wildcard() argument
155 if (parent in node_for_wildcard()
[all...]
/third_party/skia/src/pathops/
H A DSkPathOpsAsWinding.cpp277 void inParent(Contour& contour, Contour& parent) {
278 // move contour into sibling list contained by parent
279 for (auto test : parent.fChildren) {
285 // move parent's children into contour's children if contained by contour
286 for (auto iter = parent.fChildren.begin(); iter != parent.fChildren.end(); ) {
289 iter = parent.fChildren.erase(iter);
294 parent.fChildren.push_back(&contour);
297 bool checkContainerChildren(Contour* parent, Contour* child) {
303 if (parent) {
[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js8112 function containsPath(parent, child, currentDirectory, ignoreCase) {
8114 parent = combinePaths(currentDirectory, parent);
8120 if (parent === undefined || child === undefined)
8122 if (parent === child)
8124 var parentComponents = reducePathComponents(getPathComponents(parent));
8920 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9224 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
/third_party/libbpf/src/
H A Dnetlink.c549 if (OPTS_GET(hook, parent, 0)) in attach_point_to_config()
561 __u32 *parent) in tc_get_tcm_parent()
566 if (*parent) in tc_get_tcm_parent()
568 *parent = TC_H_MAKE(TC_H_CLSACT, in tc_get_tcm_parent()
573 if (!*parent) in tc_get_tcm_parent()
720 __u32 protocol, bpf_flags, handle, priority, parent, prog_id, flags; in bpf_tc_attach() local
732 parent = OPTS_GET(hook, parent, 0); in bpf_tc_attach()
761 ret = tc_get_tcm_parent(attach_point, &parent); in bpf_tc_attach()
764 req.tc.tcm_parent = parent; in bpf_tc_attach()
560 tc_get_tcm_parent(enum bpf_tc_attach_point attach_point, __u32 *parent) tc_get_tcm_parent() argument
796 __u32 protocol = 0, handle, priority, parent, prog_id, flags; __bpf_tc_detach() local
867 __u32 protocol, handle, priority, parent, prog_id, flags; bpf_tc_query() local
[all...]
/third_party/node/test/parallel/
H A Dtest-http2-priority-event.js14 function onPriority(stream, parent, weight, exclusive) {
16 assert.strictEqual(parent, 0);
23 parent: 0,
45 parent: 0,
/third_party/node/test/tick-processor/
H A Dtick-processor-base.js32 function match(pattern, parent, ticks, flags = []) {
54 return setTimeout(() => match(pattern, parent, ticks), RETRY_TIMEOUT);
56 parent.stdout.removeAllListeners();
57 parent.kill();
/third_party/python/Doc/tools/extensions/
H A Dasdl_highlight.py5 CPYTHON_ROOT = Path(__file__).resolve().parent.parent.parent.parent
/third_party/mbedtls/library/
H A Dx509_crt.c2120 * Check the signature of a certificate by its parent
2123 mbedtls_x509_crt *parent, in x509_crt_check_signature()
2153 if (!mbedtls_pk_can_do(&parent->pk, child->sig_pk)) { in x509_crt_check_signature()
2159 return mbedtls_pk_verify_restartable(&parent->pk, in x509_crt_check_signature()
2167 return mbedtls_pk_verify_ext(child->sig_pk, child->sig_opts, &parent->pk, in x509_crt_check_signature()
2173 * Check if 'parent' is a suitable parent (signing CA) for 'child'.
2176 * top means parent is a locally-trusted certificate
2179 const mbedtls_x509_crt *parent, in x509_crt_check_parent()
2185 if (x509_name_cmp(&child->issuer, &parent in x509_crt_check_parent()
2122 x509_crt_check_signature(const mbedtls_x509_crt *child, mbedtls_x509_crt *parent, mbedtls_x509_crt_restart_ctx *rs_ctx) x509_crt_check_signature() argument
2178 x509_crt_check_parent(const mbedtls_x509_crt *child, const mbedtls_x509_crt *parent, int top) x509_crt_check_parent() argument
2264 mbedtls_x509_crt *parent, *fallback_parent; x509_crt_find_parent_in() local
2375 x509_crt_find_parent( mbedtls_x509_crt *child, mbedtls_x509_crt *trust_ca, mbedtls_x509_crt **parent, int *parent_is_trusted, int *signature_is_good, unsigned path_cnt, unsigned self_cnt, mbedtls_x509_crt_restart_ctx *rs_ctx, const mbedtls_x509_time *now) x509_crt_find_parent() argument
2520 mbedtls_x509_crt *parent; x509_crt_verify_chain() local
[all...]
/third_party/python/Lib/idlelib/
H A Dhelp.py170 def __init__(self, parent, filename):
175 Text.__init__(self, parent, wrap='word', highlightthickness=0,
212 def __init__(self, parent, filename):
213 Frame.__init__(self, parent)
215 self.style = Style(parent)
240 def __init__(self, parent, filename, title):
241 Toplevel.__init__(self, parent)
281 def show_idlehelp(parent):
287 HelpWindow(parent, filename, 'IDLE Help (%s)' % python_version())
/third_party/rust/crates/memoffset/src/
H A Doffset_of.rs101 ($parent:path, $field:tt) => {{
103 _memoffset__let_base_ptr!(base_ptr, $parent);
105 let field_ptr = raw_field!(base_ptr, $parent, $field);
124 ($parent:ty, $field:tt) => {{
126 _memoffset__let_base_ptr!(base_ptr, $parent);
128 let field_ptr = raw_field_tuple!(base_ptr, $parent, $field);
157 ($parent:path, $field:tt) => {{
159 _memoffset__let_base_ptr!(base_ptr, $parent);
161 let field_ptr = raw_field_union!(base_ptr, $parent, $field);
/third_party/node/deps/npm/node_modules/chalk/source/
H A Dindex.js132 const createStyler = (open, close, parent) => {
135 if (parent === undefined) {
139 openAll = parent.openAll + open;
140 closeAll = close + parent.closeAll;
148 parent,
187 styler = styler.parent;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DMixedUnitLongNameHandler.java23 private final MicroPropsGenerator parent; field in MixedUnitLongNameHandler
40 private MixedUnitLongNameHandler(PluralRules rules, MicroPropsGenerator parent) { in MixedUnitLongNameHandler() argument
42 this.parent = parent; in MixedUnitLongNameHandler()
57 * @param parent MicroPropsGenerator instance.
64 MicroPropsGenerator parent) { in forMeasureUnit()
73 MixedUnitLongNameHandler result = new MixedUnitLongNameHandler(rules, parent); in forMeasureUnit()
109 * returned by the parent.
111 * This function must not be called if this instance has no parent: call
118 micros = parent in processQuantity()
59 forMeasureUnit(ULocale locale, MeasureUnit mixedUnit, NumberFormatter.UnitWidth width, String unitDisplayCase, PluralRules rules, MicroPropsGenerator parent) forMeasureUnit() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DScientificNotation.java108 MicroPropsGenerator parent) { in withLocaleData()
109 return new ScientificHandler(this, symbols, build, parent); in withLocaleData()
132 final MicroPropsGenerator parent; field in ScientificNotation.ScientificHandler
139 MicroPropsGenerator parent) { in ScientificHandler()
142 this.parent = parent; in ScientificHandler()
157 MicroProps micros = parent.processQuantity(quantity); in processQuantity()
105 withLocaleData( DecimalFormatSymbols symbols, boolean build, MicroPropsGenerator parent) withLocaleData() argument
135 ScientificHandler( ScientificNotation notation, DecimalFormatSymbols symbols, boolean safe, MicroPropsGenerator parent) ScientificHandler() argument
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
H A DScientificNotation.java107 MicroPropsGenerator parent) { in withLocaleData()
108 return new ScientificHandler(this, symbols, build, parent); in withLocaleData()
131 final MicroPropsGenerator parent; field in ScientificNotation.ScientificHandler
138 MicroPropsGenerator parent) { in ScientificHandler()
141 this.parent = parent; in ScientificHandler()
156 MicroProps micros = parent.processQuantity(quantity); in processQuantity()
104 withLocaleData( DecimalFormatSymbols symbols, boolean build, MicroPropsGenerator parent) withLocaleData() argument
134 ScientificHandler( ScientificNotation notation, DecimalFormatSymbols symbols, boolean safe, MicroPropsGenerator parent) ScientificHandler() argument
H A DCompactNotation.java71 MicroPropsGenerator parent) { in withLocaleData()
73 return new CompactHandler(this, locale, nsName, compactType, rules, buildReference, safe, parent); in withLocaleData()
79 final MicroPropsGenerator parent; field in CompactNotation.CompactHandler
92 MicroPropsGenerator parent) { in CompactHandler()
94 this.parent = parent; in CompactHandler()
127 MicroProps micros = parent.processQuantity(quantity); in processQuantity()
64 withLocaleData( ULocale locale, String nsName, CompactType compactType, PluralRules rules, MutablePatternModifier buildReference, boolean safe, MicroPropsGenerator parent) withLocaleData() argument
84 CompactHandler( CompactNotation notation, ULocale locale, String nsName, CompactType compactType, PluralRules rules, MutablePatternModifier buildReference, boolean safe, MicroPropsGenerator parent) CompactHandler() argument

Completed in 140 milliseconds

12345678910>>...72