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:arg0Type
(Results
1 - 4
of
4
) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
H
A
D
ConvertUnsupportedConstructorsToFunctionCalls.cpp
193
const TType &
arg0Type
= arguments[0]->getAsTyped()->getType();
variable
209
if (arguments.size() == 1 &&
arg0Type
== type)
223
arguments.size() == 1 && type.isScalar() &&
arg0Type
.isScalar();
225
arg0Type
.isVector() &&
226
type.getNominalSize() ==
arg0Type
.getNominalSize();
228
arguments.size() == 1 && type.isMatrix() &&
arg0Type
.isMatrix() &&
229
type.getCols() ==
arg0Type
.getCols() && type.getRows() ==
arg0Type
.getRows();
271
if (arguments.size() == 1 &&
arg0Type
.isScalar())
282
if (arguments.size() == 1 &&
arg0Type
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H
A
D
OutputSPIRV.cpp
1310
const TType &
arg0Type
= arguments[0]->getAsTyped()->getType();
in createConstructor()
local
1386
const bool isSingleScalarCast = arguments.size() == 1 && type.isScalar() &&
arg0Type
.isScalar();
in createConstructor()
1388
arg0Type
.isVector() &&
in createConstructor()
1389
type.getNominalSize() ==
arg0Type
.getNominalSize();
in createConstructor()
1391
arg0Type
.isMatrix() && type.getCols() ==
arg0Type
.getCols() &&
in createConstructor()
1392
type.getRows() ==
arg0Type
.getRows();
in createConstructor()
1395
return castBasicType(parameters[0],
arg0Type
, type, nullptr);
in createConstructor()
1406
if (arguments.size() == 1 &&
arg0Type
.isScalar())
in createConstructor()
1408
return createConstructorVectorFromScalar(
arg0Type
, typ
in createConstructor()
1451
const TType &
arg0Type
= node->getChildNode(0)->getAsTyped()->getType();
createConstructorScalarFromNonScalar()
local
1502
const TType &
arg0Type
= node->getChildNode(0)->getAsTyped()->getType();
createConstructorVectorFromMatrix()
local
[all...]
/third_party/skia/src/sksl/codegen/
H
A
D
SkSLGLSLCodeGenerator.cpp
595
const Type&
arg0Type
= arguments[0]->type();
in writeFunctionCall()
local
597
switch (
arg0Type
.dimensions()) {
in writeFunctionCall()
610
if (
arg0Type
!= *fContext.fTypes.fSamplerExternalOES) {
in writeFunctionCall()
H
A
D
SkSLSPIRVCodeGenerator.cpp
1601
const Type&
arg0Type
= c.arguments()[0]->type();
in writeMatrixConstructor()
local
1610
if (arguments.size() == 1 &&
arg0Type
.isVector()) {
in writeMatrixConstructor()
1613
SkASSERT(
arg0Type
.columns() == 4);
in writeMatrixConstructor()
Completed in 14 milliseconds