Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:Enum
(Results
1 - 5
of
5
) sorted by relevance
/foundation/multimodalinput/input/util/common/include/
H
A
D
util_ex.h
61
template <class
Enum
>
62
constexpr auto EnumUnderlyingValue(
Enum
const e) -> typename std::underlying_type<
Enum
>::type
64
static_assert(std::is_enum<
Enum
>::value, "input value is not of enum class nor enum");
65
return static_cast<typename std::underlying_type<
Enum
>::type>(e);
68
template <class
Enum
, class T>
69
Enum
EnumAdd(
Enum
const e, T val)
in EnumAdd()
71
static_assert(std::is_enum<
Enum
>::value, "input value is not of enum class nor enum");
in EnumAdd()
73
return static_cast<
Enum
>(
in EnumAdd()
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/
H
A
D
expected.h
112
template<typename
Enum
>
116
constexpr ReturnValue(
Enum
code) : code_(code) {}
in ReturnValue()
121
return BASE_NS::underlying_type_t<
Enum
>(code_) > 0;
in operator bool()
124
constexpr
Enum
GetCode() const
in GetCode()
129
bool operator==(
Enum
v) const
in operator ==()
134
bool operator!=(
Enum
v) const
in operator !=()
140
Enum
code_ {};
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H
A
D
property.cpp
24
{ Property::Form::
Enum
, "
Enum
" },
300
formFlag_ = Form::
Enum
;
in SetFormEnum()
416
} else if (formFlag_ == Form::
Enum
) {
in ReadFormData()
471
} else if (formFlag_ == Form::
Enum
) {
in WriteFormData()
736
} else if (formFlag_ == Form::
Enum
) {
in DumpForm()
/foundation/multimedia/media_library/frameworks/services/media_mtp/include/
H
A
D
property.h
87
Enum
= 2,
/foundation/ability/idl_tool/test/cmd_test/
H
A
D
cmd_test.py
22
from enum import
Enum
namespace
26
class RetStatus(
Enum
):
Completed in 5 milliseconds