Searched defs:value_list (Results 1 - 10 of 10) sorted by relevance

/external/lldb/source/API/
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 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 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/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/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/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/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/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...]

Completed in 228 milliseconds