/foundation/ability/idl_tool/idl_tool_2/util/ |
H A D | options.cpp | 35 const char *Options::optSupportArgs = "hvcs:m:p:d:r:o:D:t:"; 56 Options &Options::GetInstance() in GetInstance() 58 static Options option; in GetInstance() 62 bool Options::Parse(int argc, char *argv[]) in Parse() 88 bool Options::ParseSingle(int option, std::string optVal) in ParseSingle() 132 bool Options::ParseOptionWithValue(int option, std::string optVal) in ParseOptionWithValue() 182 bool Options::SetSystemLevel(const std::string &system) in SetSystemLevel() 199 bool Options::SetGenerateMode(const std::string &mode) in SetGenerateMode() 217 bool Options [all...] |
H A D | options.h | 28 class Options { class 32 static Options &GetInstance(); 34 Options(const Options &other) = delete; 35 Options operator=(const Options &other) = delete; 39 ~Options() = default; 206 Options() in Options() function in OHOS::Idl::Options
|
/foundation/ability/ability_runtime/interfaces/inner_api/runtime/include/ |
H A D | js_runtime_lite.h | 29 using Options = OHOS::AbilityRuntime::Runtime::Options; 40 static void InitJsRuntimeLite(const Options& options); 41 std::shared_ptr<Options> GetChildOptions(); 42 napi_status CreateJsEnv(const Options& options, std::shared_ptr<JsEnv::JsEnvironment>& jsEnv); 44 napi_status Init(const Options& options, napi_env env); 52 void LoadAotFile(const Options& options, const std::shared_ptr<JsEnv::JsEnvironment>& jsEnv); 59 void InitWorkerModule(const Options& options, const std::shared_ptr<JsEnv::JsEnvironment>& jsEnv); 65 void SetChildOptions(const Options& options); 71 std::shared_ptr<Options> childOptions [all...] |
H A D | js_runtime.h | 63 static std::unique_ptr<JsRuntime> Create(const Options& options); 144 bool Initialize(const Options& options); 168 bool CreateJsEnv(const Options& options); 169 void PreloadAce(const Options& options); 171 inline bool IsUseAbilityRuntime(const Options& options) const; 176 void InitWorkerModule(const Options& options); 177 void ReInitJsEnvImpl(const Options& options); 178 void PostPreload(const Options& options); 179 void LoadAotFile(const Options& options);
|
/foundation/ability/idl_tool/idl_tool_2/ |
H A D | main.cpp | 48 const Options &options = Options::GetInstance(); in DumpAst() 66 Options &options = Options::GetInstance(); in DumpMetaData() 111 const Options &options = Options::GetInstance(); in ReadMetaData() 129 Options &options = Options::GetInstance(); in main()
|
/foundation/ability/idl_tool/util/ |
H A D | options.cpp | 25 void Options::Parse(int argc, char** argv) in Parse() 74 bool Options::ParseSub(const String& option, int& i, char** argv) in ParseSub() 114 void Options::ShowErrors() in ShowErrors() 127 void Options::ShowVersion() in ShowVersion() 134 void Options::ShowWarning() in ShowWarning() 139 void Options::ShowUsage() in ShowUsage() 143 "Options:\n" in ShowUsage()
|
H A D | options.h | 23 class Options { class 25 Options(int argc, char** argv) in Options() function in OHOS::Idl::Options 30 ~Options() = default;
|
/foundation/ability/idl_tool/test/unittest/cacheable_test/ |
H A D | cacheable_test.cpp | 68 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 92 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 116 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 140 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 164 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 188 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 212 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 236 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 260 Options options(parameters.argc_, parameters.argv_); in HWTEST_F() 284 Options option in HWTEST_F() [all...] |
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/ |
H A D | form_extension_test.cpp | 80 AbilityRuntime::Runtime::Options options; in HWTEST_F() 106 AbilityRuntime::Runtime::Options options; in HWTEST_F() 126 AbilityRuntime::Runtime::Options options; in HWTEST_F() 147 AbilityRuntime::Runtime::Options options; in HWTEST_F() 163 AbilityRuntime::Runtime::Options options; in HWTEST_F() 180 AbilityRuntime::Runtime::Options options; in HWTEST_F() 197 AbilityRuntime::Runtime::Options options; in HWTEST_F() 215 AbilityRuntime::Runtime::Options options; in HWTEST_F() 233 AbilityRuntime::Runtime::Options options; in HWTEST_F() 250 AbilityRuntime::Runtime::Options option in HWTEST_F() [all...] |
H A D | ability_runtime_test.cpp | 59 Runtime::Options options; in HWTEST_F() 75 Runtime::Options options; in HWTEST_F() 93 Runtime::Options options; in HWTEST_F() 109 Runtime::Options options; in HWTEST_F() 125 Runtime::Options options; in HWTEST_F()
|
/foundation/ability/ability_runtime/test/unittest/runtime_test/ |
H A D | js_runtime_first_test.cpp | 54 Runtime::Options options_;
63 Runtime::Options newOptions;
in SetUp() 84 AbilityRuntime::Runtime::Options options;
in HWTEST_F() 103 AbilityRuntime::Runtime::Options options;
in HWTEST_F() 123 AbilityRuntime::Runtime::Options options;
in HWTEST_F() 145 AbilityRuntime::Runtime::Options options;
in HWTEST_F() 173 AbilityRuntime::Runtime::Options options;
in HWTEST_F()
|
/foundation/ai/neural_network_runtime/example/deep_learning_framework/tflite/delegates/nnrt_delegate/ |
H A D | nnrt_delegate.h | 41 struct Options { struct in tflite::NnrtDelegate 67 // This makes a copy of any data that it needs from Options, so 69 // the 'const char *' members of Options immediately after calling this. 70 explicit NnrtDelegate(const Options& options); 76 // This constructor makes a copy of any data that it needs from Options, so 78 // the 'const char *' members of Options immediately after calling this. 79 NnrtDelegate(const NnrtApi* nnrt, const Options& options); 85 // returned Options object is the same as the lifetime of the supplied 87 static TfLiteStatus GetOptions(const TfLiteDelegate* pDelegate, Options& options); 157 void NnrtDelegateConstructorImpl(const Options [all...] |
H A D | nnrt_delegate.cpp | 33 void NnrtDelegate::NnrtDelegateConstructorImpl(const Options& options) in NnrtDelegateConstructorImpl() 58 NnrtDelegate::NnrtDelegate(const NnrtApi* nnrt) : NnrtDelegate(nnrt, Options()) {} in NnrtDelegate() 60 NnrtDelegate::NnrtDelegate(const Options& options) : NnrtDelegate(NnrtImplementation(), options) {} in NnrtDelegate() 62 NnrtDelegate::NnrtDelegate(const NnrtApi* nnrt, const Options& options) in NnrtDelegate() 68 NnrtDelegate::NnrtDelegate() : NnrtDelegate(Options()) {} in NnrtDelegate() 70 TfLiteStatus NnrtDelegate::GetOptions(const TfLiteDelegate* pDelegate, Options& options) in GetOptions() 242 NnrtDelegate::Options delegateOptions; in CheckDeviceValid() 292 NnrtDelegate::Options delegateOptions; in DoPrepare()
|
H A D | nnrt_delegate_kernel.h | 67 const NnrtDelegate::Options& delegateOptions); 68 TfLiteStatus BuildGraph(TfLiteContext* context, const NnrtDelegate::Options& options, 75 TfLiteStatus SetNnOptions(TfLiteContext* context, const NnrtDelegate::Options& delegateOptions);
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/ |
H A D | store_factory.h | 28 std::shared_ptr<SingleKvStore> GetOrOpenStore(const AppId &appId, const StoreId &storeId, const Options &options, 46 DBOption GetDBOption(const Options &options, const DBPassword &dbPassword) const; 48 std::shared_ptr<DBManager> dbManager, const Options &options); 50 std::shared_ptr<DBManager> dbManager, const Options &options); 52 Status IsPwdValid(const std::string &storeId, std::shared_ptr<DBManager> dbManager, const Options &options,
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/ |
H A D | custom_paint_util.cpp | 49 SkJpegEncoder::Options options; in EncodeImage() 53 SkWebpEncoder::Options options; in EncodeImage() 58 SkPngEncoder::Options options; in EncodeImage()
|
/foundation/ability/idl_tool/ |
H A D | main.cpp | 29 static int DoOptionsCheck(Options& options) in DoOptionsCheck() 55 static int DoCompile(Options& options, std::shared_ptr<MetaComponent>& metadata) in DoCompile() 96 static int DoGenerage(const Options& options, std::shared_ptr<MetaComponent>& metadata) in DoGenerage() 120 Options options(argc, argv); in main()
|
/foundation/distributeddatamgr/preferences/test/native/unittest/ |
H A D | preferences_helper_test.cpp | 145 Options option = Options("test300", "com.hmos.uttest", ""); in HWTEST_F() 159 Options option = Options("/data/test/preferences/test01", "", ""); in HWTEST_F()
|
/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/include/ |
H A D | ability_context.h | 38 Options GetOptions() override; 39 void SetOptions(const Options &options) override; 64 Options options_;
|
H A D | ability_stage_context.h | 37 Options GetOptions() override; 38 void SetOptions(const Options &options) override; 61 Options options_;
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/include/ |
H A D | zip_utils.h | 99 // Compression Options 100 struct Options { struct 111 Options() in Options() function 127 using OPTIONS = struct Options;
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
H A D | kv_hiview_reporter_mock.cpp | 35 explicit KVDBCorruptedEvent(const Options &options) : storeType("KVDB") in KVDBCorruptedEvent() 45 const Options &options, uint32_t errorCode, int32_t systemErrorNo, in ReportKVDBCorruptedFault() 52 const Options &options, uint32_t errorCode, int32_t systemErrorNo, in ReportKVDBRebuild()
|
/foundation/distributeddatamgr/preferences/frameworks/native/include/ |
H A D | preferences_impl.h | 35 static std::shared_ptr<PreferencesImpl> GetPreferences(const Options &options) in GetPreferences() 63 explicit PreferencesImpl(const Options &options); 72 bool WriteSettingXml(const Options &options, const std::map<std::string, PreferencesValue> &writeToDiskMap);
|
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/ |
H A D | dump_runtime_helper_second_test.cpp | 78 AbilityRuntime::Runtime::Options options; in HWTEST_F() 116 AbilityRuntime::Runtime::Options options; in HWTEST_F() 144 AbilityRuntime::Runtime::Options options; in HWTEST_F() 162 AbilityRuntime::Runtime::Options options; in HWTEST_F() 183 AbilityRuntime::Runtime::Options options; in HWTEST_F() 207 AbilityRuntime::Runtime::Options options; in HWTEST_F() 229 AbilityRuntime::Runtime::Options options; in HWTEST_F()
|
/foundation/ability/ability_runtime/test/unittest/native_runtime_test/ |
H A D | js_runtime_lite_test.cpp | 53 Options options; in HWTEST_F() 71 Options options; in HWTEST_F() 96 Options options; in HWTEST_F() 135 AbilityRuntime::Runtime::Options options; in HWTEST_F() 173 AbilityRuntime::Runtime::Options options; in HWTEST_F()
|