Searched defs:LA (Results 26 - 50 of 64) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java114 public int LA(int i) { method in class:ANTLRStringStream
119 i++; // e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
126 //System.out.println("char LA("+i+")=EOF; p="+p);
129 //System.out.println("char LA("+i+")="+(char)data[p+i-1]+"; p="+p);
130 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
135 return LA(i);
140 * be returned from LA(1).
H A DBufferedTokenStream.java162 public int LA(int i) { return LT(i).getType(); } method in class:BufferedTokenStream
H A DLegacyCommonTokenStream.java310 public int LA(int i) { method in class:LegacyCommonTokenStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTokenStream.java88 public int LA(int i) { method in class:DebugTokenStream
93 return input.LA(i);
H A DDebugTreeNodeStream.java83 public int LA(int i) { method in class:DebugTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs242 public virtual int LA(int i) { method in class:Antlr.Runtime.BufferedTokenStream
H A DLegacyCommonTokenStream.cs370 public virtual int LA(int i) { method in class:Antlr.Runtime.LegacyCommonTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs275 public virtual int LA(int i) method in class:Antlr.Runtime.BufferedTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs453 public virtual int LA( int i ) method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.java120 public int LA(int i) { return adaptor.getType(LT(i)); } method in class:CommonTreeNodeStream
H A DBufferedTreeNodeStream.java305 public int LA(int i) { method in class:BufferedTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs384 public virtual int LA(int i) { method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py63 def LA(self, i): member in class:IntStream
66 Negative indexes are allowed. LA(-1) is previous token (token
67 just matched). LA(-i) where i is before first token should
154 The index is 0..n-1. A seek to position i means that LA(1) will
155 return the ith symbol. So, seeking to 0 means LA(1) will return the
209 LA(i). This will be used for labels in the generated
211 probably better to be 32-bit clean and be consistent with LA.
402 def LA(self, i): member in class:ANTLRStringStream
407 i += 1 # e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
421 i += 1 # e.g., translate LA(
888 def LA(self, i): member in class:CommonTokenStream
[all...]
H A Ddebug.py147 def LA(self, i): member in class:DebugTokenStream
482 triggered by both LA and LT calls. The debugger will want to know
H A Dtree.py2014 def LA(self, i): member in class:CommonTreeNodeStream
/external/libffi/src/mips/
H A Dffitarget.h162 # define LA dla macro
166 # define LA la macro
/external/pdfium/third_party/lcms/src/
H A Dcmscam02.c50 cmsFloat64Number LA, Yb; member in struct:__anon18081
83 k = 1.0 / ((5.0 * pMod->LA) + 1.0);
84 FL = 0.2 * pow(k, 4.0) * (5.0 * pMod->LA) + 0.1 *
86 (pow((5.0 * pMod->LA), (1.0 / 3.0)));
96 D = pMod->F - (1.0/3.6)*(exp(((-pMod ->LA-42) / 92.0)));
375 lpMod -> LA = pVC ->La;
/external/python/cpython2/Modules/_ctypes/libffi/src/mips/
H A Dffitarget.h162 # define LA dla macro
166 # define LA la macro
/external/python/cpython3/Modules/_ctypes/libffi/src/mips/
H A Dffitarget.h162 # define LA dla macro
166 # define LA la macro
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h99 void setLoadAddress(uint64_t LA) { LoadAddress = LA; } argument
/external/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h538 TargetLowering::LegalizeAction LA = TargetLowering::Expand; local
541 LA = getTLI()->getTruncStoreAction(LT.second, MemVT);
543 LA = getTLI()->getLoadExtAction(ISD::EXTLOAD, LT.second, MemVT);
545 if (LA != TargetLowering::Legal && LA != TargetLowering::Custom) {
/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp989 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT); local
991 assert((LA == TypeLegal || LA == TypeSoftenFloat ||
995 if (LA == TypeSplitVector)
996 return LegalizeKind(LA,
999 if (LA == TypeScalarizeVector)
1000 return LegalizeKind(LA, SVT.getVectorElementType());
1001 return LegalizeKind(LA, NVT);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas74 /// Negative indexes are allowed. LA(-1) is previous token (token just matched).
75 /// LA(-i) where i is before first token should yield -1, invalid char or EOF.
77 function LA(I: Integer): Integer; function
162 /// The index is 0..N-1. A seek to position i means that LA(1) will return
163 /// the ith symbol. So, seeking to 0 means LA(1) will return the first
199 /// LA(I). This will be used for labels in the generated lexer code.
201 /// better to be 32-bit clean and be consistent with LA.
1652 function LA(I: Integer): Integer; virtual; function
2032 /// LA(1) is not what we are looking for. If LA(
[all...]
/external/deqp/framework/common/
H A DtcuTexture.hpp49 LA, enumerator in enum:tcu::TextureFormat::ChannelOrder
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp503 if (const Argument *LA = dyn_cast<Argument>(LV)) {
505 unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo();
538 const APInt &LA = LC->getAPInt(); local
540 unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
543 return LA.ult(RA) ? -1 : 1;
547 const SCEVAddRecExpr *LA = cast<SCEVAddRecExpr>(LHS); local
551 const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
560 unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands();
566 long X = compare(LA->getOperand(i), RA->getOperand(i));
4255 const SCEV *LA
[all...]

Completed in 1387 milliseconds

123