HomeSort by relevance Sort by last modified time
    Searched refs:enum_values (Results 1 - 25 of 35) sorted by null

1 2

  /external/qemu/android/tools/
gen-hw-config.py 72 self.enum_values = []
79 self.enum_values = [ s.strip() for s in val.split(',') ]
81 if self.default and not self.default in self.enum_values:
83 print self.enum_values,
87 if val and self.enum_values and not val in self.enum_values:
89 print self.enum_values,
  /external/lldb/include/lldb/
lldb-private-types.h 63 OptionEnumValueElement *enum_values; // If non-NULL an array of enum values. member in struct:lldb_private::__anon8966
  /external/lldb/source/Interpreter/
OptionGroupFile.cpp 34 m_option_definition.enum_values = NULL;
74 m_option_definition.enum_values = NULL;
OptionGroupWatchpoint.cpp 82 tmp_watch_type = (WatchType) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error);
91 watch_size = (uint32_t) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error);
OptionGroupBoolean.cpp 34 m_option_definition.enum_values = NULL;
OptionGroupString.cpp 35 m_option_definition.enum_values = NULL;
OptionGroupUInt64.cpp 35 m_option_definition.enum_values = NULL;
Options.cpp 688 if (opt_defs[i].enum_values != NULL)
692 for (int k = 0; opt_defs[i].enum_values[k].string_value != NULL; k++)
695 strm.Printf("%s", opt_defs[i].enum_values[k].string_value);
697 strm.Printf(" | %s", opt_defs[i].enum_values[k].string_value);
910 OptionEnumValueElement *enum_values = opt_defs[opt_defs_index].enum_values; local
911 if (enum_values != NULL)
915 for (int i = 0; enum_values[i].string_value != NULL; i++)
917 if (strstr(enum_values[i].string_value, match_string.c_str()) == enum_values[i].string_value
    [all...]
Args.cpp     [all...]
Property.cpp 75 OptionValueEnumeration *enum_value = new OptionValueEnumeration(definition.enum_values, definition.default_uint_value);
  /external/lldb/test/lang/c/enum_types/
TestEnumTypes.py 67 enum_values = [ '-4',
79 for enum_value in enum_values:
  /external/lldb/include/lldb/Interpreter/
Property.h 35 OptionEnumValueElement *enum_values; member in struct:lldb_private::PropertyDefinition
Args.h 400 StringToOptionEnum (const char *s, OptionEnumValueElement *enum_values, int32_t fail_value, Error &error);
  /external/lldb/test/lang/cpp/enum_types/
TestCPP11EnumTypes.py 156 enum_values = [ '-4',
168 for enum_value in enum_values:
  /system/media/camera/docs/
camera_metadata_tag_info.mako 102 enum_values = metadata.find_all(find_values)
103 enum_value_max_len = max([len(value.name) for value in enum_values]) + 1
metadata_parser_xml.py 207 enum_values = []
215 enum_values.append(value_body)
230 d['enum_values'] = enum_values
  /external/chromium_org/tools/json_schema_compiler/
idl_schema.py 209 enum_values = self.node.GetProperty('legalValues')
210 if enum_values:
212 enum_values = map(int, enum_values)
214 enum_values = map(float, enum_values)
215 properties['enum'] = enum_values
cc_generator.py     [all...]
h_generator.py 141 for value in type_.enum_values:
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags.py     [all...]
  /external/chromium_org/third_party/python_gflags/
gflags.py     [all...]
  /external/qemu/scripts/
qapi-types.py 153 enum_values = values + [ 'MAX' ] variable
156 for value in enum_values:
  /external/lldb/source/Commands/
CommandObjectThread.cpp 311 OptionEnumValueElement *enum_values = g_option_table[option_idx].enum_values; local
312 m_run_mode = (lldb::RunMode) Args::StringToOptionEnum(option_arg, enum_values, eOnlyDuringStepping, error);
849 OptionEnumValueElement *enum_values = g_option_table[option_idx].enum_values; local
850 lldb::RunMode run_mode = (lldb::RunMode) Args::StringToOptionEnum(option_arg, enum_values, eOnlyDuringStepping, error);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_types.py 166 def enum_values(self): member in class:IdlType
v8_utilities.py 126 for enum_value in idl_type.enum_values])

Completed in 1109 milliseconds

1 2