/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/ |
H A D | try_catch.js | 65 if (!babelTypes.isLabeledStatement(path.parent) || 157 if (path.node.kind !== 'var' || babelTypes.isLoop(path.parent)) 162 if (path.node.kind !== 'var' || babelTypes.isLoop(path.parent))
|
H A D | function_call_mutator.js | 21 if (!babelTypes.isExpressionStatement(path.parent)) { 81 if (!babelTypes.isExpressionStatement(path.parent)) { 103 if (!babelTypes.isExpressionStatement(path.parent)) {
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | number_patternmodifier.h | 54 void addToChain(const MicroPropsGenerator* parent); 61 const MicroPropsGenerator* parent; member in number::impl::ImmutablePatternModifier 177 MicroPropsGenerator &addToChain(const MicroPropsGenerator *parent);
|
/third_party/node/deps/v8/src/tasks/ |
H A D | cancelable-task.h | 96 explicit Cancelable(CancelableTaskManager* parent) in Cancelable() argument 97 : parent_(parent), id_(parent->Register(this)) {} in Cancelable()
|
/third_party/node/deps/v8/src/utils/ |
H A D | scoped-list.h | 50 void MergeInto(ScopedList* parent) { in MergeInto() argument 51 DCHECK_EQ(parent->end_, start_); in MergeInto() 52 parent->end_ = end_; in MergeInto()
|
/third_party/libabigail/src/ |
H A D | abg-libxml-utils.cc | 166 if (n->type == XML_DOCUMENT_NODE || n->parent == NULL) in get_xml_node_depth() 169 if (n->parent->type == XML_DOCUMENT_NODE) in get_xml_node_depth() 172 return 1 + get_xml_node_depth(n->parent); in get_xml_node_depth()
|
/third_party/python/Lib/idlelib/ |
H A D | redirector.py | 151 def _widget_redirector(parent): # htest # 154 top = Toplevel(parent) 156 x, y = map(int, parent.geometry().split('+')[1:])
|
H A D | search.py | 135 def _search_dialog(parent): # htest # 140 top = Toplevel(parent) 142 x, y = map(int, parent.geometry().split('+')[1:])
|
H A D | pathbrowser.py | 102 def _path_browser(parent): # htest # 103 PathBrowser(parent, _htest=True) 104 parent.mainloop()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | number_patternmodifier.h | 54 void addToChain(const MicroPropsGenerator* parent); 61 const MicroPropsGenerator* parent; member in number::impl::ImmutablePatternModifier 172 MicroPropsGenerator &addToChain(const MicroPropsGenerator *parent);
|
H A D | number_patternmodifier.cpp | 124 : pm(pm), rules(rules), parent(nullptr) {} in ImmutablePatternModifier() 128 parent->processQuantity(quantity, micros, status); in processQuantity() 154 void ImmutablePatternModifier::addToChain(const MicroPropsGenerator* parent) { in addToChain() argument 155 this->parent = parent; in addToChain() 160 MicroPropsGenerator& MutablePatternModifier::addToChain(const MicroPropsGenerator* parent) { in addToChain() argument 161 fParent = parent; in addToChain() 173 // This method needs to be const because it overrides a const method in the parent class. in processQuantity() 187 // This method needs to be const because it overrides a const method in the parent class. in apply() 216 // This method needs to be const because it overrides a const method in the parent clas in getPrefixLength() [all...] |
/third_party/python/Lib/lib2to3/ |
H A D | btm_matcher.py | 124 if (current_ast_node.parent is not None 125 and current_ast_node.parent.was_checked): 136 current_ast_node = current_ast_node.parent
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
H A D | du.c | 99 if (!node->parent) TT.st_dev = node->st.st_dev; in do_du() 110 while ((try = try->parent)) in do_du() 130 if ((toys.optflags & FLAG_a) || !node->parent in do_du()
|
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/ |
H A D | main.rs | 159 .parent() in build_dir() 166 build_dir().parent().expect("target directory").to_path_buf() in target_dir() 171 target_dir().parent().expect("project directory").to_path_buf() in project_dir()
|
/third_party/selinux/libsepol/cil/test/unit/ |
H A D | test_cil_copy_ast.c | 156 test_ast_node->parent = test_db->ast->root; in test_cil_copy_block() 191 test_ast_node->parent = new_tree_node; in test_cil_copy_perm() 224 test_ast_node->parent = test_db->ast->root; in test_cil_copy_class() 251 test_ast_node->parent = test_db->ast->root; in test_cil_copy_common() 282 test_ast_node->parent = test_db->ast->root; in test_cil_copy_classcommon() 316 test_ast_node->parent = test_db->ast->root; in test_cil_copy_sid() 343 test_ast_node->parent = test_db->ast->root; in test_cil_copy_sidcontext() 372 test_ast_node->parent = test_db->ast->root; in test_cil_copy_user() 399 test_ast_node->parent = test_db->ast->root; in test_cil_copy_role() 426 test_ast_node->parent in test_cil_copy_userrole() [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | log.c | 306 AVClass** parent = *(AVClass ***) (((uint8_t *) avcl) + in format_line() local 308 if (parent && *parent) { in format_line() 310 (*parent)->item_name(parent), parent); in format_line() 311 if(type) type[0] = get_category(parent); in format_line()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | Region.java | 326 String parent = mapping.getKey(); in loadRegionData() 327 if (parent.equals("containedGroupings") || parent.equals("deprecated") || parent.equals("grouping")) { in loadRegionData() 328 continue; // handle new pseudo-parent types added in ICU data per cldrbug 7808; for now just skip. in loadRegionData() 332 Region parentRegion = regionIDMap.get(parent); in loadRegionData() 338 // Add the child region to the set of regions contained by the parent in loadRegionData() 341 // Set the parent region to be the containing region of the child. in loadRegionData() 342 // Regions of type GROUPING can't be set as the parent, since another region in loadRegionData() 343 // such as a SUBCONTINENT, CONTINENT, or WORLD must always be the parent in loadRegionData() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | number_patternmodifier.cpp | 128 : pm(pm), rules(rules), parent(nullptr) {} in ImmutablePatternModifier() 132 parent->processQuantity(quantity, micros, status); in processQuantity() 158 void ImmutablePatternModifier::addToChain(const MicroPropsGenerator* parent) { in addToChain() argument 159 this->parent = parent; in addToChain() 164 MicroPropsGenerator& MutablePatternModifier::addToChain(const MicroPropsGenerator* parent) { in addToChain() argument 165 fParent = parent; in addToChain() 177 // This method needs to be const because it overrides a const method in the parent class. in processQuantity() 191 // This method needs to be const because it overrides a const method in the parent class. in apply() 220 // This method needs to be const because it overrides a const method in the parent clas in getPrefixLength() [all...] |
H A D | number_usageprefs.cpp | 154 const MicroPropsGenerator *parent, in UsagePrefsHandler() 157 fParent(parent) { in UsagePrefsHandler() 182 const MicroPropsGenerator *parent, UErrorCode &status) in UnitConversionHandler() 183 : fOutputUnit(targetUnit), fParent(parent) { in UnitConversionHandler() 151 UsagePrefsHandler(const Locale &locale, const MeasureUnit &inputUnit, const StringPiece usage, const MicroPropsGenerator *parent, UErrorCode &status) UsagePrefsHandler() argument 181 UnitConversionHandler(const MeasureUnit &targetUnit, const MicroPropsGenerator *parent, UErrorCode &status) UnitConversionHandler() argument
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
H A D | fcntl16.c | 64 #define WILLBLOCK 3 /* blocks, succeeds, parent unlocks records */ 265 static int parent; variable 305 /* Lock should succeed after blocking and parent releases lock */ in dochild() 307 if ((kill(parent, SIGUSR2)) < 0) { in dochild() 308 tst_resm(TFAIL, "Attempt to send signal to parent " in dochild() 315 if ((kill(parent, SIGUSR1)) < 0) { in dochild() 316 tst_resm(TFAIL, "Attempt to send signal to parent " in dochild() 359 * Set flag to let parent know that child #1 is ready to have the in catch_usr1() 368 * Set flag to let parent know that child #2 is ready to have the in catch_usr2() 411 parent in setup() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | type-oracle.h | 23 const Type* parent, std::string name, AbstractTypeFlags flags, in GetAbstractType() 27 new AbstractType(parent, flags, std::move(name), std::move(generated), in GetAbstractType() 48 const Type* parent, const BitFieldStructDeclaration* decl) { in GetBitFieldStructType() 50 new BitFieldStructType(CurrentNamespace(), parent, decl)); in GetBitFieldStructType() 56 static ClassType* GetClassType(const Type* parent, const std::string& name, in GetClassType() argument 61 parent, CurrentNamespace(), name, flags, generates, decl, alias)); in GetClassType() 371 from = from->parent(); in ImplicitlyConvertableFrom() 22 GetAbstractType( const Type* parent, std::string name, AbstractTypeFlags flags, std::string generated, const Type* non_constexpr_version, MaybeSpecializationKey specialized_from) GetAbstractType() argument 47 GetBitFieldStructType( const Type* parent, const BitFieldStructDeclaration* decl) GetBitFieldStructType() argument
|
/third_party/protobuf/csharp/src/Google.Protobuf/Collections/ |
H A D | MapField.cs | 756 private readonly MapField<TKey, TValue> parent;
field in Google.Protobuf.Collections.MapField.MapView 761 MapField<TKey, TValue> parent,
in MapView() 765 this.parent = parent;
in MapView() 770 public int Count { get { return parent.Count; } }
776 public object SyncRoot { get { return parent; } }
811 return parent.list.Select(projection).GetEnumerator();
in GetEnumerator() 760 MapView( MapField<TKey, TValue> parent, Func<KeyValuePair<TKey, TValue>, T> projection, Func<T, bool> containsCheck) MapView() argument
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-blob.cc | 150 * @parent: Parent blob. 151 * @offset: Start offset of sub-blob within @parent, in bytes. 154 * Returns a blob that represents a range of bytes in @parent. The new 156 * will never modify data in the parent blob. The parent data is not 160 * Makes @parent immutable. 163 * @length is zero or @offset is beyond the end of @parent's data. Destroy 169 hb_blob_create_sub_blob (hb_blob_t *parent, in hb_blob_create_sub_blob() argument 175 if (!length || !parent || offset >= parent in hb_blob_create_sub_blob() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | xml-utils.c | 261 static int add_ddfname(struct xml_node_ctx *ctx, xml_node_t *parent, in add_ddfname() argument 266 node = xml_node_create(ctx, parent, NULL, "RTProperties"); in add_ddfname() 341 xml_node_t *parent; in add_mo_node() local 362 parent = get_node_uri(ctx, root, uri); in add_mo_node() 364 if (parent == NULL) { in add_mo_node() 371 xml_node_create_text(ctx, parent, NULL, nodename, in add_mo_node() 374 xml_node_create(ctx, parent, NULL, nodename); in add_mo_node()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | xml-utils.c | 261 static int add_ddfname(struct xml_node_ctx *ctx, xml_node_t *parent, in add_ddfname() argument 266 node = xml_node_create(ctx, parent, NULL, "RTProperties"); in add_ddfname() 341 xml_node_t *parent; in add_mo_node() local 362 parent = get_node_uri(ctx, root, uri); in add_mo_node() 364 if (parent == NULL) { in add_mo_node() 371 xml_node_create_text(ctx, parent, NULL, nodename, in add_mo_node() 374 xml_node_create(ctx, parent, NULL, nodename); in add_mo_node()
|