Home
last modified time | relevance | path

Searched refs:AddItem (Results 1 – 25 of 39) sorted by relevance

12

/external/perfetto/src/tracing/
Dtraced_value_unittest.cc143 dict.AddItem("bool").WriteBoolean(true); in TEST()
144 dict.AddItem("double").WriteDouble(0.0); in TEST()
145 dict.AddItem("int").WriteInt64(2014); in TEST()
146 dict.AddItem("string").WriteString("string"); in TEST()
147 dict.AddItem("truncated_string").WriteString("truncated_string", 9); in TEST()
148 dict.AddItem("ptr").WritePointer(reinterpret_cast<void*>(0x1234)); in TEST()
177 auto array = root_dict.AddItem("a1").WriteArray(); in TEST()
182 dict.AddItem("i2").WriteInt64(3); in TEST()
185 root_dict.AddItem("b0").WriteBoolean(true); in TEST()
186 root_dict.AddItem("d0").WriteDouble(0.0); in TEST()
[all …]
Dtraced_value.cc115 TracedValue TracedDictionary::AddItem(StaticString key) { in AddItem() function in perfetto::TracedDictionary
122 TracedValue TracedDictionary::AddItem(DynamicString key) { in AddItem() function in perfetto::TracedDictionary
131 return AddItem(key).WriteDictionary(); in AddDictionary()
136 return AddItem(key).WriteDictionary(); in AddDictionary()
141 return AddItem(key).WriteArray(); in AddArray()
146 return AddItem(key).WriteArray(); in AddArray()
/external/llvm-project/lldb/tools/debugserver/source/
DJSONGenerator.h126 void AddItem(ObjectSP item) { m_items.push_back(item); } in AddItem() function
223 void AddItem(std::string key, ObjectSP value) { in AddItem() function
228 AddItem(key, ObjectSP(new Integer(value))); in AddIntegerItem()
232 AddItem(key, ObjectSP(new Float(value))); in AddFloatItem()
236 AddItem(key, ObjectSP(new String(std::move(value)))); in AddStringItem()
246 AddItem(key, ObjectSP(new String(std::move(strm.str())))); in AddBytesAsHexASCIIString()
248 AddItem(key, ObjectSP(new String())); in AddBytesAsHexASCIIString()
253 AddItem(key, ObjectSP(new Boolean(value))); in AddBooleanItem()
/external/capstone/bindings/vb6/
DForm1.frm204 List1.AddItem "Failed to init engine: " & cap.errMsg
208 List1.AddItem "Capstone loaded @ 0x" & Hex(cap.hLib)
209 List1.AddItem "hEngine: 0x" & Hex(cap.hCapstone)
210 List1.AddItem "Version: " & cap.version
213 List1.AddItem "Sample requires Capstone v3+"
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
DInstrumentationRuntimeTSan.cpp225 trace->AddItem( in CreateStackTrace()
248 array->AddItem(StructuredData::ObjectSP(dict)); in ConvertToStructuredArray()
350 dict->AddItem("sleep_trace", StructuredData::ObjectSP(CreateStackTrace( in RetrieveReportData()
359 dict->AddItem("trace", StructuredData::ObjectSP(CreateStackTrace(o))); in RetrieveReportData()
363 dict->AddItem("stacks", StructuredData::ObjectSP(stacks)); in RetrieveReportData()
388 dict->AddItem("trace", StructuredData::ObjectSP(CreateStackTrace(o))); in RetrieveReportData()
390 dict->AddItem("mops", StructuredData::ObjectSP(mops)); in RetrieveReportData()
420 dict->AddItem("trace", StructuredData::ObjectSP(CreateStackTrace(o))); in RetrieveReportData()
424 dict->AddItem("locs", StructuredData::ObjectSP(locs)); in RetrieveReportData()
441 dict->AddItem("trace", StructuredData::ObjectSP(CreateStackTrace(o))); in RetrieveReportData()
[all …]
/external/lzma/CPP/Common/
DWildcard.cpp273 void CCensorNode::AddItem(bool include, CItem &item, int ignoreWildcardIndex) in AddItem() function in NWildcard::CCensorNode
299 SubNodes[index].AddItem(include, item, ignoreWildcardIndex - 1); in AddItem()
302 void CCensorNode::AddItem(bool include, const UString &path, bool recursive, bool forFile, bool for… in AddItem() function in NWildcard::CCensorNode
310 AddItem(include, item); in AddItem()
428 AddItem(include, path2, recursive, forFile, forFolder, wildcardMatching); in AddItem2()
528 void CCensor::AddItem(ECensorPathMode pathMode, bool include, const UString &path, bool recursive, … in AddItem() function in NWildcard::CCensor
622 Pairs[index].Head.AddItem(include, item, ignoreWildcardIndex); in AddItem()
662 AddItem(censorPathMode, cp.Include, cp.Path, cp.Recursive, cp.WildcardMatching); in AddPathsToCensor()
DWildcard.h75 void AddItem(bool include, CItem &item, int ignoreWildcardIndex = -1);
76 …void AddItem(bool include, const UString &path, bool recursive, bool forFile, bool forDir, bool wi…
130 …void AddItem(ECensorPathMode pathMode, bool include, const UString &path, bool recursive, bool wil…
/external/llvm-project/lldb/include/lldb/Utility/
DStructuredData.h276 void AddItem(const ObjectSP &item) { m_items.push_back(item); } in AddItem() function
494 void AddItem(llvm::StringRef key, ObjectSP value_sp) { in AddItem() function
500 AddItem(key, std::make_shared<Integer>(value)); in AddIntegerItem()
504 AddItem(key, std::make_shared<Float>(value)); in AddFloatItem()
508 AddItem(key, std::make_shared<String>(std::move(value))); in AddStringItem()
512 AddItem(key, std::make_shared<Boolean>(value)); in AddBooleanItem()
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointResolverName.cpp198 names_sp->AddItem(StructuredData::StringSP( in SerializeToStructuredData()
200 name_masks_sp->AddItem(StructuredData::IntegerSP( in SerializeToStructuredData()
203 options_dict_sp->AddItem(GetKey(OptionNames::SymbolNameArray), names_sp); in SerializeToStructuredData()
204 options_dict_sp->AddItem(GetKey(OptionNames::NameMaskArray), name_masks_sp); in SerializeToStructuredData()
DBreakpointResolverFileRegex.cpp87 names_array_sp->AddItem(item); in SerializeToStructuredData()
89 options_dict_sp->AddItem(GetKey(OptionNames::LineNumber), names_array_sp); in SerializeToStructuredData()
DBreakpoint.cpp92 names_array_sp->AddItem( in SerializeToStructuredData()
95 breakpoint_contents_sp->AddItem(Breakpoint::GetKey(OptionNames::Names), in SerializeToStructuredData()
107 breakpoint_contents_sp->AddItem(BreakpointResolver::GetSerializationKey(), in SerializeToStructuredData()
115 breakpoint_contents_sp->AddItem(SearchFilter::GetSerializationKey(), in SerializeToStructuredData()
123 breakpoint_contents_sp->AddItem(BreakpointOptions::GetSerializationKey(), in SerializeToStructuredData()
126 breakpoint_dict_sp->AddItem(GetSerializationKey(), breakpoint_contents_sp); in SerializeToStructuredData()
DBreakpointOptions.cpp49 user_source_sp->AddItem(item_sp); in SerializeToStructuredData()
50 options_dict_sp->AddItem(GetKey(OptionNames::UserSource), user_source_sp); in SerializeToStructuredData()
388 options_dict_sp->AddItem( in SerializeToStructuredData()
395 options_dict_sp->AddItem(ThreadSpec::GetSerializationKey(), thread_spec_sp); in SerializeToStructuredData()
DBreakpointResolverScripted.cpp98 options_dict_sp->AddItem(GetKey(OptionNames::ScriptArgs), in SerializeToStructuredData()
DBreakpointResolver.cpp157 type_dict_sp->AddItem(GetSerializationSubclassOptionsKey(), options_dict_sp); in WrapOptionsDict()
/external/perfetto/include/perfetto/tracing/
Dtraced_value.h229 TracedValue AddItem(StaticString key);
230 TracedValue AddItem(DynamicString key);
234 WriteIntoTracedValue(AddItem(key), std::forward<T>(value)); in Add()
239 WriteIntoTracedValue(AddItem(key), std::forward<T>(value)); in Add()
/external/llvm-project/lldb/source/Utility/
DStructuredData.cpp81 dict_up->AddItem(key, value_sp); in ParseJSONObject()
90 array_up->AddItem(value_sp); in ParseJSONArray()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
DInstrumentationRuntimeMainThreadChecker.cpp144 trace->AddItem(StructuredData::ObjectSP(new StructuredData::Integer(PC))); in RetrieveReportData()
156 d->AddItem("trace", trace_sp); in RetrieveReportData()
/external/llvm-project/lldb/source/Core/
DSearchFilter.cpp179 type_dict_sp->AddItem(GetSerializationSubclassOptionsKey(), options_dict_sp); in WrapOptionsDict()
195 module_array_sp->AddItem(std::make_shared<StructuredData::String>( in SerializeFileSpecList()
198 options_dict_sp->AddItem(GetKey(name), module_array_sp); in SerializeFileSpecList()
499 module_array_sp->AddItem( in SerializeToStructuredData()
501 options_dict_sp->AddItem(GetKey(OptionNames::ModList), module_array_sp); in SerializeToStructuredData()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
DInstrumentationRuntimeUBSan.cpp159 trace->AddItem(StructuredData::ObjectSP(new StructuredData::Integer(PC))); in RetrieveReportData()
180 d->AddItem("trace", trace_sp); in RetrieveReportData()
/external/llvm-project/lldb/source/Host/common/
DXML.cpp484 array_sp->AddItem(CreatePlistValue(node)); in CreatePlistValue()
502 dict_sp->AddItem(key_name, CreatePlistValue(node)); in CreatePlistValue()
/external/lzma/CPP/7zip/Bundles/SFXWin/
DSfxWin.cpp181 wildcardCensor.AddItem(true, L"*", true, true, true, true); in WinMain2()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_list_impl.h146 void AddItem(const WideString& str);
Dcpwl_list_impl.cpp312 AddItem(str); in AddString()
563 void CPWL_ListCtrl::AddItem(const WideString& str) { in AddItem() function in CPWL_ListCtrl
/external/tensorflow/tensorflow/core/framework/
Dfunction.cc182 AddItem(arg_def.name(), {true, arg_index, 0, is_type_list, dtypes})); in BuildInputArgIndex()
185 TF_RETURN_IF_ERROR(AddItem(strings::StrCat(arg_def.name(), ":", i), in BuildInputArgIndex()
220 return AddItem(node.name(), {false, arg_index, 0, false, {}}); in BuildNodeOutputIndex()
234 AddItem(base_name, {false, arg_index, start, is_type_list, dtypes})); in BuildNodeOutputIndex()
237 AddItem(strings::StrCat(base_name, ":", j), in BuildNodeOutputIndex()
416 Status AddItem(const string& name, const NameInfoItem& item) { in AddItem() function in tensorflow::__anon8e6ea3240111::FunctionInstantiationHelper
/external/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
DStructuredDataDarwinLog.cpp584 config_sp->AddItem("source-flags", source_flags_sp); in BuildConfigurationData()
601 config_sp->AddItem("filter-rules", json_filter_rules_sp); in BuildConfigurationData()
605 json_filter_rules_sp->AddItem(rule_sp->Serialize()); in BuildConfigurationData()

12