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

1 2

  /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/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 178 if (getLexer().isNot(AsmToken::Comma))
206 if (getLexer().isNot(AsmToken::Comma))
348 if (getLexer().is(AsmToken::Comma)) {
365 if (getLexer().isNot(AsmToken::Comma)) {
380 if (getLexer().isNot(AsmToken::Comma))
390 if (getLexer().isNot(AsmToken::Comma))
395 if (getLexer().is(AsmToken::Comma)) {
457 if (getLexer().isNot(AsmToken::Comma))
531 if (getLexer().isNot(AsmToken::Comma))
532 return TokError("expected a comma");
    [all...]
DarwinAsmParser.cpp 335 if (getLexer().isNot(AsmToken::Comma))
387 if (getLexer().isNot(AsmToken::Comma))
416 // Verify there is a following comma.
417 if (!getLexer().is(AsmToken::Comma))
531 if (getLexer().isNot(AsmToken::Comma))
542 if (getLexer().is(AsmToken::Comma)) {
583 if (getLexer().isNot(AsmToken::Comma))
589 return TokError("expected section name after comma in '.zerofill' "
602 if (getLexer().isNot(AsmToken::Comma))
614 if (getLexer().isNot(AsmToken::Comma))
    [all...]
COFFAsmParser.cpp 153 if (getLexer().isNot(AsmToken::Comma))
275 if (getLexer().isNot(AsmToken::Comma))
281 if (getLexer().is(AsmToken::Comma)) {
320 if (getLexer().isNot(AsmToken::Comma))
361 if (getLexer().isNot(AsmToken::Comma))
388 if (getLexer().isNot(AsmToken::Comma))
AsmParser.cpp     [all...]
AsmLexer.cpp 416 case ',': return AsmToken(AsmToken::Comma, StringRef(TokStart, 1));
  /external/libvpx/vp8/encoder/
tokenize.c 356 # define Comma( X) (X? ",":"")
362 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
368 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
374 fprintf(f, "%s\n {", Comma(pt));
384 fprintf(f, "%s %d", Comma(t), y);
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 46 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 266 const char *Comma = "";
268 OS << Comma << "derived from LLVM BB ";
270 Comma = ", ";
272 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
273 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; }
275 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
277 Comma = ", ";
    [all...]
  /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/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 499 getLexer().is(AsmToken::Comma)) {
500 // Consume the comma token
542 if (getLexer().isNot(AsmToken::Comma))
  /external/clang/include/clang/AST/
StmtVisitor.h 131 BINOP_FALLBACK(Comma)
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 82 typedef ExpressionType Comma;
  /external/clang/lib/Lex/
ModuleMap.cpp 453 Comma,
587 case tok::comma:
588 Tok.Kind = MMToken::Comma;
1014 if (!Tok.is(MMToken::Comma))
1017 // Consume the comma.
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 814 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
853 if (getLexer().is(AsmToken::Comma)) {
854 Parser.Lex(); // Eat the comma.
857 // Following the comma we should have either an index register, or a scale
870 if (getLexer().isNot(AsmToken::Comma)) {
872 "expected comma in scale expression");
875 Parser.Lex(); // Eat the comma.
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 60 case tok::comma: return prec::Comma;
180 return ParseRHSOfBinaryExpression(move(LHS), prec::Comma);
191 return ParseRHSOfBinaryExpression(move(LHS), prec::Comma);
211 return ParseRHSOfBinaryExpression(move(LHS), prec::Comma);
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 285 case AsmToken::Comma: Out->os() << "Comma"; break;
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 19 // which is not relevant for matching; for example, comma tokens should have
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 448 milliseconds

1 2