Lines Matching refs:Case

349                             .Case("int", tgtok::Int)  in LexIdentifier()
350 .Case("bit", tgtok::Bit) in LexIdentifier()
351 .Case("bits", tgtok::Bits) in LexIdentifier()
352 .Case("string", tgtok::String) in LexIdentifier()
353 .Case("list", tgtok::List) in LexIdentifier()
354 .Case("code", tgtok::Code) in LexIdentifier()
355 .Case("dag", tgtok::Dag) in LexIdentifier()
356 .Case("class", tgtok::Class) in LexIdentifier()
357 .Case("def", tgtok::Def) in LexIdentifier()
358 .Case("true", tgtok::TrueVal) in LexIdentifier()
359 .Case("false", tgtok::FalseVal) in LexIdentifier()
360 .Case("foreach", tgtok::Foreach) in LexIdentifier()
361 .Case("defm", tgtok::Defm) in LexIdentifier()
362 .Case("defset", tgtok::Defset) in LexIdentifier()
363 .Case("deftype", tgtok::Deftype) in LexIdentifier()
364 .Case("multiclass", tgtok::MultiClass) in LexIdentifier()
365 .Case("field", tgtok::Field) in LexIdentifier()
366 .Case("let", tgtok::Let) in LexIdentifier()
367 .Case("in", tgtok::In) in LexIdentifier()
368 .Case("defvar", tgtok::Defvar) in LexIdentifier()
369 .Case("include", tgtok::Include) in LexIdentifier()
370 .Case("if", tgtok::If) in LexIdentifier()
371 .Case("then", tgtok::Then) in LexIdentifier()
372 .Case("else", tgtok::ElseKW) in LexIdentifier()
373 .Case("assert", tgtok::Assert) in LexIdentifier()
374 .Case("dump", tgtok::Dump) in LexIdentifier()
561 .Case("eq", tgtok::XEq) in LexExclaim()
562 .Case("ne", tgtok::XNe) in LexExclaim()
563 .Case("le", tgtok::XLe) in LexExclaim()
564 .Case("lt", tgtok::XLt) in LexExclaim()
565 .Case("ge", tgtok::XGe) in LexExclaim()
566 .Case("gt", tgtok::XGt) in LexExclaim()
567 .Case("if", tgtok::XIf) in LexExclaim()
568 .Case("cond", tgtok::XCond) in LexExclaim()
569 .Case("isa", tgtok::XIsA) in LexExclaim()
570 .Case("head", tgtok::XHead) in LexExclaim()
571 .Case("tail", tgtok::XTail) in LexExclaim()
572 .Case("size", tgtok::XSize) in LexExclaim()
573 .Case("con", tgtok::XConcat) in LexExclaim()
574 .Case("dag", tgtok::XDag) in LexExclaim()
575 .Case("add", tgtok::XADD) in LexExclaim()
576 .Case("sub", tgtok::XSUB) in LexExclaim()
577 .Case("mul", tgtok::XMUL) in LexExclaim()
578 .Case("div", tgtok::XDIV) in LexExclaim()
579 .Case("not", tgtok::XNOT) in LexExclaim()
580 .Case("logtwo", tgtok::XLOG2) in LexExclaim()
581 .Case("and", tgtok::XAND) in LexExclaim()
582 .Case("or", tgtok::XOR) in LexExclaim()
583 .Case("xor", tgtok::XXOR) in LexExclaim()
584 .Case("shl", tgtok::XSHL) in LexExclaim()
585 .Case("sra", tgtok::XSRA) in LexExclaim()
586 .Case("srl", tgtok::XSRL) in LexExclaim()
587 .Case("cast", tgtok::XCast) in LexExclaim()
588 .Case("empty", tgtok::XEmpty) in LexExclaim()
589 .Case("subst", tgtok::XSubst) in LexExclaim()
590 .Case("foldl", tgtok::XFoldl) in LexExclaim()
591 .Case("foreach", tgtok::XForEach) in LexExclaim()
592 .Case("filter", tgtok::XFilter) in LexExclaim()
593 .Case("listconcat", tgtok::XListConcat) in LexExclaim()
594 .Case("listsplat", tgtok::XListSplat) in LexExclaim()
595 .Case("listremove", tgtok::XListRemove) in LexExclaim()
596 .Case("range", tgtok::XRange) in LexExclaim()
597 .Case("strconcat", tgtok::XStrConcat) in LexExclaim()
598 .Case("interleave", tgtok::XInterleave) in LexExclaim()
599 .Case("substr", tgtok::XSubstr) in LexExclaim()
600 .Case("find", tgtok::XFind) in LexExclaim()
603 .Case("getdagarg", tgtok::XGetDagArg) in LexExclaim()
604 .Case("getdagname", tgtok::XGetDagName) in LexExclaim()
605 .Case("setdagarg", tgtok::XSetDagArg) in LexExclaim()
606 .Case("setdagname", tgtok::XSetDagName) in LexExclaim()
607 .Case("exists", tgtok::XExists) in LexExclaim()
608 .Case("tolower", tgtok::XToLower) in LexExclaim()
609 .Case("toupper", tgtok::XToUpper) in LexExclaim()
610 .Case("repr", tgtok::XRepr) in LexExclaim()