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

123

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
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/clang/test/CodeGen/
H A Davx-builtins.c27 __m128i test_mm_cmpestrm(__m128i A, int LA, __m128i B, int LB) { argument
29 return _mm_cmpestrm(A, LA, B, LB, 7);
32 int test_mm_cmpestri(__m128i A, int LA, __m128i B, int LB) { argument
34 return _mm_cmpestri(A, LA, B, LB, 7);
37 int test_mm_cmpestra(__m128i A, int LA, __m128i B, int LB) { argument
39 return _mm_cmpestra(A, LA, B, LB, 7);
42 int test_mm_cmpestrc(__m128i A, int LA, __m128i B, int LB) { argument
44 return _mm_cmpestrc(A, LA, B, LB, 7);
47 int test_mm_cmpestro(__m128i A, int LA, __m128i B, int LB) { argument
49 return _mm_cmpestro(A, LA,
52 test_mm_cmpestrs(__m128i A, int LA, __m128i B, int LB) argument
57 test_mm_cmpestrz(__m128i A, int LA, __m128i B, int LB) argument
[all...]
/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/bison/src/
H A Dlalr.c57 /* LA is an NLA by NTOKENS matrix of bits. LA[l, i] is 1 if the rule
59 token is symbol i. If LA[l, i] and LA[l, j] are both 1 for i != j,
62 static bitsetv LA = NULL; variable
211 sp->next = lookback[(s->reductions->lookahead_tokens - LA) + ri];
213 lookback[(s->reductions->lookahead_tokens - LA) + ri] = sp;
313 bitset_or (LA[i], LA[i], goto_follows[sp->value]);
363 | Compute LA, NL
[all...]
/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/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp512 TargetLowering::LegalizeAction LA = TargetLowering::Expand; local
516 LA = getTLI()->getTruncStoreAction(LT.second, MemVT.getSimpleVT());
518 LA = getTLI()->getLoadExtAction(ISD::EXTLOAD, MemVT.getSimpleVT());
521 if (LA != TargetLowering::Legal && LA != TargetLowering::Custom) {
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscam02.c50 cmsFloat64Number LA, Yb; member in struct:__anon27787
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/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp449 Attribute LA = *LI; local
451 if (LA < RA)
453 if (RA < LA)
552 const ConstantArray *LA = cast<ConstantArray>(L); local
559 if (int Res = cmpConstants(cast<Constant>(LA->getOperand(i)),
/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...]
H A DAntlr.Runtime.Tree.pas1397 function LA(I: Integer): Integer; virtual;
2027 function LA(I: Integer): Integer; virtual;
3166 function TCommonTreeNodeStream.LA(I: Integer): Integer;
3173 Result := Char(LA(I));
4652 function TUnBufferedTreeNodeStream.LA(I: Integer): Integer;
4665 Result := Char(LA(I));
4695 LA: TANTLRInterfaceArray;
4723 SetLength(LA,N);
4726 LA[I] := LT(K);
4729 State.LookAhead := LA;
[all...]
/external/deqp/framework/common/
H A DtcuTexture.hpp48 LA, enumerator in enum:tcu::TextureFormat::ChannelOrder
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp506 if (const Argument *LA = dyn_cast<Argument>(LV)) {
508 unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo();
541 const APInt &LA = LC->getValue()->getValue(); local
543 unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
546 return LA.ult(RA) ? -1 : 1;
550 const SCEVAddRecExpr *LA = cast<SCEVAddRecExpr>(LHS); local
554 const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
563 unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands();
569 long X = compare(LA->getOperand(i), RA->getOperand(i));
3990 const SCEV *LA
[all...]
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp141 unsigned LA = std::max(unsigned(PostAlign), LogAlign); local
142 if (!LA)
145 return PO + UnknownPadding(LA, internalKnownBits());
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java654 LA(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum

Completed in 3815 milliseconds

123