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:execCtx
(Results
1 - 10
of
10
) sorted by relevance
/third_party/vk-gl-cts/framework/randomshaders/
H
A
D
rsgStatement.cpp
134
void ExpressionStatement::execute (ExecutionContext&
execCtx
) const
in execute()
136
m_expression->evaluate(
execCtx
);
in execute()
213
void BlockStatement::execute (ExecutionContext&
execCtx
) const
in execute()
216
(*i)->execute(
execCtx
);
in execute()
345
void DeclarationStatement::execute (ExecutionContext&
execCtx
) const
in execute()
349
m_expression->evaluate(
execCtx
);
in execute()
350
execCtx
.getValue(m_variable) = m_expression->getValue().value();
in execute()
496
void ConditionalStatement::execute (ExecutionContext&
execCtx
) const
in execute()
499
m_condition->evaluate(
execCtx
);
in execute()
507
execCtx
in execute()
[all...]
H
A
D
rsgStatement.hpp
45
virtual void execute (ExecutionContext&
execCtx
) const = DE_NULL;
63
void execute (ExecutionContext&
execCtx
) const;
79
void execute (ExecutionContext&
execCtx
) const;
99
void execute (ExecutionContext&
execCtx
) const;
120
void execute (ExecutionContext&
execCtx
) const;
146
void execute (ExecutionContext&
execCtx
) const;
H
A
D
rsgProgramExecutor.cpp
221
ExecutionContext
execCtx
(m_samplers2D, m_samplersCube);
in execute()
230
execCtx
.getValue(uniformIter->getVariable()) = uniformIter->getValue().value();
in execute()
241
ExecValueAccess access =
execCtx
.getValue(input->getVariable());
in execute()
255
vertexShader.execute(
execCtx
);
in execute()
265
ExecConstValueAccess access =
execCtx
.getValue(output);
in execute()
279
ExecutionContext
execCtx
(m_samplers2D, m_samplersCube);
in execute()
283
execCtx
.getValue(i->getVariable()) = i->getValue().value();
in execute()
317
ExecValueAccess access =
execCtx
.getValue(input->getVariable());
in execute()
339
fragmentShader.execute(
execCtx
);
in execute()
342
ExecConstValueAccess colorValue =
execCtx
in execute()
[all...]
H
A
D
rsgShader.cpp
115
void Shader::execute (ExecutionContext&
execCtx
) const
in execute()
119
(*i)->execute(
execCtx
);
in execute()
122
m_mainFunction.getBody().execute(
execCtx
);
in execute()
H
A
D
rsgExpression.hpp
221
void evaluate (ExecutionContext&
execCtx
) { m_child->evaluate(
execCtx
); }
in evaluate()
argument
240
void evaluate (ExecutionContext&
execCtx
);
262
void evaluate (ExecutionContext&
execCtx
);
H
A
D
rsgExpression.cpp
1410
void SwizzleOp::evaluate (ExecutionContext&
execCtx
)
in evaluate()
argument
1412
m_child->evaluate(
execCtx
);
in evaluate()
1652
void TexLookup::evaluate (ExecutionContext&
execCtx
)
in evaluate()
argument
1655
m_coordExpr->evaluate(
execCtx
);
in evaluate()
1657
m_lodBiasExpr->evaluate(
execCtx
);
in evaluate()
1666
const Sampler2D& tex =
execCtx
.getSampler2D(m_sampler);
in evaluate()
1682
const Sampler2D& tex =
execCtx
.getSampler2D(m_sampler);
in evaluate()
1698
const Sampler2D& tex =
execCtx
.getSampler2D(m_sampler);
in evaluate()
1715
const Sampler2D& tex =
execCtx
.getSampler2D(m_sampler);
in evaluate()
1732
const SamplerCube& tex =
execCtx
in evaluate()
[all...]
H
A
D
rsgBuiltinFunctions.hpp
45
void evaluate (ExecutionContext&
execCtx
);
103
void UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::evaluate (ExecutionContext&
execCtx
)
in evaluate()
argument
105
m_child->evaluate(
execCtx
);
in evaluate()
H
A
D
rsgBinaryOps.cpp
48
void evaluate (ExecutionContext&
execCtx
);
89
void CustomAbsOp::evaluate (ExecutionContext&
execCtx
)
in evaluate()
argument
91
m_child->evaluate(
execCtx
);
in evaluate()
351
void BinaryOp<Precedence, Assoc>::evaluate (ExecutionContext&
execCtx
)
in evaluate()
argument
353
m_leftValueExpr->evaluate(
execCtx
);
in evaluate()
354
m_rightValueExpr->evaluate(
execCtx
);
in evaluate()
H
A
D
rsgShader.hpp
97
void execute (ExecutionContext&
execCtx
) const;
H
A
D
rsgBinaryOps.hpp
49
void evaluate (ExecutionContext&
execCtx
);
Completed in 10 milliseconds