/external/protobuf/python/ |
D | stubout.py | 109 def Set(self, parent, child_name, new_child): argument 119 old_child = getattr(parent, child_name) 121 old_attribute = parent.__dict__.get(child_name) 125 self.cache.append((parent, old_child, child_name)) 126 setattr(parent, child_name, new_child) 138 for (parent, old_child, child_name) in self.cache: 139 setattr(parent, child_name, old_child)
|
/external/lldb/source/Core/ |
D | ValueObjectConstResultImpl.cpp | 129 ConstString child_name; in CreateChildAtIndex() local 131 child_name.SetCString (child_name_str.c_str()); in CreateChildAtIndex() 135 child_name, in CreateChildAtIndex()
|
D | ValueObject.cpp | 728 ConstString child_name; in CreateChildAtIndex() local 730 child_name.SetCString (child_name_str.c_str()); in CreateChildAtIndex() 734 child_name, in CreateChildAtIndex() 2652 ConstString child_name; in GetValueForExpressionPath_Impl() local 2655 child_name.SetCString (expression_cstr); in GetValueForExpressionPath_Impl() 2656 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl() 2677 … child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl() 2699 … child_name.SetCStringWithLength(expression_cstr, next_separator - expression_cstr); in GetValueForExpressionPath_Impl() 2700 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl() 2720 … child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl() [all …]
|
/external/lldb/source/Target/ |
D | StackFrame.cpp | 666 ConstString child_name; in GetValueForVariableExpressionPath() local 668 child_name.SetCString (var_path.c_str()); in GetValueForVariableExpressionPath() 670 child_name.SetCStringWithLength(var_path.c_str(), separator_idx); in GetValueForVariableExpressionPath() 688 child_name.GetCString(), in GetValueForVariableExpressionPath() 694 child_name.GetCString(), in GetValueForVariableExpressionPath() 700 child_valobj_sp = valobj_sp->GetChildMemberWithName (child_name, true); in GetValueForVariableExpressionPath() 707 … child_valobj_sp = child_valobj_sp->GetChildMemberWithName (child_name, true); in GetValueForVariableExpressionPath() 724 if (child_name) in GetValueForVariableExpressionPath() 727 … child_name.GetCString(), in GetValueForVariableExpressionPath() 743 var_path.erase(0, child_name.GetLength()); in GetValueForVariableExpressionPath()
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
D | dot.rb | 153 child_name = 'n%i' % @node_to_number_map[ tree ] 155 :parent => parent_name, :child => child_name,
|
/external/lldb/include/lldb/Interpreter/ |
D | ScriptInterpreter.h | 113 … (*SWIGPythonGetIndexOfChildWithName) (void *implementor, const char* child_name); 392 …etIndexOfChildWithName (const lldb::ScriptInterpreterObjectSP& implementor, const char* child_name) in GetIndexOfChildWithName() argument
|
D | ScriptInterpreterPython.h | 108 …tIndexOfChildWithName (const lldb::ScriptInterpreterObjectSP& implementor, const char* child_name);
|
/external/lldb/source/Symbol/ |
D | ClangASTType.cpp | 2900 std::string& child_name, in GetChildClangTypeAtIndex() argument 2928 child_name = "isa"; in GetChildClangTypeAtIndex() 2980 child_name = base_class_clang_type.GetTypeName(); in GetChildClangTypeAtIndex() 3003 child_name.assign(field->getNameAsString().c_str()); in GetChildClangTypeAtIndex() 3051 … child_name.assign(superclass_interface_decl->getNameAsString().c_str()); in GetChildClangTypeAtIndex() 3083 child_name.assign(ivar_decl->getNameAsString().c_str()); in GetChildClangTypeAtIndex() 3153 child_name, in GetChildClangTypeAtIndex() 3166 child_name.assign(1, '*'); in GetChildClangTypeAtIndex() 3167 child_name += parent_name; in GetChildClangTypeAtIndex() 3193 child_name.assign(element_name); in GetChildClangTypeAtIndex() [all …]
|
/external/lldb/test/pexpect-2.4/ |
D | pexpect.py | 613 child_name = os.ttyname(tty_fd) 637 fd = os.open(child_name, os.O_RDWR); 639 raise ExceptionPexpect, "Error! Could not open child pty, " + child_name
|
/external/lldb/include/lldb/Symbol/ |
D | ClangASTType.h | 419 std::string& child_name,
|
/external/lldb/scripts/Python/ |
D | python-wrapper.swig | 522 const char* child_name 533 py_return = pfunc(child_name);
|
/external/lldb/source/Interpreter/ |
D | ScriptInterpreterPython.cpp | 102 LLDBSwigPython_GetIndexOfChildWithName (void *implementor, const char* child_name); 2479 …ndexOfChildWithName (const lldb::ScriptInterpreterObjectSP& implementor_sp, const char* child_name) in GetIndexOfChildWithName() argument 2496 ret_val = g_swig_get_index_child (implementor, child_name); in GetIndexOfChildWithName()
|