/third_party/python/Lib/tkinter/ |
H A D | ttk.py | 454 def theme_create(self, themename, parent=None, settings=None): 457 It is an error if themename already exists. If parent is 459 layouts from the specified parent theme. If settings are present, 463 if parent: 465 "-parent", parent, "-settings", script) 507 """Constructs a Ttk Widget with the parent master. 571 """Construct a Ttk Button widget with the parent master. 594 """Construct a Ttk Checkbutton widget with the parent master. 624 """Constructs a Ttk Entry widget with the parent maste 1374 def parent(self, item): global() member in Treeview [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/ |
H A D | text_select_overlay.cpp | 534 auto parent = host->GetAncestorNodeOfFrame(true); in FindScrollableParent() local 535 while (parent) { in FindScrollableParent() 536 auto scrollablePattern = parent->GetPattern<ScrollablePattern>(); in FindScrollableParent() 540 parent = parent->GetAncestorNodeOfFrame(true); in FindScrollableParent()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | utils.c | 520 * get parent 521 * if parent is 5 (/) stop 522 * get inode of parent 536 MFT_REF parent = FILE_root; in utils_inode_get_name() local 570 parent = le64_to_cpu(attr->parent_directory); in utils_inode_get_name() 590 //ntfs_log_debug("parent = %lld\n", MREF(parent)); in utils_inode_get_name() 598 if (MREF(parent) == FILE_root) { /* The root directory, stop. */ in utils_inode_get_name() 603 inode = ntfs_inode_open(vol, parent); in utils_inode_get_name() 606 (unsigned long long)MREF(parent)); in utils_inode_get_name() [all...] |
/third_party/python/Lib/idlelib/ |
H A D | sidebar.py | 72 self.parent = editwin.text_frame 297 self.sidebar_text = tk.Text(self.parent, width=1, wrap=tk.NONE, 426 self.canvas = tk.Canvas(self.parent, width=30, 517 def _linenumbers_drag_scrolling(parent): # htest # 520 toplevel = tk.Toplevel(parent)
|
/third_party/python/Lib/msilib/ |
H A D | __init__.py | 408 parent=None, directory = None, attributes=0): 410 if parent: 411 parent = parent.id 413 [(id, parent, title, desc, display,
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | protocol-simple.c | 49 pa_msgobject parent; member 490 c->parent.parent.free = connection_free; in pa_simple_protocol_connect() 491 c->parent.process_msg = connection_process_msg; in pa_simple_protocol_connect() 548 c->sink_input->parent.process_msg = sink_input_process_msg; in pa_simple_protocol_connect()
|
/foundation/CastEngine/castengine_wifi_display/services/impl/screen_capture/ |
H A D | screen_capture_consumer.cpp | 27 auto parent = parent_.lock(); in OnFrame() local 28 if (parent && !parent->listener_.expired()) { in OnFrame() 29 auto listener = parent->listener_.lock(); in OnFrame()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/shared_overlay/ |
H A D | shared_overlay_manager.cpp | 65 auto parent = node->GetParent(); in ReplaceFrameNode() local 66 CHECK_NULL_RETURN(parent, false); in ReplaceFrameNode() 67 parent->ReplaceChild(node, newNode); in ReplaceFrameNode() 68 parent->RebuildRenderContextTree(); in ReplaceFrameNode()
|
/foundation/arkui/ui_lite/test/uitest/test_focus_manager/ |
H A D | ui_test_focus_manager.cpp | 241 UIView* UITestFocusManager::CreateTestUILabel(UIViewGroup* parent, int16_t x, int16_t y, in CreateTestUILabel() argument 245 parent->Add(label); in CreateTestUILabel() 262 UIViewGroup* UITestFocusManager::CreateTestUIViewGroup(UIViewGroup* parent, bool focusable, bool interceptFocus) in CreateTestUIViewGroup() argument 265 parent->Add(viewGroup); in CreateTestUIViewGroup()
|
/foundation/filemanagement/file_api/interfaces/kits/cj/src/ |
H A D | file_impl.cpp | 403 auto parent = path.substr(0, pos); in GetParent() local 404 char* result = new(std::nothrow) char[parent.length() + 1]; in GetParent() 409 if (strcpy_s(result, parent.length() + 1, parent.c_str()) != 0) { in GetParent()
|
/test/ostest/wukong/component_event/src/ |
H A D | tree_manager.cpp | 51 const std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>& parent, in RecursGetChildElementInfo() 56 ERROR_LOG("tree parent is null!"); in RecursGetChildElementInfo() 60 if (parent->GetComponentType() == "Dialog") { in RecursGetChildElementInfo() 64 for (int32_t i = 0; i < parent->GetChildCount(); i++) { in RecursGetChildElementInfo() 68 i, *(parent.get()), *(elementChild.get())); in RecursGetChildElementInfo() 91 // set ComponentTree parent in RecursGetChildElementInfo() 441 ERROR_LOG_STR("UpdatePage back layer (%d) more than currentPageNode_ parent (%p)", layer, in UpdatePage() 50 RecursGetChildElementInfo( const std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>& parent, const std::shared_ptr<ComponentTree>& componentParent) RecursGetChildElementInfo() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | g722enc.c | 253 int parent = (pos - 1) >> 1;\ in g722_encode_trellis() 254 if (nodes_next[index][parent]->ssd <= ssd)\ in g722_encode_trellis() 256 FFSWAP(struct TrellisNode*, nodes_next[index][parent],\ in g722_encode_trellis() 258 pos = parent;\ in g722_encode_trellis()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | UResourceBundle.java | 307 * {@icu} Returns the parent bundle 308 * @return The parent bundle 532 // levels, it fails when you fall back to the parent, since you're now in findTopLevel() 598 // levels, it fails when you fall back to the parent, since you're now in findTopLevel() 602 // are prefixes of their parent arrays. in findTopLevel() 624 * Returns a Set of all keys contained in this ResourceBundle and its parent bundles. 625 * @return a Set of all keys contained in this ResourceBundle and its parent bundles, 649 if(parent == null) { in keySet() 651 } else if(parent instanceof UResourceBundle) { in keySet() 652 newKeySet = new TreeSet<String>(((UResourceBundle)parent) in keySet() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | UResourceBundle.java | 295 * <strong>[icu]</strong> Returns the parent bundle 296 * @return The parent bundle 509 // levels, it fails when you fall back to the parent, since you're now in findTopLevel() 573 // levels, it fails when you fall back to the parent, since you're now in findTopLevel() 577 // are prefixes of their parent arrays. in findTopLevel() 598 * Returns a Set of all keys contained in this ResourceBundle and its parent bundles. 599 * @return a Set of all keys contained in this ResourceBundle and its parent bundles, 623 if(parent == null) { in keySet() 625 } else if(parent instanceof UResourceBundle) { in keySet() 626 newKeySet = new TreeSet<String>(((UResourceBundle)parent) in keySet() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_builder.c | 321 for (nir_cf_node *n = &block->cf_node; n; n = n->parent) { in nir_builder_is_inside_cf() 351 nif = nir_cf_node_as_if(block->cf_node.parent); in nir_push_else() 364 nif = nir_cf_node_as_if(block->cf_node.parent); in nir_pop_if() 405 loop = nir_cf_node_as_loop(block->cf_node.parent); in nir_pop_loop()
|
/third_party/node/deps/v8/tools/v8windbg/src/ |
H A D | v8windbg-extension.cc | 196 // Create an instance of the DataModel parent for v8::internal::Object types. in Initialize() 209 // Register that parent model for all known types of V8 object. in Initialize() 224 // Create an instance of the DataModel parent for custom iterable fields. in Initialize() 235 // Create an instance of the DataModel parent class for v8::Local<*> types. in Initialize() 240 // Register that parent model for all known types that act like v8::Local. in Initialize() 253 // Add the 'Value' property to the parent model. in Initialize() 304 // Create an instance of the DataModel parent class. in RegisterAndAddPropertyForClass() 309 // Register that parent model. in RegisterAndAddPropertyForClass() 317 // Add the property to the parent model. in RegisterAndAddPropertyForClass() 350 Extension::PropertyOverride::PropertyOverride(IModelObject* parent, in PropertyOverride() argument [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | dayperiodrules.cpp | 364 CharString parent; in getInstance() local 365 CharStringByteSink sink(&parent); in getInstance() 367 if (parent.isEmpty()) { in getInstance() 371 parent.extract(name, UPRV_LENGTHOF(name), errorCode); in getInstance()
|
/third_party/node/deps/npm/node_modules/jsonparse/ |
H A D | jsonparse.js | 328 var parent = this.stack.pop(); 329 this.value = parent.value; 330 this.key = parent.key; 331 this.mode = parent.mode;
|
/third_party/rust/crates/clap/clap_bench/benches/ |
H A D | 05_ripgrep.rs | 438 .arg(flag("no-ignore-parent")) in cmd() 804 implies --no-ignore-parent and --no-ignore-vcs." 808 "no-ignore-parent", 809 "Don't respect ignore files in parent directories.", 811 parent directories." 818 This implies --no-ignore-parent. Note that .ignore files will \
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_byteswap.py | 211 for parent in ( 220 class TestStructure(parent): 344 for parent in ( 353 class TestUnion(parent):
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | loop_descriptor.h | 168 // as the parent of |nested|. 170 assert(!nested->GetParent() && "The loop has another parent."); in AddNestedLoop() 295 // Sets the parent loop of this loop, that is, a loop which contains this loop 297 inline void SetParent(Loop* parent) { parent_ = parent; } in SetParent() argument 374 // A parent of a loop is the loop which contains it as a nested child loop. 503 // PostModificationCleanup. |parent| may be null. 504 inline void AddLoop(std::unique_ptr<Loop>&& loop_to_add, Loop* parent) { in AddLoop() argument 505 loops_to_add_.emplace_back(std::make_pair(parent, std::move(loop_to_add))); in AddLoop()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | loop_descriptor.h | 168 // as the parent of |nested|. 170 assert(!nested->GetParent() && "The loop has another parent."); in AddNestedLoop() 295 // Sets the parent loop of this loop, that is, a loop which contains this loop 297 inline void SetParent(Loop* parent) { parent_ = parent; } in SetParent() argument 374 // A parent of a loop is the loop which contains it as a nested child loop. 503 // PostModificationCleanup. |parent| may be null. 504 inline void AddLoop(std::unique_ptr<Loop>&& loop_to_add, Loop* parent) { in AddLoop() argument 505 loops_to_add_.emplace_back(std::make_pair(parent, std::move(loop_to_add))); in AddLoop()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource13.js | 119 var pre = (cur: AST, parent: AST) => { 124 var post = (cur: AST, parent: AST) => { 158 var pre = function (cur, parent) {
162 var post = function (cur, parent) {
|
H A D | parserRealSource6.js | 80 export function preFindMemberScope(ast: AST, parent: AST, walker: IAstWalker) { 114 export function preFindEnclosingScope(ast: AST, parent: AST, walker: IAstWalker) { 298 function preFindMemberScope(ast, parent, walker) {
324 function preFindEnclosingScope(ast, parent, walker) {
|
/third_party/python/Lib/unittest/test/ |
H A D | test_suite.py | 182 parent = unittest.TestSuite((test3, child, Test1('test1'))) 184 self.assertEqual(parent.countTestCases(), 4) 186 parent.run(unittest.TestResult()) 187 self.assertEqual(parent.countTestCases(), 4)
|