Home
last modified time | relevance | path

Searched refs:lastType (Results 1 – 6 of 6) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DPlainInsn.java107 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer(); in withSourceLiteral() local
109 if (!lastType.isConstant()) { in withSourceLiteral()
123 Constant cst = (Constant) lastType; in withSourceLiteral()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Djavascript.js117 } else if (state.lastType == "operator" || state.lastType == "keyword c" ||
118 state.lastType == "sof" || /^[\[{}\(,;:]$/.test(state.lastType)) {
138 return (known && state.lastType != ".") ? ret(known.type, known.style, word) :
606 lastType: "sof", property
628 state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type;
647 …if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType ==…
651 …return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? statementIndent…
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutTests.cpp161 const glu::VarType& lastType = lastVar.getType(); in generateBlock() local
162 …const bool isUnsizedArr = lastType.isArrayType() && (lastType.getArraySize() == glu::VarType::UN… in generateBlock()
/external/skia/src/animator/
DSkScriptTokenizer.cpp702 SkOperand2::OpType lastType = fValueStack.top().fType; in innerScript() local
712 operand.fType = lastType; in innerScript()
/external/chromium_org/third_party/skia/src/animator/
DSkScriptTokenizer.cpp702 SkOperand2::OpType lastType = fValueStack.top().fType; in innerScript() local
712 operand.fType = lastType; in innerScript()
/external/clang/include/clang/AST/
DDecl.h2404 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()