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:else_stmt
(Results
1 - 12
of
12
) sorted by relevance
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H
A
D
parser_impl_else_stmt_test.cc
24
auto e = p->
else_stmt
();
in TEST_F()
36
auto e = p->
else_stmt
();
in TEST_F()
46
auto e = p->
else_stmt
();
in TEST_F()
H
A
D
parser_impl.h
528
/// Parses a `
else_stmt
` grammar element
530
Maybe<const ast::ElseStatement*>
else_stmt
();
H
A
D
parser_impl.cc
1786
// : IF paren_rhs_stmt body_stmt elseif_stmt?
else_stmt
?
1804
auto el =
else_stmt
();
in if_stmt()
1841
//
else_stmt
1843
Maybe<const ast::ElseStatement*> ParserImpl::
else_stmt
() {
in else_stmt()
function in ParserImpl
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H
A
D
lp_bld_nir.h
201
void (*
else_stmt
)(struct lp_build_nir_context *bld_base);
member
H
A
D
lp_bld_nir_soa.c
1888
static void
else_stmt
(struct lp_build_nir_context *bld_base)
in else_stmt()
function
2730
bld.bld_base.
else_stmt
=
else_stmt
;
in lp_build_nir_soa()
H
A
D
lp_bld_nir.c
2607
bld_base->
else_stmt
(bld_base);
in visit_if()
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H
A
D
function.h
718
/// @param
else_stmt
the statement for the else clause of the if, or nullptr
722
const ast::Statement*
else_stmt
) const;
H
A
D
function.cc
3325
const ast::Statement*
else_stmt
) const {
in MakeSimpleIf()
3326
if ((then_stmt == nullptr) && (
else_stmt
== nullptr)) {
in MakeSimpleIf()
3330
if (
else_stmt
!= nullptr) {
in MakeSimpleIf()
3331
ast::StatementList stmts{
else_stmt
};
in MakeSimpleIf()
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H
A
D
builder.cc
3533
auto*
else_stmt
= else_stmts[cur_else_idx];
in GenerateConditionalBlock()
3535
if (!
else_stmt
->condition) {
in GenerateConditionalBlock()
3536
if (!GenerateBlockStatement(
else_stmt
->body)) {
in GenerateConditionalBlock()
3540
if (!GenerateConditionalBlock(
else_stmt
->condition,
else_stmt
->body,
in GenerateConditionalBlock()
3545
if (!LastIsTerminator(
else_stmt
->body)) {
in GenerateConditionalBlock()
/third_party/mesa3d/src/compiler/nir/
H
A
D
nir.c
631
nir_block *
else_stmt
= nir_block_create(shader);
in nir_if_create()
local
633
exec_list_push_tail(&if_stmt->else_list, &
else_stmt
->cf_node.node);
in nir_if_create()
634
else_stmt
->cf_node.parent = &if_stmt->cf_node;
in nir_if_create()
/third_party/skia/third_party/externals/tint/src/resolver/
H
A
D
resolver.cc
938
for (auto*
else_stmt
: stmt->else_statements) {
in IfStatement()
939
Mark(
else_stmt
);
in IfStatement()
940
auto* else_sem = ElseStatement(
else_stmt
);
in IfStatement()
H
A
D
resolver_test.cc
164
auto*
else_stmt
= create<ast::ElseStatement>(else_cond, else_body);
in TEST_F()
local
173
create<ast::IfStatement>(cond, body, ast::ElseStatementList{
else_stmt
});
in TEST_F()
191
EXPECT_EQ(StmtOf(else_cond),
else_stmt
);
in TEST_F()
local
Completed in 41 milliseconds