Searched refs:getBasicType (Results 1 - 24 of 24) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DTypedConstant.java36 public final int getBasicType() { method in class:TypedConstant
37 return getType().getBasicType();
H A DZeroes.java39 switch (type.getBasicType()) {
H A DCstType.java104 switch (primitiveType.getBasicType()) {
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DTypeBearer.java50 public int getBasicType(); method in interface:TypeBearer
54 * is equivalent to {@code getFrameType().getBasicType()}, and
59 * @see #getBasicType
H A DType.java543 public int getBasicType() { method in class:Type
705 * {@code getBasicType() == Type.BT_OBJECT}.
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DIntermediate.cpp158 if (left->isMatrix() || left->isArray() || left->isVector() || left->getBasicType() == EbtStruct) {
165 if (left->getBasicType() != EbtBool || left->isMatrix() || left->isArray() || left->isVector()) {
173 if (left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool)
293 if (child->getType().getBasicType() != EbtBool || child->getType().isMatrix() || child->getType().isArray() || child->getType().isVector()) {
303 if (child->getType().getBasicType() == EbtStruct || child->getType().isArray())
422 switch (node->getBasicType()) {
467 if (type.getBasicType() != node->getType().getBasicType())
489 switch (node->getBasicType()) {
[all...]
H A DVariableInfo.cpp19 switch (type.getBasicType()) {
83 if (type.getBasicType() == EbtStruct) {
101 ASSERT(type.getBasicType() != EbtStruct);
119 ASSERT(type.getBasicType() == EbtStruct);
H A DParseHelper.cpp350 switch (node->getBasicType()) {
411 if (node->getBasicType() == EbtInt && node->getNominalSize() == 1)
566 if (op != EOpConstructStruct && IsSampler(typed->getBasicType())) {
570 if (typed->getBasicType() == EbtVoid) {
598 if (type->getBasicType() != EbtBool || type->isArray() || type->isMatrix() || type->isVector()) {
657 type.getBasicType() != EbtStruct && IsSampler(type.getBasicType())) {
667 if (IsSampler(type.getBasicType()))
670 if (type.getBasicType() == EbtStruct) {
689 if (constant == 0 || constant->getBasicType() !
[all...]
H A DOutputGLSL.cpp22 switch (type.getBasicType())
33 if (type.getBasicType() == EbtStruct)
102 if ((type.getBasicType() == EbtStruct) &&
160 if (type.getBasicType() == EbtStruct)
258 ASSERT(element->getBasicType() == EbtInt);
565 ASSERT(type.getBasicType() == EbtStruct);
H A Dintermediate.h247 TBasicType getBasicType() const { return type.getBasicType(); } function in class:TIntermTyped
469 bool usesTernaryOperator() const { return getBasicType() != EbtVoid; }
H A Dglslang.y281 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqTemporary, $1->getNominalSize(), $1->isMatrix()));
286 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqConst, $1->getNominalSize()));
288 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqTemporary, $1->getNominalSize()));
290 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqConst));
292 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqTemporary));
320 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqConst, (int) (*$3.string).size()));
327 $$->setType(TType($1->getBasicType(), $1->getPrecision()));
332 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqTemporary, (int) vectorString.size()));
352 $$->setType(TType($1->getBasicType(), $1->getPrecision(),EvqTemporary, $1->getNominalSize()));
358 $$->setType(TType($1->getBasicType(),
[all...]
H A DOutputHLSL.cpp792 else if (node->getLeft()->getBasicType() == EbtStruct)
838 switch (node->getLeft()->getBasicType())
1590 if (constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
1612 if (constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
1634 if (constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
1774 if (type.getBasicType() == EbtStruct)
1810 switch (type.getBasicType())
2086 if (type.getBasicType() == EbtStruct)
H A DTypes.h159 TBasicType getBasicType() const { return type; } function in class:TType
176 if (getBasicType() == EbtStruct)
H A DValidateLimitations.cpp227 TBasicType type = symbol->getBasicType();
451 if (!index->isScalar() || (index->getBasicType() != EbtInt)) {
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DPhiTypeResolver.java74 && (definsn.getResult().getBasicType() == Type.BT_VOID)) {
140 if (rs.getBasicType() != Type.BT_VOID) {
162 if (rs.getBasicType() == Type.BT_VOID){
H A DSCCP.java271 switch (((TypedConstant) cA).getBasicType()) {
302 switch (((TypedConstant) cA).getBasicType()) {
520 resultConstant = simulateMath(insn, result.getBasicType());
H A DEscapeAnalysis.java225 result.getTypeBearer().getBasicType() == Type.BT_OBJECT) {
230 result.getTypeBearer().getBasicType() == Type.BT_OBJECT) {
236 result.getTypeBearer().getBasicType() == Type.BT_OBJECT) {
420 if (putValue.getTypeBearer().getBasicType() != Type.BT_OBJECT) {
H A DLiteralOpUpgrader.java154 if (type.isConstant() && type.getBasicType() == Type.BT_INT) {
H A DSsaRenamer.java347 if (newVersion.getBasicType() != Type.BT_VOID
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DRopToDop.java502 switch (resultReg.getBasicType()) {
525 int basicType = ref.getBasicType();
538 int basicType = ref.getBasicType();
551 int basicType = ref.getBasicType();
564 int basicType = ref.getBasicType();
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpec.java307 public final int getBasicType() { method in class:RegisterSpec
308 return type.getBasicType();
H A DRops.java1682 switch (type.getBasicType()) {
1699 switch (type.getBasicType()) {
1784 switch (type.getBasicType()) {
1807 switch (type.getBasicType()) {
1833 switch (elementType.getBasicType()) {
1892 switch (type.getBasicType()) {
1915 switch (type.getBasicType()) {
1938 switch (type.getBasicType()) {
1961 switch (type.getBasicType()) {
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java750 if (sourceType.getBasicType() == BT_INT) {
751 switch (targetType.getBasicType()) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 370 milliseconds