HomeSort by relevance Sort by last modified time
    Searched defs:Comma (Results 1 - 11 of 11) sorted by null

  /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/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/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/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 45 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 234 // We can have a list of comma separated checker names, e.g:
248 // We can have a list of comma separated config names, e.g:
    [all...]
  /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/clang/lib/Lex/
ModuleMap.cpp 645 Comma,
791 case tok::comma:
792 Tok.Kind = MMToken::Comma;
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 82 typedef ExpressionType Comma;
ASTBuilder.h 96 typedef CommaNode* Comma;
    [all...]

Completed in 998 milliseconds