Home
last modified time | relevance | path

Searched refs:lastLocation (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/mlir/examples/toy/Ch7/include/toy/
DLexer.h64 : lastLocation( in Lexer()
94 Location getLastLocation() { return lastLocation; } in getLastLocation()
134 lastLocation.line = curLineNum; in getTok()
135 lastLocation.col = curCol; in getTok()
190 Location lastLocation; variable
/external/llvm-project/mlir/examples/toy/Ch4/include/toy/
DLexer.h63 : lastLocation( in Lexer()
93 Location getLastLocation() { return lastLocation; } in getLastLocation()
133 lastLocation.line = curLineNum; in getTok()
134 lastLocation.col = curCol; in getTok()
187 Location lastLocation; variable
/external/llvm-project/mlir/examples/toy/Ch2/include/toy/
DLexer.h63 : lastLocation( in Lexer()
93 Location getLastLocation() { return lastLocation; } in getLastLocation()
133 lastLocation.line = curLineNum; in getTok()
134 lastLocation.col = curCol; in getTok()
187 Location lastLocation; variable
/external/llvm-project/mlir/examples/toy/Ch3/include/toy/
DLexer.h63 : lastLocation( in Lexer()
93 Location getLastLocation() { return lastLocation; } in getLastLocation()
133 lastLocation.line = curLineNum; in getTok()
134 lastLocation.col = curCol; in getTok()
187 Location lastLocation; variable
/external/llvm-project/mlir/examples/toy/Ch5/include/toy/
DLexer.h63 : lastLocation( in Lexer()
93 Location getLastLocation() { return lastLocation; } in getLastLocation()
133 lastLocation.line = curLineNum; in getTok()
134 lastLocation.col = curCol; in getTok()
187 Location lastLocation; variable
/external/llvm-project/mlir/examples/toy/Ch6/include/toy/
DLexer.h63 : lastLocation( in Lexer()
93 Location getLastLocation() { return lastLocation; } in getLastLocation()
133 lastLocation.line = curLineNum; in getTok()
134 lastLocation.col = curCol; in getTok()
187 Location lastLocation; variable
/external/llvm-project/mlir/examples/toy/Ch1/include/toy/
DLexer.h63 : lastLocation( in Lexer()
93 Location getLastLocation() { return lastLocation; } in getLastLocation()
133 lastLocation.line = curLineNum; in getTok()
134 lastLocation.col = curCol; in getTok()
187 Location lastLocation; variable
/external/swiftshader/src/Reactor/
DReactorDebugInfo.cpp125 static Location lastLocation; in emitPrintLocation() local
131 if(currLocation != lastLocation) in emitPrintLocation()
134 lastLocation = std::move(currLocation); in emitPrintLocation()
/external/mockito/src/main/java/org/mockito/internal/verification/checkers/
DNumberOfInvocationsChecker.java69 Location lastLocation = null; in checkNumberOfInvocationsNonGreedy() local
73 …InvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, Arrays.asList(lastLocation)); in checkNumberOfInvocationsNonGreedy()
77 lastLocation = next.getLocation(); in checkNumberOfInvocationsNonGreedy()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptEditor.java157 int lastLocation = mPreferences.getInt("lasteditpos." + mScript, -1); in onCreate() local
158 if (lastLocation >= 0) { in onCreate()
160 mContentText.setSelection(lastLocation); in onCreate()