Home
last modified time | relevance | path

Searched refs:GetText (Results 1 – 21 of 21) sorted by relevance

/aosp12/system/tools/aidl/
H A Daidl_language_y.yy217 ps->SetPackage($2->GetText());
252 $$->Append($3->GetText());
295 $$->emplace_back($1->GetText());
299 $1->emplace_back($3->GetText());
322 … $$ = new AidlParcelable(loc(@2), $2->GetText(), ps->Package(), $1->GetComments(), $4->GetText());
405 << $1->GetText();
419 << $1->GetText();
426 $$ = AidlConstantValue::String(loc(@1), $1->GetText());
430 $$ = new AidlConstantReference(loc(@1), $1->GetText());
654 $$ = new AidlArgument(loc(@3), $1, $2, $3->GetText());
[all …]
H A Dparser.h44 const std::string& GetText() const { return text_; } in GetText() function
/aosp12/art/dex2oat/linker/
H A Delf_writer_quick.cc216 auto* text = builder_->GetText(); in StartText()
223 CHECK_EQ(builder_->GetText(), text); in EndText()
224 builder_->GetText()->End(); in EndText()
253 builder_->GetText()->GetAddress(), in PrepareDebugInfo()
/aosp12/art/compiler/utils/
H A Dassembler_test_base.h218 builder->GetText()->Start(); in WriteElf()
219 builder->GetText()->WriteFully(code.data(), code.size()); in WriteElf()
220 builder->GetText()->End(); in WriteElf()
/aosp12/art/compiler/debug/
H A Delf_debug_writer.cc129 builder->GetText()->AllocateVirtualMemory(text_section_address, text_section_size); in MakeMiniDebugInfoInternal()
191 builder->GetText()->AllocateVirtualMemory(method_info.code_address, method_info.code_size); in MakeElfFileForJIT()
259 auto* text = builder->GetText(); in PackElfFileForJIT()
337 builder->GetText()->AllocateVirtualMemory(min_address, max_address - min_address); in PackElfFileForJIT()
H A Delf_symtab_writer.h92 const auto* text = builder->GetText(); in WriteDebugSymbols()
H A Delf_debug_line_writer.h55 ? builder_->GetText()->GetAddress() in WriteCompilationUnit()
H A Delf_debug_frame_writer.h195 (mi->is_code_address_text_relative ? builder->GetText()->GetAddress() : 0); in WriteCFISection()
H A Delf_debug_info_writer.h111 ? owner_->builder_->GetText()->GetAddress() in Write()
/aosp12/packages/services/Car/cpp/watchdog/server/src/
H A DOveruseConfigurationXmlHelper.cpp121 if (const auto text = componentTypeElement->GetText(); text == nullptr) { in readComponentType()
151 if (const auto text = innerElement->GetText(); text == nullptr) { in readSafeToKillPackages()
171 if (const auto text = innerElement->GetText(); text == nullptr) { in readVendorPackagePrefixes()
215 if (const auto text = innerElement->GetText(); text == nullptr) { in readPackageToAppCategoryTypes()
240 if (const auto text = childElement->GetText(); text == nullptr) { in readPerStateBytes()
360 if (const auto text = childElement->GetText(); text == nullptr) { in readIoOveruseAlertThreshold()
/aosp12/system/bt/btif/src/
H A Dbtif_config_transcode.cc54 const char* value = k->GetText(); in btif_config_transcode()
/aosp12/bionic/benchmarks/
H A Dbionic_benchmarks.cpp430 std::string fn_name = fn_elem->GetText(); in RegisterXmlBenchmarks()
437 xml_args ? android::base::Trim(xml_args->GetText()) : "", in RegisterXmlBenchmarks()
/aosp12/art/tools/create_minidebuginfo/
H A Dcreate_minidebuginfo.cc58 auto* text = builder->GetText(); in WriteMinidebugInfo()
/aosp12/system/core/fastboot/fuzzy_fastboot/
H A Dextensions.cpp153 const std::string text(child->GetText()); in ExtractPacked()
/aosp12/hardware/interfaces/camera/device/3.4/default/
H A DExternalCameraUtils.cpp744 ret.cameraIdOffset = std::atoi(cameraIdOffset->GetText()); in loadFromCfg()
755 const char* text = id->GetText(); in loadFromCfg()
/aosp12/packages/services/Car/cpp/powerpolicy/server/src/
H A DPolicyManager.cpp196 const char* powerState = pComponent->GetText(); in readComponents()
/aosp12/system/libvintf/
H A Dparse_xml.cpp97 return root->GetText() == NULL ? "" : root->GetText(); in getText()
/aosp12/art/libelffile/elf/
H A Delf_builder.h501 Section* GetText() { return &text_; } in GetText() function
/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL3/
H A DQCamera3HWI.cpp16757 if (modelWidth == nullptr || modelWidth->GetText() == nullptr) { in readSensorCalibration()
16761 int width = atoi(modelWidth->GetText()); in readSensorCalibration()
16763 if (modelHeight == nullptr || modelHeight->GetText() == nullptr) { in readSensorCalibration()
16767 int height = atoi(modelHeight->GetText()); in readSensorCalibration()
16779 const char* paramText = modelParams->GetText(); in readSensorCalibration()
16808 if (q == nullptr || q->GetText() == nullptr) { in readSensorCalibration()
16813 success = parseStringArray(q->GetText(), rotation, 4); in readSensorCalibration()
16820 if (p == nullptr || p->GetText() == nullptr) { in readSensorCalibration()
16825 success = parseStringArray(p->GetText(), position, 3); in readSensorCalibration()
/aosp12/art/compiler/jni/
H A Djni_compiler_test.cc1411 JNI_TEST(GetText)
/aosp12/art/oatdump/
H A Doatdump.cc157 auto* text = builder_->GetText(); in Symbolize()