Home
last modified time | relevance | path

Searched defs:Option (Results 1 – 25 of 54) sorted by relevance

123

/third_party/mindspore/mindspore/core/mindrt/include/async/
Doption.h43 Option() : data(), state(NONE) {} in Option() function
45 explicit Option(const T t) : data(t), state(SOME) {} in Option() function
47 explicit Option(T &&t) : data(std::move(t)), state(SOME) {} in Option() function
49 explicit Option(const InnerSome<T> &some) : data(some._t), state(SOME) {} in Option() function
51 explicit Option(const MindrtNone &none) : data(), state(NONE) {} in Option() function
53 Option(const Option<T> &that) : data(), state(that.state) { in Option() function
/third_party/mindspore/mindspore/lite/tools/common/
Doption.h43 Option() : state(NONE) {} in Option() function
45 explicit Option(const T &t) : data(t), state(SOME) {} in Option() function
47 explicit Option(T &&t) : data(std::move(t)), state(SOME) {} in Option() function
49 explicit Option(const InnerSome<T> &some) : data(some._t), state(SOME) {} in Option() function
51 explicit Option(const None &none) : state(NONE) {} in Option() function
53 Option(const Option<T> &that) : state(that.state) { in Option() function
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeCommandLine.hpp52 struct Option struct
54 typedef typename OptName::ValueType ValueType;
55 typedef void (*ParseFunc) (const char* src, ValueType* dst);
58 const char* shortName;
59 const char* longName;
60 const char* description;
61 …nst char* defaultValue; //!< Default value (parsed from string), or null if should not be set
64 ParseFunc parse; //!< Custom parsing function or null.
65 const NamedValue<ValueType>* namedValues; //!< Named values or null.
66 const NamedValue<ValueType>* namedValuesEnd; //!< Named value list end.
[all …]
/third_party/flutter/engine/flutter/fml/
Dcommand_line.h61 struct Option { struct
62 Option() {} in Option() function
84 const std::vector<Option>& options, argument
Dcommand_line.cc11 CommandLine::Option::Option(const std::string& name) : name(name) {} in Option() function in fml::CommandLine::Option
13 CommandLine::Option::Option(const std::string& name, const std::string& value) in Option() function in fml::CommandLine::Option
/third_party/typescript/tests/cases/compiler/
DmoduleResolutionPackageIdWithRelativeAndAbsolutePath.ts15 export class Option { class
35 export class Option { class
/third_party/ffmpeg/fftools/
Dcmdutils.h290 typedef struct Option { struct
291 const OptionDef *opt; argument
294 } Option; argument
/third_party/typescript/tests/baselines/reference/
DmoduleResolutionPackageIdWithRelativeAndAbsolutePath.js14 export class Option { class
/third_party/skia/tools/
Dusing_skia_and_harfbuzz.cpp46 struct Option : BaseOption { struct
48 Option(std::string _selector, std::string _description, T defaultValue) in Option() argument
/third_party/flutter/skia/tools/
Dusing_skia_and_harfbuzz.cpp43 struct Option : BaseOption { struct
45 Option(std::string _selector, std::string _description, T defaultValue) in Option() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Option/
DOptSpecifier.h15 class Option; variable
DOptTable.h29 class Option; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DOptions.h98 cl::opt<ValT> *Option = new cl::opt<ValT>(ArgStr, cl::desc(Desc), in registerOption() local
/third_party/giflib/
Dgetarg.c187 char *Option = *argv++; in GAGetArgs() local
251 char *Option, in GAUpdateParameters()
303 char *Option, in GAGetParmeters()
/third_party/nghttp2/doc/bash_completion/
Dmake_bash_completion.py12 class Option: class
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dspace-before-function-paren.ts7 type Option = 'never' | 'always'; alias
Dcomma-dangle.ts11 type Option = Options[0]; alias
/third_party/protobuf/php/src/Google/Protobuf/
DOption.php17 class Option extends \Google\Protobuf\Internal\Message class
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/
DOptTable.cpp197 static bool optionMatches(const OptTable::Info &In, StringRef Option) { in optionMatches()
209 OptTable::suggestValueCompletions(StringRef Option, StringRef Arg) const { in suggestValueCompletions()
249 unsigned OptTable::findNearest(StringRef Option, std::string &NearestString, in findNearest()
322 bool OptTable::addValues(const char *Option, const char *Values) { in addValues()
502 const std::string &Option = OptionHelp[i].Name; in PrintHelpOptionList() local
DOption.cpp26 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option() function in Option
/third_party/mindspore/tests/st/graph_kernel/model/
Dgraph_kernel_split.py33 class Option: class
/third_party/mesa3d/src/util/
Ddriconf_static.py38 class Option(object): class
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMachObjectWriter.cpp425 for (const std::string &Option : Options) in ComputeLinkerOptionsLoadCommandSize() local
441 for (const std::string &Option : Options) { in writeLinkerOptionsLoadCommand() local
807 for (const auto &Option : Asm.getLinkerOptions()) { in writeObject() local
949 for (const auto &Option : Asm.getLinkerOptions()) in writeObject() local
/third_party/protobuf/php/tests/
DWellKnownTest.php28 use Google\Protobuf\Option; alias
/third_party/protobuf/src/google/protobuf/
Dtype.proto168 message Option { message

123