HomeSort by relevance Sort by last modified time
    Searched refs:getBasicType (Results 1 - 25 of 35) sorted by null

1 2

  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
TypedConstant.java 36 public final int getBasicType() {
37 return getType().getBasicType();
Zeroes.java 39 switch (type.getBasicType()) {
CstType.java 104 switch (primitiveType.getBasicType()) {
  /dalvik/dx/src/com/android/dx/rop/cst/
TypedConstant.java 36 public final int getBasicType() {
37 return getType().getBasicType();
Zeroes.java 39 switch (type.getBasicType()) {
CstType.java 104 switch (primitiveType.getBasicType()) {
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeBearer.java 50 public int getBasicType();
54 * is equivalent to {@code getFrameType().getBasicType()}, and
59 * @see #getBasicType
  /dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java 50 public int getBasicType();
54 * is equivalent to {@code getFrameType().getBasicType()}, and
59 * @see #getBasicType
  /dalvik/dx/src/com/android/dx/cf/code/
ReturnAddress.java 70 public int getBasicType() {
71 return Type.RETURN_ADDRESS.getBasicType();
Merger.java 229 int superBt = supertype.getBasicType();
230 int subBt = subtype.getBasicType();
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Intermediate.cpp 158 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...]
VariableInfo.cpp 19 switch (type.getBasicType()) {
83 if (type.getBasicType() == EbtStruct) {
101 ASSERT(type.getBasicType() != EbtStruct);
119 ASSERT(type.getBasicType() == EbtStruct);
ParseHelper.cpp 350 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() != EbtInt)
    [all...]
OutputGLSL.cpp 22 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);
intermediate.h 247 TBasicType getBasicType() const { return type.getBasicType(); }
469 bool usesTernaryOperator() const { return getBasicType() != EbtVoid; }
glslang.y 281 $$->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(), $1->getPrecision()))
    [all...]
OutputHLSL.cpp 792 else if (node->getLeft()->getBasicType() == EbtStruct)
838 switch (node->getLeft()->getBasicType())
    [all...]
Types.h 159 TBasicType getBasicType() const { return type; }
176 if (getBasicType() == EbtStruct)
ValidateLimitations.cpp 227 TBasicType type = symbol->getBasicType();
451 if (!index->isScalar() || (index->getBasicType() != EbtInt)) {
  /dalvik/dx/src/com/android/dx/ssa/
PhiTypeResolver.java 74 && (definsn.getResult().getBasicType() == Type.BT_VOID)) {
140 if (rs.getBasicType() != Type.BT_VOID) {
162 if (rs.getBasicType() == Type.BT_VOID){
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 330 switch (resultReg.getBasicType()) {
353 int basicType = ref.getBasicType();
366 int basicType = ref.getBasicType();
379 int basicType = ref.getBasicType();
392 int basicType = ref.getBasicType();
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 502 switch (resultReg.getBasicType()) {
525 int basicType = ref.getBasicType();
538 int basicType = ref.getBasicType();
551 int basicType = ref.getBasicType();
564 int basicType = ref.getBasicType();
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 302 public final int getBasicType() {
303 return type.getBasicType();
Rops.java     [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 307 public final int getBasicType() {
308 return type.getBasicType();

Completed in 646 milliseconds

1 2