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:AEnum
(Results
1 - 4
of
4
) sorted by relevance
/third_party/rust/crates/cxx/tests/ffi/
H
A
D
lib.rs
51
enum
AEnum
{
enum
127
fn c_return_ns_enum(n: u16) ->
AEnum
;
in c_return_ns_enum()
171
fn c_take_ns_enum(e:
AEnum
);
in c_take_ns_enum()
H
A
D
tests.cc
198
::A::
AEnum
c_return_ns_enum(uint16_t n) {
in c_return_ns_enum()
199
if (n <= static_cast<uint16_t>(::A::
AEnum
::AAVal)) {
in c_return_ns_enum()
200
return ::A::
AEnum
::AAVal;
in c_return_ns_enum()
201
} else if (n <= static_cast<uint16_t>(::A::
AEnum
::ABVal)) {
in c_return_ns_enum()
202
return ::A::
AEnum
::ABVal;
in c_return_ns_enum()
204
return ::A::
AEnum
::ACVal;
in c_return_ns_enum()
538
void c_take_ns_enum(::A::
AEnum
e) {
in c_take_ns_enum()
539
if (e == ::A::
AEnum
::AAVal) {
in c_take_ns_enum()
H
A
D
tests.h
8
enum class
AEnum
: uint16_t;
class
122
::A::
AEnum
c_return_ns_enum(uint16_t n);
172
void c_take_ns_enum(::A::
AEnum
e);
/third_party/rust/crates/cxx/tests/
H
A
D
test.rs
91
enm @ ffi::
AEnum
::AAVal => assert_eq!(0, enm.repr),
in test_c_return()
202
check!(ffi::c_take_ns_enum(ffi::
AEnum
::AAVal));
in test_c_take()
Completed in 4 milliseconds