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:ABEnum
(Results
1 - 4
of
4
) sorted by relevance
/third_party/rust/crates/cxx/tests/ffi/
H
A
D
lib.rs
58
enum
ABEnum
{
enum
128
fn c_return_nested_ns_enum(n: u16) ->
ABEnum
;
in c_return_nested_ns_enum()
172
fn c_take_nested_ns_enum(e:
ABEnum
);
in c_take_nested_ns_enum()
H
A
D
tests.cc
208
::A::B::
ABEnum
c_return_nested_ns_enum(uint16_t n) {
in c_return_nested_ns_enum()
209
if (n <= static_cast<uint16_t>(::A::B::
ABEnum
::ABAVal)) {
in c_return_nested_ns_enum()
210
return ::A::B::
ABEnum
::ABAVal;
in c_return_nested_ns_enum()
211
} else if (n <= static_cast<uint16_t>(::A::B::
ABEnum
::ABBVal)) {
in c_return_nested_ns_enum()
212
return ::A::B::
ABEnum
::ABBVal;
in c_return_nested_ns_enum()
214
return ::A::B::
ABEnum
::ABCVal;
in c_return_nested_ns_enum()
544
void c_take_nested_ns_enum(::A::B::
ABEnum
e) {
in c_take_nested_ns_enum()
545
if (e == ::A::B::
ABEnum
::ABAVal) {
in c_take_nested_ns_enum()
H
A
D
tests.h
11
enum class
ABEnum
: uint16_t;
class in A::AEnum
123
::A::B::
ABEnum
c_return_nested_ns_enum(uint16_t n);
173
void c_take_nested_ns_enum(::A::B::
ABEnum
e);
/third_party/rust/crates/cxx/tests/
H
A
D
test.rs
95
enm @ ffi::
ABEnum
::ABAVal => assert_eq!(0, enm.repr),
in test_c_return()
203
check!(ffi::c_take_nested_ns_enum(ffi::
ABEnum
::ABAVal));
in test_c_take()
Completed in 5 milliseconds