Searched refs:value_list (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Didl_validator.py100 value_list = [value.strip() for value in values_string.split('|')]
101 yield name, value_list
104 for name, value_list in extended_attribute_name_values():
105 if not value_list:
109 for value in value_list])
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dmake_simple.py136 def MakeList(value_list, prefix='', quoter=QuoteIfNecessary, initial_indent=0):
140 if not value_list:
143 value_list = [quoter(prefix + l) for l in value_list]
146 for value in value_list:
158 def WriteList(makefile, value_list, variable, prefix='', quoter=QuoteIfNecessary):
159 values = MakeList(value_list, prefix, quoter, initial_indent=len(variable)+4)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dconfig.py144 value_list = cp.get(section, option)
146 for value_line in value_list.split('\n'):
162 value_list = cp.get(section, option)
163 return list(filter(None, value_list.split('\n')))
/external/lldb/include/lldb/API/
H A DSBValueList.h39 Append (const lldb::SBValueList& value_list);
/external/lldb/source/Commands/
H A DCommandObjectArgs.cpp160 ValueList value_list; local
244 value_list.PushValue(value);
247 if (!abi->GetArgumentValues (*thread, value_list))
259 value_list.GetValueAtIndex (arg_index)->Dump (&result.GetOutputStream ());
/external/lldb/source/API/
H A DSBBlock.cpp264 SBValueList value_list; local
306 value_list.Append (value_sb);
314 return value_list;
325 SBValueList value_list; local
364 value_list.Append (ValueObjectVariable::Create (target_sp.get(), variable_sp));
371 return value_list;
H A DSBValueList.cpp194 SBValueList::Append (const lldb::SBValueList& value_list) argument
196 if (value_list.IsValid())
199 m_opaque_ap->Append (*value_list);
H A DSBFrame.cpp1056 SBValueList value_list; local
1063 value_list = GetVariables (arguments, locals, statics, in_scope_only, use_dynamic);
1065 return value_list;
1077 SBValueList value_list; local
1140 value_list.Append(value_sb);
1162 log->Printf ("SBFrame(%p)::GetVariables (...) => SBValueList(%p)", frame, value_list.opaque_ptr());
1165 return value_list;
1173 SBValueList value_list; local
1194 value_list.Append(ValueObjectRegisterSet::Create (frame, reg_ctx, set_idx));
1212 log->Printf ("SBFrame(%p)::GetRegisters () => SBValueList(%p)", frame, value_list
[all...]
/external/lldb/test/python_api/target/
H A DTestTargetAPI.py137 value_list = target.FindGlobalVariables('my_global_var_of_char_type', 3)
138 self.assertTrue(value_list.GetSize() == 1)
139 my_global_var = value_list.GetValueAtIndex(0)
152 value_list = m.FindGlobalVariables(target, 'my_global_var_of_char_type', 3)
153 self.assertTrue(value_list.GetSize() == 1)
154 self.assertTrue(value_list.GetValueAtIndex(0).GetValue() == "'X'")
/external/chromium_org/build/android/pylib/host_driven/
H A Dtest_info_collection.py135 value_list = filters[1].split(',')
136 for value in value_list:
/external/chromium_org/components/url_matcher/
H A Durl_matcher_factory.cc242 const base::ListValue* value_list = NULL; local
243 if (!value->GetAsList(&value_list)) {
248 for (base::ListValue::const_iterator i = value_list->begin();
249 i != value_list->end(); ++i) {
/external/lldb/source/Target/
H A DThreadPlanTracer.cpp238 ValueList value_list; local
247 value_list.PushValue (value);
250 if (abi->GetArgumentValues (m_thread, value_list))
254 stream->Printf("\n\targ[%d]=%llx", arg_index, value_list.GetValueAtIndex(arg_index)->GetScalar().ULongLong());
/external/chromium_org/chrome/installer/util/
H A Dmaster_preferences.cc36 const base::ListValue* value_list = NULL; local
37 if (!prefs->GetList(name, &value_list))
40 list.reserve(value_list->GetSize());
41 for (size_t i = 0; i < value_list->GetSize(); ++i) {
44 if (!value_list->Get(i, &entry) || !GetURLFromValue(entry, &url_entry)) {
/external/fio/
H A Dgraph.c64 struct flist_head value_list; member in struct:graph_label
162 flist_for_each(entry, &l->value_list)
186 if (flist_empty(&l->value_list))
189 flist_for_each(entry, &l->value_list) {
249 flist_for_each(entry, &lb->value_list) {
513 flist_for_each(jentry, &i->value_list) {
598 flist_for_each(entry, &i->value_list) {
660 INIT_FLIST_HEAD(&i->value_list);
720 flist_add_tail(&x->list, &i->value_list);
775 while (to_drop-- && !flist_empty(&i->value_list)) {
[all...]
/external/clang/utils/
H A DClangDataFormat.py149 value_list = frame.GetVariables(True, True, True, True)
150 for val in value_list:
/external/lldb/scripts/Python/interface/
H A DSBValueList.i89 Append (const lldb::SBValueList& value_list);
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dandroid.py897 def WriteList(self, value_list, variable=None, prefix='',
906 if value_list:
907 value_list = [quoter(prefix + l) for l in value_list]
909 value_list = [self.LocalPathify(l) for l in value_list]
910 values = ' \\\n\t' + ' \\\n\t'.join(value_list)
H A Dmake.py1667 def WriteList(self, value_list, variable=None, prefix='',
1676 if value_list:
1677 value_list = [quoter(prefix + l) for l in value_list]
1678 values = ' \\\n\t' + ' \\\n\t'.join(value_list)
/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_jar.py210 value_list = filters[1].split(',')
211 for value in value_list:
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir.cpp596 ir_constant::ir_constant(const struct glsl_type *type, exec_list *value_list) argument
607 foreach_list(node, value_list) {
617 * value_list must be a 1-for-1 match with the structure components. Each
618 * entry must also be a constant. Just move the nodes from the value_list
623 * FINISHME: value_list, or should it make copies?
626 value_list->move_nodes_to(& this->components);
634 ir_constant *value = (ir_constant *) (value_list->head);
696 /* Use each component from each entry in the value_list to initialize one
/external/mesa3d/src/glsl/
H A Dir.cpp596 ir_constant::ir_constant(const struct glsl_type *type, exec_list *value_list) argument
607 foreach_list(node, value_list) {
617 * value_list must be a 1-for-1 match with the structure components. Each
618 * entry must also be a constant. Just move the nodes from the value_list
623 * FINISHME: value_list, or should it make copies?
626 value_list->move_nodes_to(& this->components);
634 ir_constant *value = (ir_constant *) (value_list->head);
696 /* Use each component from each entry in the value_list to initialize one
/external/deqp/modules/gles31/scripts/
H A Dgen-implicit-conversions.py309 def gen_value_strs(value_list, value_type):
310 for value in value_list:

Completed in 852 milliseconds