Home
last modified time | relevance | path

Searched refs:constructor (Results 1 – 17 of 17) sorted by relevance

/system/core/libutils/
DTrace.cpp20 static void traceInit() __attribute__((constructor));
/system/tools/aidl/
Dgenerate_java.cpp207 auto constructor = std::make_shared<Method>(); in generate_parcel_class() local
208 constructor->modifiers = PUBLIC; in generate_parcel_class()
209 constructor->name = parcel->GetName(); in generate_parcel_class()
210 constructor->statements = std::make_shared<StatementBlock>(); in generate_parcel_class()
212 constructor->parameters.push_back(std::make_shared<Variable>( in generate_parcel_class()
226 constructor->statements->Add(std::make_shared<LiteralStatement>(out.str())); in generate_parcel_class()
228 parcel_class->elements.push_back(constructor); in generate_parcel_class()
235 auto constructor = std::make_shared<Method>(); in generate_parcel_class() local
Dgenerate_cpp.cpp684 unique_ptr<ConstructorImpl> constructor{ in BuildServerSource() local
688 constructor->GetStatementBlock()->AddLiteral("::android::internal::Stability::markVintf(this)"); in BuildServerSource()
690 constructor->GetStatementBlock()->AddLiteral( in BuildServerSource()
752 decls.push_back(std::move(constructor)); in BuildServerSource()
831 unique_ptr<ConstructorDecl> constructor{new ConstructorDecl{ in BuildClientHeader() local
843 publics.push_back(std::move(constructor)); in BuildClientHeader()
889 unique_ptr<ConstructorDecl> constructor{ in BuildServerHeader() local
904 publics.push_back(std::move(constructor)); in BuildServerHeader()
/system/extras/toolchain-extras/
Dprofile-clang-extras.cpp52 __attribute__((constructor)) int init_profile_extras(void) { in init_profile_extras()
Dprofile-extras.cpp59 __attribute__((constructor)) int init_profile_extras(void) { in init_profile_extras()
/system/chre/build/app_support/qcom_nanohub/
Dapp_support_uimg.cc62 static void __appInit (void) __attribute__((constructor));
Dapp_support.cc93 static void __appInit(void) __attribute__((constructor));
/system/extras/verity/
DUtils.java103 Constructor<?> constructor = null; in loadProviderIfNecessary() local
106 constructor = c; in loadProviderIfNecessary()
110 if (constructor == null) { in loadProviderIfNecessary()
118 o = constructor.newInstance(); in loadProviderIfNecessary()
/system/apex/apexd/
DAndroid.bp11 "bugprone-string-constructor",
14 "bugprone-undelegated-constructor",
18 "google-explicit-constructor",
34 "performance-move-constructor-init",
35 "performance-noexcept-move-constructor",
/system/extras/simpleperf/scripts/
Dreport_html.js26 constructor() { method in anonymousFunction5f390bf10100.TimeLog
38 constructor() { method in anonymousFunction5f390bf10100.ProgressBar
198 constructor(divContainer) { method in anonymousFunction5f390bf10100.TabManager
314 constructor(divContainer) { method in anonymousFunction5f390bf10100.RecordFileView
362 constructor(divContainer, eventInfo) { method in anonymousFunction5f390bf10100.ChartView
577 constructor(divContainer, eventInfo, onSelectChange) { method in anonymousFunction5f390bf10100.SampleTableWeightSelectorView
636 constructor(divContainer, eventInfo) { method in anonymousFunction5f390bf10100.SampleTableView
759 constructor(div, eventInfo) { method in anonymousFunction5f390bf10100.FlameGraphViewList
873 constructor() { method in anonymousFunction5f390bf10100.FunctionTab
1012 constructor(divContainer, eventInfo, onSelectChange) { method in anonymousFunction5f390bf10100.SampleWeightSelectorView
[all …]
/system/incremental_delivery/incfs/
DAndroid.bp39 "-google-explicit-constructor",
/system/extras/profcollectd/
DAndroid.bp26 "-google-explicit-constructor",
/system/incremental_delivery/libdataloader/
DAndroid.bp38 "-google-explicit-constructor",
/system/netd/libnetdutils/
DSliceTest.cpp55 TEST_F(SliceTest, constructor) { in TEST_F() argument
/system/tools/xsdc/src/com/android/xsdc/cpp/
DCppCodeGenerator.java579 StringBuilder constructor = new StringBuilder(); in printConstructor() local
604 constructor.append(String.format(", %s_(%s)", variableName, in printConstructor()
623 constructor.append(String.format(", %s_(%s)", variableName, in printConstructor()
631 String constructorString = constructor.toString(); in printConstructor()
/system/bpf/libbpf_android/
DBpfMapTest.cpp109 TEST_F(BpfMapTest, constructor) { in TEST_F() argument
/system/libbase/
Dlogging_test.cpp622 __attribute__((constructor)) void TestLoggingInConstructor() { in TestLoggingInConstructor()