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

12

/macosx-10.10/llvmCore-3425.0.34/lib/MC/
H A DMCSectionMachO.cpp187 std::pair<StringRef, StringRef> Comma = Spec.split(','); local
190 if (Comma.second.empty())
195 Segment = Comma.first;
204 Comma = Comma.second.split(',');
207 Section = Comma.first;
218 if (Comma.second.empty())
222 Comma = Comma.second.split(',');
225 StringRef SectionType = Comma
[all...]
H A DSubtargetFeature.cpp76 size_t Comma = S.find(',', Pos); local
78 if (Comma == std::string::npos) {
84 V.push_back(S.substr(Pos, Comma - Pos));
86 Pos = Comma + 1;
/macosx-10.10/vim-55/runtime/ftplugin/
H A DAppendMatchGroup.vim71 let Comma=match(List,',')
72 if Comma == -1 || Comma == strlen(List)-1
78 let listEntryEnd=Comma
80 let List=strpart(List,Comma+1)
81 let Comma=match(List,',')
104 while Comma != -1
105 let listEntryEnd=Comma
107 let List=strpart(List,Comma+1)
108 let Comma
[all...]
/macosx-10.10/vim-55/runtime/indent/
H A DGenericIndent.vim143 let Comma=match(Stmts,',')
144 if Comma == -1 || Comma == strlen(Stmts)-1
164 let stmtEntryEnd=Comma
166 let Stmts=strpart(Stmts,Comma+1)
167 let Comma=match(Stmts,',')
169 while Comma != -1
170 let stmtEntryEnd=Comma
172 let Stmts=strpart(Stmts,Comma+1)
173 let Comma
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/MC/MCParser/
H A DELFAsmParser.cpp180 if (getLexer().isNot(AsmToken::Comma))
208 if (getLexer().isNot(AsmToken::Comma))
350 if (getLexer().is(AsmToken::Comma)) {
367 if (getLexer().isNot(AsmToken::Comma)) {
382 if (getLexer().isNot(AsmToken::Comma))
392 if (getLexer().isNot(AsmToken::Comma))
397 if (getLexer().is(AsmToken::Comma)) {
459 if (getLexer().isNot(AsmToken::Comma))
533 if (getLexer().isNot(AsmToken::Comma))
588 if (getLexer().isNot(AsmToken::Comma))
[all...]
H A DDarwinAsmParser.cpp347 if (getLexer().isNot(AsmToken::Comma))
399 if (getLexer().isNot(AsmToken::Comma))
429 if (!getLexer().is(AsmToken::Comma))
574 if (getLexer().isNot(AsmToken::Comma))
585 if (getLexer().is(AsmToken::Comma)) {
626 if (getLexer().isNot(AsmToken::Comma))
645 if (getLexer().isNot(AsmToken::Comma))
657 if (getLexer().isNot(AsmToken::Comma))
668 if (getLexer().is(AsmToken::Comma)) {
H A DCOFFAsmParser.cpp153 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))
H A DAsmParser.cpp689 Lexer.isNot(AsmToken::Comma) &&
1680 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1683 ArgumentDelimiter = AsmToken::Comma;
1684 else if (ArgumentDelimiter != AsmToken::Comma) {
1779 if (Lexer.is(AsmToken::Comma))
1978 if (getLexer().isNot(AsmToken::Comma))
2066 if (getLexer().isNot(AsmToken::Comma))
2102 if (getLexer().isNot(AsmToken::Comma))
2160 if (getLexer().isNot(AsmToken::Comma))
2181 if (getLexer().isNot(AsmToken::Comma))
[all...]
H A DAsmLexer.cpp425 case ',': return AsmToken(AsmToken::Comma, StringRef(TokStart, 1));
/macosx-10.10/llvmCore-3425.0.34/include/llvm/MC/MCParser/
H A DMCAsmLexer.h48 Star, Dot, Comma, Dollar, Equal, EqualEqual, enumerator in enum:llvm::AsmToken::TokenKind
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineBasicBlock.cpp269 const char *Comma = ""; local
271 OS << Comma << "derived from LLVM BB "; local
273 Comma = ", ";
275 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; } local
276 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; } local
278 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
/macosx-10.10/vim-55/runtime/keymap/
H A Darabic_utf-8.vim75 K <char-0x060c> " (1548) - Arabic Comma
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp498 getLexer().is(AsmToken::Comma)) {
541 if (getLexer().isNot(AsmToken::Comma))
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DKeyboardShortcut.js153 Comma: new WebInspector.Key(188, ","),
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DSyntaxChecker.h90 typedef ExpressionType Comma; typedef in class:JSC::SyntaxChecker
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-mc/
H A Dllvm-mc.cpp263 case AsmToken::Comma: Out->os() << "Comma"; break;
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp770 if (getLexer().isNot(AsmToken::Comma)) {
857 while (getLexer().is(AsmToken::Comma) ) {
/macosx-10.10/llvmCore-3425.0.34/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1086 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
1125 if (getLexer().is(AsmToken::Comma)) {
1142 if (getLexer().isNot(AsmToken::Comma)) {
1317 while (getLexer().is(AsmToken::Comma)) {
1998 if (getLexer().isNot(AsmToken::Comma))
/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DAsmMatcherEmitter.cpp2232 std::pair<StringRef,StringRef> Comma = Conds.split(',');
2239 StringRef Cond = Comma.first;
2252 if (Comma.second.empty())
2256 Comma = Comma.second.split(',');
/macosx-10.10/zsh-61/zsh/Src/
H A Dglob.c1950 case Comma:
2049 if (*str2 == Comma)
2196 for (str4 = str, cnt = 0; cnt || (*str != Comma && *str !=
H A Dlex.c1225 c = Comma;
H A Dutils.c3421 for (t0 = (int)STOUC(Pound); t0 <= (int)STOUC(Comma); t0++)
4306 if (c <= Comma)
4342 if (c <= Comma)
4367 if (c <= Comma)
H A Dzsh.h158 #define Comma ((char) 0x98) macro
/macosx-10.10/llvmCore-3425.0.34/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2890 while (Parser.getTok().is(AsmToken::Comma) ||
3117 while (Parser.getTok().is(AsmToken::Comma) ||
3724 if (Parser.getTok().isNot(AsmToken::Comma)) {
3795 if (Parser.getTok().is(AsmToken::Comma)) {
4222 if (!Tok.is(AsmToken::Comma) && !Tok.is(AsmToken::RBrac))
4242 assert(Tok.is(AsmToken::Comma) && "Lost comma in memory operand?!");
4362 if (Parser.getTok().is(AsmToken::Comma)) {
5098 while (getLexer().is(AsmToken::Comma)) {
7606 if (getLexer().isNot(AsmToken::Comma))
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzle_tricky.c1968 } else if (*p == Comma && bbeg) {
2029 if (*p == Comma) {
2031 * Comma on or after cursor.

Completed in 353 milliseconds

12