HomeSort by relevance Sort by last modified time
    Searched refs:Comma (Results 1 - 25 of 38) sorted by null

1 2

  /external/clang/include/clang/Basic/
OperatorPrecedence.h 29 Comma = 1, // ,
  /external/llvm/lib/MC/
MCSectionMachO.cpp 186 // Find the first comma.
187 std::pair<StringRef, StringRef> Comma = Spec.split(',');
189 // If there is no comma, we fail.
190 if (Comma.second.empty())
192 "separated by a comma";
195 Segment = Comma.first;
204 Comma = Comma.second.split(',');
207 Section = Comma.first;
215 // If there is no comma after the section, we're done
    [all...]
SubtargetFeature.cpp 66 /// Split - Splits a string of comma separated items in to a vector of strings.
75 // Find the next comma
76 size_t Comma = S.find(',', Pos);
77 // If no comma found then the rest of the string is used
78 if (Comma == std::string::npos) {
84 V.push_back(S.substr(Pos, Comma - Pos));
86 Pos = Comma + 1;
90 /// Join a vector of strings to a string with a comma separating each element.
101 // Add a comma
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 42 case tok::comma: return prec::Comma;
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 399 if (getLexer().isNot(AsmToken::Comma))
459 if (getLexer().isNot(AsmToken::Comma))
478 if (getLexer().isNot(AsmToken::Comma))
507 // Verify there is a following comma.
508 if (!getLexer().is(AsmToken::Comma))
653 if (getLexer().isNot(AsmToken::Comma))
664 if (getLexer().is(AsmToken::Comma)) {
705 if (getLexer().isNot(AsmToken::Comma))
711 return TokError("expected section name after comma in '.zerofill' "
724 if (getLexer().isNot(AsmToken::Comma))
    [all...]
ELFAsmParser.cpp 182 if (getLexer().isNot(AsmToken::Comma))
210 if (getLexer().isNot(AsmToken::Comma))
352 if (getLexer().is(AsmToken::Comma)) {
369 if (getLexer().isNot(AsmToken::Comma)) {
384 if (getLexer().isNot(AsmToken::Comma))
394 if (getLexer().isNot(AsmToken::Comma))
399 if (getLexer().is(AsmToken::Comma)) {
470 if (getLexer().isNot(AsmToken::Comma))
544 if (getLexer().isNot(AsmToken::Comma))
545 return TokError("expected a comma");
    [all...]
COFFAsmParser.cpp 154 if (getLexer().isNot(AsmToken::Comma))
276 if (getLexer().isNot(AsmToken::Comma))
282 if (getLexer().is(AsmToken::Comma)) {
321 if (getLexer().isNot(AsmToken::Comma))
362 if (getLexer().isNot(AsmToken::Comma))
389 if (getLexer().isNot(AsmToken::Comma))
AsmParser.cpp 312 /// \brief Parse until the end of a statement or a comma is encountered,
313 /// return the contents from the current token up to the end or comma.
701 Lexer.isNot(AsmToken::Comma) &&
    [all...]
AsmLexer.cpp 463 case ',': return AsmToken(AsmToken::Comma, StringRef(TokStart, 1));
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 45 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 272 const char *Comma = "";
274 OS << Comma << "derived from LLVM BB ";
276 Comma = ", ";
278 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
279 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; }
281 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
tokenize.c 438 # define Comma( X) (X? ",":"")
444 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
450 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
456 fprintf(f, "%s\n {", Comma(pt));
466 fprintf(f, "%s %d", Comma(t), y);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 49 constexpr int Comma(int n) { return // expected-error {{constexpr function never produces a constant expression}}
  /external/webkit/Source/WebCore/inspector/front-end/
CallStackSidebarPane.js 163 var prevCallFrame = WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Comma,
KeyboardShortcut.js 81 Comma: { code: 188, name: "," },
  /external/webkit/LayoutTests/dom/html/level2/html/
anchor03.js 78 Comma-separated list of lengths, defining an active region geometry.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
anchor03.js 78 Comma-separated list of lengths, defining an active region geometry.
  /external/clang/include/clang/AST/
StmtVisitor.h 131 BINOP_FALLBACK(Comma)
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 82 typedef ExpressionType Comma;
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 512 getLexer().is(AsmToken::Comma)) {
513 // Consume the comma token
555 if (getLexer().isNot(AsmToken::Comma))
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 645 Comma,
791 case tok::comma:
792 Tok.Kind = MMToken::Comma;
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 281 case AsmToken::Comma: Out->os() << "Comma"; break;
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]

Completed in 5596 milliseconds

1 2