HomeSort by relevance Sort by last modified time
    Searched refs:varType (Results 1 - 9 of 9) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Uniform.java 59 protected VarType varType;
73 oc.write(varType, "varType", null);
75 switch (varType){
120 varType = ic.readEnum("varType", VarType.class, null);
122 switch (varType){
167 if (varType != null)
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Declarator.java 25 protected int varType;
32 varType = type;
40 varType = CLASS;
51 varType = type;
60 Declarator d = new Declarator(this.varType, this.arrayDim + dim);
70 public int getType() { return varType; }
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ShaderLang.cpp 34 static void getVariableInfo(ShShaderInfo varType,
44 ASSERT((varType == SH_ACTIVE_ATTRIBUTES) ||
45 (varType == SH_ACTIVE_UNIFORMS));
52 const TVariableInfoList& varList = varType == SH_ACTIVE_ATTRIBUTES ?
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Filter.java 380 Class varType,
390 MutableFrameFormat format = ObjectFormat.fromClass(varType,
609 Class varType = generator.type();
611 addProgramPort(name, varName, field, varType, hasDefault);
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 780 int varType = d.getType();
790 atArrayVariableAssign((ArrayInit)right, varType, varArray, varClass);
792 atAssignCore(expr, op, right, varType, varArray, varClass);
795 if (is2word(varType, varArray))
802 else if (varType == DOUBLE)
804 else if (varType == FLOAT)
806 else if (varType == LONG)
808 else if (isRefType(varType))
813 exprType = varType;
819 int varType, int varArray, String varClass) throws CompileError
    [all...]
MemberCodeGen.java 410 protected void atArrayVariableAssign(ArrayInit init, int varType,
412 atNewArrayExpr2(varType, null, varClass, init);
    [all...]
TypeChecker.java 241 int varType = d.getType();
249 exprType = varType;
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 440 QualType varType = varDecl->getType();
442 if (const ReferenceType *refType = varType->getAs<ReferenceType>())
443 varType = refType->getPointeeType();
445 const CXXRecordDecl *recordDecl = varType->getAsCXXRecordDecl();
    [all...]

Completed in 193 milliseconds