Searched refs:Comma (Results 1 - 25 of 42) sorted by relevance

12

/external/clang/include/clang/Basic/
H A DOperatorPrecedence.h29 Comma = 1, // , enumerator in enum:clang::prec::Level
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp412 if (getLexer().isNot(AsmToken::Comma))
505 if (getLexer().isNot(AsmToken::Comma))
524 if (getLexer().isNot(AsmToken::Comma))
554 if (!getLexer().is(AsmToken::Comma))
700 if (getLexer().isNot(AsmToken::Comma))
711 if (getLexer().is(AsmToken::Comma)) {
752 if (getLexer().isNot(AsmToken::Comma))
771 if (getLexer().isNot(AsmToken::Comma))
783 if (getLexer().isNot(AsmToken::Comma))
794 if (getLexer().is(AsmToken::Comma)) {
[all...]
H A DELFAsmParser.cpp184 if (getLexer().isNot(AsmToken::Comma))
215 if (getLexer().isNot(AsmToken::Comma))
374 if (!getLexer().is(AsmToken::Comma))
424 if (getLexer().is(AsmToken::Comma)) {
430 if (getLexer().isNot(AsmToken::Comma))
458 if (getLexer().isNot(AsmToken::Comma)) {
476 if (getLexer().isNot(AsmToken::Comma))
486 if (getLexer().isNot(AsmToken::Comma))
491 if (getLexer().is(AsmToken::Comma)) {
610 if (getLexer().is(AsmToken::Comma))
[all...]
H A DCOFFAsmParser.cpp282 if (getLexer().isNot(AsmToken::Comma))
346 if (getLexer().is(AsmToken::Comma)) {
361 if (getLexer().is(AsmToken::Comma)) {
370 if (getLexer().isNot(AsmToken::Comma))
553 if (getLexer().isNot(AsmToken::Comma))
559 if (getLexer().is(AsmToken::Comma)) {
598 if (getLexer().isNot(AsmToken::Comma))
639 if (getLexer().isNot(AsmToken::Comma))
666 if (getLexer().isNot(AsmToken::Comma))
H A DAsmParser.cpp733 Lexer.isNot(AsmToken::Comma) && Lexer.isNot(AsmToken::Eof))
1931 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma))
2073 if (Lexer.is(AsmToken::Comma))
2278 if (getLexer().isNot(AsmToken::Comma))
2366 if (getLexer().isNot(AsmToken::Comma))
2402 if (getLexer().isNot(AsmToken::Comma))
2452 if (getLexer().isNot(AsmToken::Comma))
2510 if (getLexer().isNot(AsmToken::Comma))
2530 if (getLexer().is(AsmToken::Comma)) {
2567 if (getLexer().isNot(AsmToken::Comma))
[all...]
H A DAsmLexer.cpp537 case ',': return AsmToken(AsmToken::Comma, StringRef(TokStart, 1));
/external/clang/lib/Basic/
H A DOperatorPrecedence.cpp42 case tok::comma: return prec::Comma;
/external/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h264 bool Comma = false; local
267 if (Comma)
270 Comma = true;
278 bool Comma = false; local
281 if (Comma)
284 Comma = true;
H A DStreamWriter.h179 bool Comma = false; local
181 if (Comma)
184 Comma = true;
H A DARMWinEHPrinter.cpp158 bool Comma = false; local
161 if (Comma)
164 Comma = true;
169 if (Comma)
172 Comma = true;
177 if (Comma)
180 Comma = true;
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h47 Star, Dot, Comma, Dollar, Equal, EqualEqual, enumerator in enum:llvm::AsmToken::TokenKind
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dtokenize.c442 # define Comma( X) (X? ",":"") macro
448 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
454 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
460 fprintf(f, "%s\n {", Comma(pt));
470 fprintf(f, "%s %d", Comma(t), y);
/external/libvpx/libvpx/vp8/encoder/
H A Dtokenize.c442 # define Comma( X) (X? ",":"") macro
448 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
454 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
460 fprintf(f, "%s\n {", Comma(pt));
470 fprintf(f, "%s %d", Comma(t), y);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp5.cpp49 constexpr int Comma(int n) { return // expected-error {{constexpr function never produces a constant expression}} function in namespace:PotentialConstant
/external/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp279 const char *Comma = ""; local
281 OS << Comma << "derived from LLVM BB "; local
283 Comma = ", ";
285 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; } local
286 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; } local
288 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
/external/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp462 if (getLexer().is(AsmToken::Comma)) {
475 while (getLexer().is(AsmToken::Comma)) {
537 if (getLexer().isNot(AsmToken::Comma))
559 case AsmToken::Comma:
717 while (getLexer().is(AsmToken::Comma)) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DKeyboardShortcut.js100 Comma: { code: 188, name: "," },
/external/clang/include/clang/AST/
H A DStmtVisitor.h132 BINOP_FALLBACK(Comma)
/external/clang/lib/Format/
H A DFormatToken.h348 // Comma is a binary operator, but does not behave as such wrt. formatting.
349 return getPrecedence() > prec::Comma;
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp515 if (getLexer().is(AsmToken::Comma))
526 if (getLexer().is(AsmToken::Comma)) {
614 while (getLexer().is(AsmToken::Comma)) {
/external/clang/lib/Lex/
H A DModuleMap.cpp903 Comma, enumerator in enum:clang::MMToken::TokenKind
1081 Tok.Kind = MMToken::Comma;
1593 if (!Tok.is(MMToken::Comma))
1918 if (!Tok.is(MMToken::Comma))
1966 if (!Tok.is(MMToken::Comma)) {
2225 case MMToken::Comma:
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1744 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
1784 if (getLexer().is(AsmToken::Comma)) {
1801 if (getLexer().isNot(AsmToken::Comma)) {
1982 if (getLexer().is(AsmToken::Comma))
2560 if (getLexer().isNot(AsmToken::Comma)) {
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp2305 std::pair<StringRef,StringRef> Comma = Conds.split(',');
2312 StringRef Cond = Comma.first;
2325 if (Comma.second.empty())
2329 Comma = Comma.second.split(',');
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp3327 while (Parser.getTok().is(AsmToken::Comma) ||
3556 while (Parser.getTok().is(AsmToken::Comma) ||
4226 if (Parser.getTok().isNot(AsmToken::Comma)) {
4296 if (Parser.getTok().is(AsmToken::Comma)) {
4474 if (!Tok.is(AsmToken::Colon) && !Tok.is(AsmToken::Comma) &&
4496 assert((Tok.is(AsmToken::Colon) || Tok.is(AsmToken::Comma)) &&
4498 if (Tok.is(AsmToken::Comma)) {
4620 if (Parser.getTok().is(AsmToken::Comma)) {
5457 while (getLexer().is(AsmToken::Comma)) {
8273 if (getLexer().isNot(AsmToken::Comma)) {
[all...]
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp2171 else if (Parser.getTok().isNot(AsmToken::Comma)) {
2566 if (getLexer().is(AsmToken::Comma)) {
2859 while (Parser.getTok().is(AsmToken::Comma)) {
2940 if (Parser.getTok().isNot(AsmToken::Comma)) {
3226 while (getLexer().is(AsmToken::Comma)) {
3956 if (getLexer().isNot(AsmToken::Comma))
4027 if (getLexer().isNot(AsmToken::Comma))

Completed in 1266 milliseconds

12