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:in_set
(Results
1 - 10
of
10
) sorted by relevance
/third_party/skia/third_party/externals/spirv-tools/source/
H
A
D
enum_set.h
121
// Returns true if the set contains ANY of the elements of |
in_set
|,
122
// or if |
in_set
| is empty.
123
bool HasAnyOf(const EnumSet<EnumType>&
in_set
) const {
in HasAnyOf()
124
if (
in_set
.IsEmpty()) return true;
in HasAnyOf()
126
if (mask_ &
in_set
.mask_) return true;
in HasAnyOf()
128
if (!overflow_ || !
in_set
.overflow_) return false;
in HasAnyOf()
130
for (uint32_t item : *
in_set
.overflow_) {
in HasAnyOf()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H
A
D
enum_set.h
121
// Returns true if the set contains ANY of the elements of |
in_set
|,
122
// or if |
in_set
| is empty.
123
bool HasAnyOf(const EnumSet<EnumType>&
in_set
) const {
in HasAnyOf()
124
if (
in_set
.IsEmpty()) return true;
in HasAnyOf()
126
if (mask_ &
in_set
.mask_) return true;
in HasAnyOf()
128
if (!overflow_ || !
in_set
.overflow_) return false;
in HasAnyOf()
130
for (uint32_t item : *
in_set
.overflow_) {
in HasAnyOf()
/third_party/spirv-tools/source/
H
A
D
enum_set.h
320
// Returns true if this set contains at least one value contained in `
in_set
`.
321
// Note: If `
in_set
` is empty, this function returns true.
322
bool HasAnyOf(const EnumSet<T>&
in_set
) const {
in HasAnyOf()
323
if (
in_set
.empty()) {
in HasAnyOf()
328
auto rhs =
in_set
.buckets_.cbegin();
in HasAnyOf()
330
while (lhs != buckets_.cend() && rhs !=
in_set
.buckets_.cend()) {
in HasAnyOf()
/third_party/spirv-tools/source/opt/
H
A
D
invocation_interlock_placement_pass.h
108
BlockSet computeReachableBlocks(BlockSet&
in_set
,
/third_party/musl/src/stdio/
H
A
D
vfwscanf.c
56
static int
in_set
(const wchar_t *set, int c)
in in_set()
function
257
if (
in_set
(set, c) == invert)
in vfwscanf()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H
A
D
HexagonCommonGEP.cpp
306
struct
in_set
{
struct
307
in_set
(const NodeSet &S) : NS(S) {}
in in_set()
function
663
NodeVect::iterator NewE = remove_if(Nodes,
in_set
(Erase));
in common()
/third_party/curl/lib/
H
A
D
transfer.c
1040
data->state.in = data->set.
in_set
;
in Curl_init_CONNECT()
H
A
D
urldata.h
1655
void *
in_set
; /* CURLOPT_READDATA */
member
H
A
D
setopt.c
1369
data->set.
in_set
= va_arg(param, void *);
in Curl_vsetopt()
H
A
D
url.c
361
set->
in_set
= stdin; /* default input from stdin */
in Curl_init_userdefined()
Completed in 18 milliseconds