Home
last modified time | relevance | path

Searched refs:completion_type (Results 1 – 15 of 15) sorted by relevance

/llvm-project/lldb/source/Interpreter/
H A DOptionGroupFile.cpp18 uint32_t completion_type, in OptionGroupFile() argument
28 m_option_definition.completion_type = completion_type; in OptionGroupFile()
47 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
57 m_option_definition.completion_type = completion_type; in OptionGroupFileList()
H A DOptionGroupString.cpp18 uint32_t completion_type, in OptionGroupString() argument
30 m_option_definition.completion_type = completion_type; in OptionGroupString()
H A DOptionGroupUInt64.cpp18 uint32_t completion_type, in OptionGroupUInt64() argument
30 m_option_definition.completion_type = completion_type; in OptionGroupUInt64()
H A DOptionGroupPythonClassWithDict.cpp43 m_option_definition[0].completion_type = 0; in OptionGroupPythonClassWithDict()
54 m_option_definition[1].completion_type = 0; in OptionGroupPythonClassWithDict()
65 m_option_definition[2].completion_type = 0; in OptionGroupPythonClassWithDict()
76 m_option_definition[3].completion_type = 0; in OptionGroupPythonClassWithDict()
H A DOptionGroupBoolean.cpp31 m_option_definition.completion_type = 0; in OptionGroupBoolean()
H A DCommandObject.cpp321 if (arg_entry == nullptr || arg_entry->completion_type == lldb::eNoCompletion) in HandleArgumentCompletion()
331 GetCommandInterpreter(), arg_entry->completion_type, request, nullptr); in HandleArgumentCompletion()
H A DOptions.cpp736 uint32_t completion_mask = opt_defs[opt_defs_index].completion_type; in HandleOptionArgumentCompletion()
746 completion_mask = arg_entry->completion_type; in HandleOptionArgumentCompletion()
/llvm-project/lldb/examples/python/templates/
H A Dparsed_cmd.py317 value_type=lldb.eArgTypeNone, completion_type=None,
332 completion_type: currently these are values form the lldb.CompletionType enum. If
341 if not completion_type:
342 completion_type = self.determine_completion(value_type)
348 "completion_type" : completion_type,
244 add_option(self, short_option, long_option, help, default, dest = None, required=False, groups = None, value_type=lldb.eArgTypeNone, completion_type=None, enum_values=None) global() argument
/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupFile.h23 int short_option, uint32_t completion_type,
53 uint32_t completion_type,
H A DOptionGroupUInt64.h22 int short_option, uint32_t completion_type,
H A DOptionGroupString.h21 int short_option, uint32_t completion_type,
H A DCommandObject.h88 lldb::CompletionType completion_type;
86 lldb::CompletionType completion_type; global() member
/llvm-project/lldb/include/lldb/Utility/
H A DOptionDefinition.h42 uint32_t completion_type; member
/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp1039 CompletionType completion_type) in CommandObjectPythonFunction()
1041 m_synchro(synch), m_completion_type(completion_type) { in CommandObjectPythonFunction()
1126 CompletionType completion_type) in CommandObjectScriptingObjectRaw()
1129 m_fetched_help_long(false), m_completion_type(completion_type) {
1516 obj_sp = opt_dict->GetValueForKey("completion_type"); in SetOptionsFromArray()
1526 uint64_t completion_type = uint_val->GetValue(); in SetOptionsFromArray()
1527 if (completion_type > eCustomCompletion) { in SetOptionsFromArray()
1531 completion_type); in SetOptionsFromArray()
1534 option_def.completion_type = (CommandArgumentType) completion_type; in SetOptionsFromArray()
1032 CommandObjectPythonFunction(CommandInterpreter & interpreter,std::string name,std::string funct,std::string help,ScriptedCommandSynchronicity synch,CompletionType completion_type) CommandObjectPythonFunction() argument
1119 CommandObjectScriptingObjectRaw(CommandInterpreter & interpreter,std::string name,StructuredData::GenericSP cmd_obj_sp,ScriptedCommandSynchronicity synch,CompletionType completion_type) CommandObjectScriptingObjectRaw() argument
1500 uint64_t completion_type = uint_val->GetValue(); SetOptionsFromArray() local
2102 lldb::CompletionType completion_type = SetOptionValue() local
[all...]
H A DOptionsBase.td64 // Field: completion_type