Searched refs:LT (Results 1 - 25 of 65) sorted by relevance

123

/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DLLkParser.hpp49 virtual inline RefToken LT(unsigned int i) function in class:antlr::LLkParser
51 return inputState->getInput().LT(i);
H A DParser.hpp90 virtual RefToken LT(unsigned int i)=0;
176 throw MismatchedTokenException(getTokenNames(), getNumTokens(), LT(1), t, false, getFilename());
180 // mark token as consumed -- fetch next token deferred until LA/LT
190 throw MismatchedTokenException(getTokenNames(), getNumTokens(), LT(1), t, true, getFilename());
194 // mark token as consumed -- fetch next token deferred until LA/LT
217 throw MismatchedTokenException(getTokenNames(), getNumTokens(), LT(1), b, false, getFilename());
221 // mark token as consumed -- fetch next token deferred until LA/LT
H A DTokenBuffer.hpp24 * guess mode (testing syntactic predicate), or when LT(i>k) is referenced.
26 * token is not done by conume(), but deferred until needed by LA or LT.
55 RefToken LT( unsigned int i );
92 /// Number of calls to consume() since last LA() or LT() call
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A DRequirementParser.cpp152 throw antlr::NoViableAltException(LT(1), getFilename());
193 if ( _cnt4>=1 ) { goto _loop4; } else {throw antlr::NoViableAltException(LT(1), getFilename());}
248 stype = LT(1);
255 throw antlr::NoViableAltException(LT(1), getFilename());
390 throw antlr::NoViableAltException(LT(1), getFilename());
414 throw antlr::NoViableAltException(LT(1), getFilename());
470 throw antlr::NoViableAltException(LT(1), getFilename());
516 throw antlr::NoViableAltException(LT(1), getFilename());
538 throw antlr::NoViableAltException(LT(1), getFilename());
565 throw antlr::NoViableAltException(LT(
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A DRequirementParser.cpp152 throw antlr::NoViableAltException(LT(1), getFilename());
193 if ( _cnt4>=1 ) { goto _loop4; } else {throw antlr::NoViableAltException(LT(1), getFilename());}
248 stype = LT(1);
255 throw antlr::NoViableAltException(LT(1), getFilename());
390 throw antlr::NoViableAltException(LT(1), getFilename());
414 throw antlr::NoViableAltException(LT(1), getFilename());
470 throw antlr::NoViableAltException(LT(1), getFilename());
516 throw antlr::NoViableAltException(LT(1), getFilename());
538 throw antlr::NoViableAltException(LT(1), getFilename());
565 throw antlr::NoViableAltException(LT(
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DParser.cpp93 + "; LA(1)==" + LT(1)->getText()
104 + "; LA(1)==" + LT(1)->getText()
H A DTokenBuffer.cpp19 * guess mode (testing syntactic predicate), or when LT(i>k) is referenced.
21 * token is not done by conume(), but deferred until needed by LA or LT.
62 RefToken TokenBuffer::LT(unsigned int i) function in class:antlr::TokenBuffer
H A DLLkParser.cpp57 temp = LT(i)->getText().c_str();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTX.h35 LT, enumerator in enum:llvm::NVPTXCC::CondCodes
46 case NVPTXCC::LT: return "lt";
/macosx-10.9.5/lsof-52/lsof/tests/
H A DMakefile29 @rm -f config.LT*
58 @rm -f config.LT*
69 rm -f ${BASTST} ${STDTST} ${OPTTST} *.o *.err *.out config.LT*
114 @rm -f config.LT*
130 @rm -f config.LT*
135 @rm -f config.LT*
147 rm -f config.LT*; \
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/MBlaze/
H A DMBlazeISelLowering.h31 LT, enumerator in enum:llvm::MBlazeCC::CC
42 case LT: return GE;
43 case GE: return LT;
54 case LT: return "lt";
/macosx-10.9.5/awk-18/src/
H A Dytab.h72 LT = 288, enumerator in enum:yytokentype
169 #define LT 288 macro
H A Dytabh.bak61 LT = 287,
156 #define LT 287
H A Dawkgram.y54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN
81 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|'
231 | pattern LT pattern { $$ = op2($2, $1, $3); }
373 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); }
374 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); }
470 case LE: case LT: case EQ: case NE: case GT: case GE:
H A Dmaketab.c49 { LT, "relop", " < " },
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/csv/
H A Dcsv.h65 typedef enum { EQ=1, NEQ, GT, GTEQ, LT, LTEQ, WC, NWC } OPERATOR; enumerator in enum:__anon328
H A Dutil.c198 case LT:
239 case LT:
265 case LT:
294 case LT:
H A DDbRecord.c284 if (op == LT || op == LTEQ || op == NEQ || op == WC || op == NWC)
304 if (op == LT || op == LTEQ || op == EQ)
420 if (op == EQ || op == LT || op == LTEQ)
428 cursor_flags = op == LT || op == LTEQ ? DB_FIRST : DB_SET_RANGE;
452 if (op == EQ || op == LT || op == LTEQ)
H A Dquery.c159 operator = LT;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h41 LT, // Less than Less than, or unordered enumerator in enum:llvm::ARMCC::CondCodes
60 case GE: return LT;
61 case LT: return GE;
81 case ARMCC::LT: return "lt";
/macosx-10.9.5/ruby-104/ruby/lib/rexml/
H A Dentity.rb158 LT = Entity.new( 'lt', '<' )
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DGlobalValue.h226 void setLinkage(LinkageTypes LT) { Linkage = LT; } argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/Linker/
H A DLinkModules.cpp398 GlobalValue::LinkageTypes &LT,
497 GlobalValue::LinkageTypes &LT,
514 LT = Src->getLinkage();
519 LT = Src->getLinkage();
522 LT = Dest->getLinkage();
527 LT = Src->getLinkage();
536 LT = Src->getLinkage();
539 LT = Dest->getLinkage();
545 LT = Dest->getLinkage();
548 LT
496 getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, GlobalValue::LinkageTypes &LT, GlobalValue::VisibilityTypes &Vis, bool &LinkFromSrc) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/
H A Dexpr.c119 #define LT '<' macro
672 (curtok == LT) ||
684 else if (op == LT)
993 case LT:
1122 else if ((c == LT) && (c1 == EQ))
1124 else if ((c == LT) && (c1 == LT))
/macosx-10.9.5/ncurses-42/ncurses/progs/
H A Dtset.c274 #define LT 0x04 macro
277 #define LE (LT | EQ)
420 mapp->conditional |= LT;
423 if (mapp->conditional & LT)
463 mapp->conditional = ~mapp->conditional & (EQ | GT | LT);
488 if (mapp->conditional & LT)
523 case LT:

Completed in 416 milliseconds

123