Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Djavascript.js103 else if (state.lastType == "operator" || state.lastType == "keyword c" ||
104 /^[\[{}\(,;:]$/.test(state.lastType)) {
125 return (known && state.lastType != ".") ? ret(known.type, known.style, word) :
410 lastType: null,
429 state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type;
444 …if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType ==…
448 …return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? indentUnit : 0);
/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/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.h2320 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()