Home
last modified time | relevance | path

Searched refs:parent (Results 301 - 325 of 1913) sorted by relevance

1...<<11121314151617181920>>...77

/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_pq.c56 size_t parent; in bubble_up() local
58 parent = (index - 1) / 2; in bubble_up()
59 if (!pq->less(pq->q[index], pq->q[parent])) { in bubble_up()
62 swap(pq, parent, index); in bubble_up()
63 index = parent; in bubble_up()
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_pq.c56 size_t parent; in bubble_up() local
58 parent = (index - 1) / 2; in bubble_up()
59 if (!pq->less(pq->q[index], pq->q[parent])) { in bubble_up()
62 swap(pq, parent, index); in bubble_up()
63 index = parent; in bubble_up()
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_global.py87 yield srcinfo.resolve('typedef', data, name, parent=None)
113 # XXX Should "parent" really be None for inline type decls?
114 yield srcinfo.resolve(kind, data, name, parent=None)
133 yield srcinfo.resolve(kind, data, name, parent=None)
149 yield srcinfo.resolve(kind, data, name, parent=None)
165 yield srcinfo.resolve(kind, data, name, parent=None)
/third_party/python/Lib/idlelib/
H A Dpercolator.py73 def _percolator(parent): # htest #
89 box = tk.Toplevel(parent)
91 x, y = map(int, parent.geometry().split('+')[1:])
106 var1 = tk.IntVar(parent)
109 var2 = tk.IntVar(parent)
H A Ddynoption.py32 def _dyn_option_menu(parent): # htest #
35 top = Toplevel(parent)
37 x, y = map(int, parent.geometry().split('+')[1:])
/third_party/mesa3d/src/amd/compiler/
H A Daco_lower_to_cssa.cpp179 /* check intersection between var and parent:
180 * We already know that parent dominates var. */
182 intersects(cssa_ctx& ctx, Temp var, Temp parent) in intersects() argument
185 merge_node& node_parent = ctx.merge_node_table[parent.id()]; in intersects()
189 /* if the parent is live-out at the definition block of var, they intersect */ in intersects()
190 bool parent_live = ctx.live_out[block_idx].count(parent.id()); in intersects()
194 /* parent is defined in a different block than var */ in intersects()
196 /* if the parent is not live-in, they don't interfere */ in intersects()
201 if (!ctx.live_out[pred].count(parent.id())) in intersects()
210 if (cp.op.isTemp() && cp.op.getTemp() == parent) in intersects()
248 interference(cssa_ctx& ctx, Temp var, Temp parent) interference() argument
[all...]
/third_party/node/lib/internal/
H A Dasync_hooks.js304 function trackPromise(promise, parent) {
309 // Get trigger id from parent async id before making the async id of the
311 const triggerAsyncId = parent ? getOrSetAsyncId(parent) :
318 function promiseInitHook(promise, parent) {
319 trackPromise(promise, parent);
325 function promiseInitHookWithDestroyTracking(promise, parent) {
326 promiseInitHook(promise, parent);
327 destroyTracking(promise, parent);
330 function destroyTracking(promise, parent) {
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Dnode.c374 void gpir_node_replace_child(gpir_node *parent, gpir_node *old_child, in gpir_node_replace_child() argument
377 if (parent->type == gpir_node_type_alu) { in gpir_node_replace_child()
378 gpir_alu_node *alu = gpir_node_to_alu(parent); in gpir_node_replace_child()
384 else if (parent->type == gpir_node_type_store) { in gpir_node_replace_child()
385 gpir_store_node *store = gpir_node_to_store(parent); in gpir_node_replace_child()
388 } else if (parent->type == gpir_node_type_branch) { in gpir_node_replace_child()
389 gpir_branch_node *branch = gpir_node_to_branch(parent); in gpir_node_replace_child()
413 void gpir_node_insert_child(gpir_node *parent, gpir_node *child, in gpir_node_insert_child() argument
416 gpir_node_foreach_pred(parent, dep) { in gpir_node_insert_child()
419 gpir_node_replace_child(parent, chil in gpir_node_insert_child()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DProgramExecutable.h71 TransformFeedbackVarying(const sh::ShaderVariable &field, const sh::ShaderVariable &parent) in TransformFeedbackVarying()
76 interpolation = parent.interpolation; in TransformFeedbackVarying()
77 isInvariant = parent.isInvariant; in TransformFeedbackVarying()
78 ASSERT(parent.isShaderIOBlock || !parent.name.empty()); in TransformFeedbackVarying()
79 if (!parent.name.empty()) in TransformFeedbackVarying()
81 name = parent.name + "." + name; in TransformFeedbackVarying()
82 mappedName = parent.mappedName + "." + mappedName; in TransformFeedbackVarying()
84 structOrBlockName = parent.structOrBlockName; in TransformFeedbackVarying()
85 mappedStructOrBlockName = parent in TransformFeedbackVarying()
[all...]
/third_party/skia/src/pathops/
H A DSkOpSegment.h44 SkOpSegment* addConic(SkPoint pts[3], SkScalar weight, SkOpContour* parent) { in addConic() argument
45 init(pts, weight, parent, SkPath::kConic_Verb); in addConic()
52 SkOpSegment* addCubic(SkPoint pts[4], SkOpContour* parent) { in addCubic() argument
53 init(pts, 1, parent, SkPath::kCubic_Verb); in addCubic()
71 SkOpSegment* addLine(SkPoint pts[2], SkOpContour* parent) { in addLine() argument
73 init(pts, 1, parent, SkPath::kLine_Verb); in addLine()
87 SkOpSegment* addQuad(SkPoint pts[3], SkOpContour* parent) { in addQuad() argument
88 init(pts, 1, parent, SkPath::kQuad_Verb); in addQuad()
231 void init(SkPoint pts[], SkScalar weight, SkOpContour* parent, SkPath::Verb verb);
288 bool match(const SkOpPtT* span, const SkOpSegment* parent, doubl
[all...]
/third_party/cJSON/
H A DcJSON_Utils.c434 cJSON *parent = NULL; in detach_path() local
437 /* copy path and split it in parent and child */ in detach_path()
452 parent = get_item_from_pointer(object, (char*)parent_pointer, case_sensitive); in detach_path()
455 if (cJSON_IsArray(parent)) in detach_path()
462 detached_item = detach_item_from_array(parent, index); in detach_path()
464 else if (cJSON_IsObject(parent)) in detach_path()
466 detached_item = cJSON_DetachItemFromObject(parent, (char*)child_pointer); in detach_path()
828 cJSON *parent = NULL; in apply_patch() local
978 /* split pointer in parent and child */ in apply_patch()
988 parent in apply_patch()
[all...]
/third_party/python/Lib/lib2to3/tests/
H A Dtest_pytree.py246 self.assertEqual(l1.parent, n1)
247 self.assertEqual(n1.parent, None)
248 self.assertEqual(n2.parent, None)
255 self.assertEqual(l1.parent, None)
256 self.assertEqual(n1.parent, None)
257 self.assertEqual(n2.parent, None)
264 self.assertEqual(n1.parent, None)
268 self.assertEqual(l1.parent, None)
276 self.assertEqual(l1.parent, None)
277 self.assertEqual(l2.parent, n
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DICUResourceBundle.java42 * CLDR string value "∅∅∅" prevents fallback to the parent bundle.
121 ULocale parent = new ULocale(baseLoc); in getFunctionalEquivalent()
137 r = (ICUResourceBundle) UResourceBundle.getBundleInstance(baseName, parent); in getFunctionalEquivalent()
143 if (parent.equals(availableULocales[i])) { in getFunctionalEquivalent()
169 parent = new ULocale(baseLoc); in getFunctionalEquivalent()
170 r = (ICUResourceBundle) UResourceBundle.getBundleInstance(baseName, parent); in getFunctionalEquivalent()
199 parent = new ULocale(baseLoc); in getFunctionalEquivalent()
200 r = (ICUResourceBundle) UResourceBundle.getBundleInstance(baseName, parent); in getFunctionalEquivalent()
431 // only storing parent items in the absence of child items. in getAllItemsWithFallback()
433 // to prevent a parent ite in getAllItemsWithFallback()
1409 setParent(ResourceBundle parent) setParent() argument
[all...]
/base/security/permission_lite/services/ipc_auth/src/
H A Dipc_auth_lite.c30 static void OnInitialize(Feature *feature, Service *parent, Identity identity);
60 static void OnInitialize(Feature *feature, Service *parent, Identity identity) in OnInitialize() argument
62 (void)parent; in OnInitialize()
/base/security/permission_lite/services/pms/src/
H A Dpms_inner.c29 static void OnInitialize(Feature *feature, Service *parent, Identity identity);
64 static void OnInitialize(Feature *feature, Service *parent, Identity identity) in OnInitialize() argument
66 (void)parent; in OnInitialize()
/third_party/NuttX/drivers/usbdev/gadget/fconfig/include/
H A Dusb_obj.h55 struct usb_obj *parent; member
66 extern int usbobj_add(struct usb_obj *obj, struct usb_obj *parent);
91 usbm_free(obj->parent, obj); in usbobj_default_release()
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Dvariable_mutator.js18 const child = path.find(p => p.parent && babelTypes.isFunction(p.parent));
42 if (babelTypes.isVariableDeclarator(path.parent)) {
/third_party/musl/src/search/
H A Dtdelete.c13 struct node *parent; in tdelete() local
29 parent = *a[i-2]; in tdelete()
48 return parent; in tdelete()
/third_party/mesa3d/src/panfrost/midgard/
H A Dnir_fuse_io_16.c38 nir_instr *parent = use->parent_instr; in nir_src_is_f2fmp() local
40 if (parent->type != nir_instr_type_alu) in nir_src_is_f2fmp()
43 nir_alu_instr *alu = nir_instr_as_alu(parent); in nir_src_is_f2fmp()
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DEnumValueDescriptor.cs47 EnumDescriptor parent, int index) in EnumValueDescriptor()
48 : base(file, parent.FullName + "." + proto.Name, index) in EnumValueDescriptor()
51 enumDescriptor = parent; in EnumValueDescriptor()
46 EnumValueDescriptor(EnumValueDescriptorProto proto, FileDescriptor file, EnumDescriptor parent, int index) EnumValueDescriptor() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DPriorityQueue.h52 typename Sequence::size_type parent = (i - 1) / 2; in erase_one() local
53 this->c[i] = this->c[parent]; in erase_one()
54 i = parent; in erase_one()
/third_party/mesa3d/bin/
H A Dgen_release_notes.py133 self.parent = self.document
284 p = pathlib.Path(__file__).parent.parent / 'docs' / 'relnotes' / 'new_features.txt'
299 v = pathlib.Path(__file__).parent.parent / 'VERSION'
316 final = pathlib.Path(__file__).parent.parent / 'docs' / 'relnotes' / f'{this_version}.rst'
/third_party/node/test/fixtures/wpt/encoding/streams/
H A Drealms.window.js18 if (event.source !== window.parent) {
107 constructedRealm, `new parent.constructorRealm.${what}`);
116 parent.readMethod.call(window.${objId}.readable.getReader())`);
126 parent.writeMethod.call(window.${objId}.writable.getWriter(),
143 constructedRealm, `new parent.constructorRealm.${classname}()`);
295 parent.writeMethod.call(writer, window.${incompleteBytesId});
296 return parent.methodRealm.WritableStreamDefaultWriter.prototype
/third_party/node/deps/cares/src/lib/
H A Dares__slist.c54 ares__slist_t *parent; member
213 node->parent = list; in ares__slist_insert()
260 ares__slist_t *list = node->parent; in ares__slist_node_pop()
293 list = node->parent; in ares__slist_node_claim()
315 list = node->parent; in ares__slist_node_reinsert()
435 return node->parent; in ares__slist_node_parent()
457 destruct = node->parent->destruct; in ares__slist_node_destroy()
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_patternmodifier.cpp129 : pm(pm), rules(rules), parent(nullptr) {} in ImmutablePatternModifier()
133 parent->processQuantity(quantity, micros, status); in processQuantity()
159 void ImmutablePatternModifier::addToChain(const MicroPropsGenerator* parent) { in addToChain() argument
160 this->parent = parent; in addToChain()
165 MicroPropsGenerator& MutablePatternModifier::addToChain(const MicroPropsGenerator* parent) { in addToChain() argument
166 fParent = parent; in addToChain()
178 // This method needs to be const because it overrides a const method in the parent class. in processQuantity()
192 // This method needs to be const because it overrides a const method in the parent class. in apply()
221 // This method needs to be const because it overrides a const method in the parent clas in getPrefixLength()
[all...]

Completed in 15 milliseconds

1...<<11121314151617181920>>...77