/third_party/mesa3d/src/intel/common/ |
H A D | intel_decoder.c | 155 struct intel_group *parent, in create_group() 205 if (parent) { in create_group() 206 group->parent = parent; in create_group() 319 field->parent = ctx->group; in create_field() 327 field->parent->dword_length_field = field; in create_field() 351 field->parent = ctx->group; in create_array_field() 467 ctx->group = ctx->group->parent; in end_element() 489 ctx->group = ctx->group->parent; in end_element() 996 * iteration. So it's time to go back to the parent an in iter_advance_field() 152 create_group(struct parser_context *ctx, const char *name, const char **atts, struct intel_group *parent, bool fixed_length) create_group() argument [all...] |
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/ |
H A D | ittnotify_static.h | 169 ITT_STUBV(ITTAPI, void, region_begin, (const __itt_domain *domain, __itt_id id, __itt_id parent, __itt_string_handle *name), (ITT_FORMAT domain, id, parent, name), region_begin, __itt_group_structure, "%p, %lu, %lu, %p") 178 ITT_STUBV(ITTAPI, void, task_group, (const __itt_domain *domain, __itt_id id, __itt_id parent, __itt_string_handle *name), (ITT_FORMAT domain, id, parent, name), task_group, __itt_group_structure, "%p, %lu, %lu, %p") 180 ITT_STUBV(ITTAPI, void, task_begin, (const __itt_domain *domain, __itt_id id, __itt_id parent, __itt_string_handle *name), (ITT_FORMAT domain, id, parent, name), task_begin, __itt_group_structure, "%p, %lu, %lu, %p") 181 ITT_STUBV(ITTAPI, void, task_begin_fn, (const __itt_domain *domain, __itt_id id, __itt_id parent, void* fn), (ITT_FORMAT domain, id, parent, fn), task_begin_fn, __itt_group_structure, "%p, %lu, %lu, %p") 306 ITT_STUBV(ITTAPI, void, task_begin_overlapped, (const __itt_domain *domain, __itt_id id, __itt_id parent, __itt_string_handle *name), (ITT_FORMAT domain, id, parent, nam [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_bc_parser.cpp | 776 if (c->parent->first != c) in prepare_ir() 777 rep->move(c->parent->first, c); in prepare_ir() 783 if (c->parent->first != c) in prepare_ir() 784 dep->move(c->parent->first, c); in prepare_ir() 939 assert(c->parent == end->parent); in prepare_loop() 983 if (c_else->parent != c->parent) in prepare_if() 986 if (end && end->parent != c->parent) in prepare_if() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.js | 4 parent: TreeNode;
|
/third_party/icu/icu4c/source/common/ |
H A D | uresbund.cpp | 185 * no fallbacks, do not load parent bundles. 198 * @param name In-out parameter: On input, the locale ID to get a parent locale ID for (this is a locale's base name, without keywords); on output, the 199 * requested parent locale ID. 201 * but as findFirstExisting() ascends the resource bundle's parent tree, this parameter will continue to be the original locale ID requested. 226 // if the open type is URES_OPEN_LOCALE_DEFAULT_ROOT, first look the locale ID up in the parent locale table; in getParentLocaleID() 227 // if that table specifies a parent for it, return that (we don't do this for the other open types-- if we're not in getParentLocaleID() 229 // of looking things up in the parent locale table-- see https://www.unicode.org/reports/tr35/tr35.html#Parent_Locales: in getParentLocaleID() 239 // if it's not in the parent locale table, figure out the fallback script algorithmically in getParentLocaleID() 271 // (we don't do this for other open types for the same reason we don't look things up in the parent in getParentLocaleID() 291 * Called to check whether a name without '_' needs to be checked for a parent 2986 char parent[1024] = ""; ures_getFunctionalEquivalent() local [all...] |
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/fuse_manager/ |
H A D | fuse_manager.cpp | 152 fuse_ino_t parent{0}; 419 static int CloudDoLookupHelper(fuse_ino_t parent, const char *name, struct fuse_entry_param *e, in CloudDoLookupHelper() argument 424 string childName = (parent == FUSE_ROOT_ID) ? parentName + name : parentName + "/" + name; in CloudDoLookupHelper() 427 LOGD("parent: %{private}s, name: %s", GetAnonyString(parentName).c_str(), GetAnonyString(name).c_str()); in CloudDoLookupHelper() 446 child->parent = parent; in CloudDoLookupHelper() 469 static int CloudDoLookup(fuse_req_t req, fuse_ino_t parent, const char *name, in CloudDoLookup() argument 473 string parentName = CloudPath(data, parent); in CloudDoLookup() 476 FaultType::FILE, ENOENT, "parent name is empty"}); in CloudDoLookup() 480 return CloudDoLookupHelper(parent, nam in CloudDoLookup() 483 CloudLookup(fuse_req_t req, fuse_ino_t parent, const char *name) CloudLookup() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/ |
H A D | swiper_pattern.cpp | 1917 auto parent = host->GetParent(); in PreloadItems() 1918 if (AceType::InstanceOf<TabsNode>(parent)) { in PreloadItems() 2905 // nested and reached end (but not out of bounds), need to pass velocity to parent scrollable in HandleDragEnd() 2906 auto parent = GetNestedScrollParent(); in HandleDragEnd() local 2907 if (!IsLoop() && parent && NearZero(GetDistanceToEdge())) { in HandleDragEnd() 2908 parent->HandleScrollVelocity(dragVelocity); in HandleDragEnd() 3125 auto parent = GetNestedScrollParent(); in CheckDragOutOfBoundary() local 3127 if (parent && GetNestedScroll().NeedParent(isForward)) { in CheckDragOutOfBoundary() 3128 parent->HandleScrollVelocity(dragVelocity); in CheckDragOutOfBoundary() 5104 auto parent [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | jsXNode.js | 838 let parent = this.getParent(); 839 if (parent?.getNodeType() === "NodeContainer") { 840 getUINativeModule().nodeContainer.clean(parent?.getNodePtr()); 843 parent?.removeChild(this); 2124 let parent = this.parentRenderNode.deref(); 2125 if (parent === undefined || parent === null) { 2128 let siblingList = parent.childrenList; 2133 return parent.getChild(index + 1); 2139 let parent [all...] |
/foundation/ability/ability_runtime/cj_environment/interfaces/inner_api/ |
H A D | dynamic_loader.h | 33 void DynamicInitNamespace(Dl_namespace* ns, void* parent, const char* entries, const char* name);
|
/foundation/arkui/ui_lite/tools/qt/simulator/drivers/display/ |
H A D | gui_thread.h | 28 explicit GUIThread(QObject* parent);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/ |
H A D | signalbar.h | 20 SignalBar(QObject *parent = 0);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/ |
H A D | signalbar.h | 20 SignalBar(QObject *parent = 0);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_select_overlay.cpp | 86 auto parent = host->GetAncestorNodeOfFrame(); in CheckHandleVisible() local 476 auto parent = host->GetAncestorNodeOfFrame(true); in OnAncestorNodeChanged() local 478 while (parent) { in OnAncestorNodeChanged() 479 if (parent->GetChangeInfoFlag() != FRAME_NODE_CHANGE_INFO_NONE) { in OnAncestorNodeChanged() 480 changeFlag = changeFlag | parent->GetChangeInfoFlag(); in OnAncestorNodeChanged() 482 parent = parent->GetAncestorNodeOfFrame(true); in OnAncestorNodeChanged()
|
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/ |
H A D | mtp_operation_utils.cpp | 159 if (context_->parent == MTP_ALL_HANDLE_ID) { in GetObjectHandles() 160 context_->parent = 0; in GetObjectHandles() 173 if (context_->parent != 0) { in GetObjectHandles() 176 if (GetPathByHandle(context_->parent, path, realPath) != MTP_UNDEFINED_CODE) { in GetObjectHandles() 457 uint32_t parent = 0; in SendObjectInfo() local 459 errorCode = mtpMedialibraryManager_->SendObjectInfo(context_, storageID, parent, handle); in SendObjectInfo() 467 sendObjectInfo->SetSetParam(storageID, parent, handle); in SendObjectInfo()
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | xcode.py | 264 # dependency, the parent xcode target. 272 parent=self.project, 363 {"buildConfigurationList": xccl, "name": "All"}, parent=self.project 379 parent=self.project, 426 parent=self.project, 819 parent=pbxp, 855 support_target_properties, parent=pbxp 1267 {"name": "Copy to " + copy_group["destination"]}, parent=xct
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | xcode.py | 264 # dependency, the parent xcode target. 272 parent=self.project, 363 {"buildConfigurationList": xccl, "name": "All"}, parent=self.project 379 parent=self.project, 426 parent=self.project, 819 parent=pbxp, 855 support_target_properties, parent=pbxp 1264 {"name": "Copy to " + copy_group["destination"]}, parent=xct
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-coverage.cc | 96 // to parent and sibling blocks), and supports efficient in-place editing and 188 // A range is considered to be at top level if its parent range is the 245 // ranges that end at the next sibling range or the end of the parent 252 CoverageBlock& parent = iter.GetParent(); in RewritePositionSingletonsToRanges() local 259 // end of the parent block otherwise. in RewritePositionSingletonsToRanges() 266 block.end = parent.end - 1; in RewritePositionSingletonsToRanges() 268 block.end = parent.end; in RewritePositionSingletonsToRanges() 297 CoverageBlock& parent = iter.GetParent(); in MergeNestedRanges() local 299 if (parent.count == block.count) { in MergeNestedRanges() 360 CoverageBlock& parent in FilterUncoveredRanges() local [all...] |
/third_party/node/deps/v8/src/logging/ |
H A D | runtime-call-stats.h | 64 RuntimeCallTimer* parent() const { return parent_.Value(); } in parent() function in v8::internal::final 70 inline void Start(RuntimeCallCounter* counter, RuntimeCallTimer* parent) { in Start() argument 73 parent_.SetValue(parent); in Start() 79 if (parent) parent->Pause(now); in Start() 87 if (!IsStarted()) return parent(); in Stop() 93 RuntimeCallTimer* parent_timer = parent(); in Stop() 588 // connection to the parent counter for properly calculating the own times. 594 // parent.
|
/third_party/skia/src/ports/ |
H A D | SkFontMgr_android_parser.cpp | 60 * Called immediately after the parent tag retuns this handler from a call to 'tag'. 581 const TagHandler* parent = self->fHandler.top(); in start_element_handler() local 582 const TagHandler* child = parent->tag ? parent->tag(self, tag, attributes) : nullptr; in start_element_handler() 609 const TagHandler* parent = self->fHandler.top(); in end_element_handler() local 610 XML_SetCharacterDataHandler(self->fParser, parent->chars); in end_element_handler() 615 const TagHandler* parent = self->fHandler.top(); in end_element_handler() local 616 XML_SetCharacterDataHandler(self->fParser, parent->chars); in end_element_handler()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/interfaces/ |
H A D | customtitle.js | 24 constructor(parent, params, __localStorage, elmtId = -1) { 25 super(parent, __localStorage, elmtId);
|
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/ |
H A D | intf_node.h | 154 * @brief Set node parent on the container, reflected to 3D scene. 155 * @param node Node to parent. 156 * @param parent New parent of the node. 159 static bool SetParent(const INode::Ptr& node, const META_NS::IObject::Ptr& parent) in SetParent() argument 161 if (auto container = interface_pointer_cast<META_NS::IContainer>(parent); node && container) { in SetParent()
|
/foundation/filemanagement/user_file_service/interfaces/inner_api/file_access/src/ |
H A D | file_access_ext_ability.cpp | 70 int FileAccessExtAbility::CreateFile(const Uri &parent, const std::string &displayName, Uri &newFile) in CreateFile() argument 76 int FileAccessExtAbility::Mkdir(const Uri &parent, const std::string &displayName, Uri &newFile) in Mkdir() argument
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/ |
H A D | rs_dropframe_test.cpp | 121 auto parent = context->GetMutableNodeMap().GetRenderNode<RSBaseRenderNode>(nodeId1); in HWTEST_F() local 123 parent->AddChild(child, -1); in HWTEST_F()
|
/foundation/multimodalinput/input/intention/cooperate/plugin/include/ |
H A D | dsoftbus_handler.h | 32 DSoftbusObserver(DSoftbusHandler &parent) : parent_(parent) {} in DSoftbusObserver() argument
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/pan/ |
H A D | pan_statemachine.h | 124 utility::StateMachine::State &parent) in PanState() 125 : State(name, statemachine, parent), stateInt_(stateInt), stateMachine_((PanStateMachine &)statemachine) in PanState() 123 PanState(const std::string &name, utility::StateMachine &statemachine, int stateInt, utility::StateMachine::State &parent) PanState() argument
|