Lines Matching defs:C
85 static Cursor skipWhitespace(Cursor C) { in skipWhitespace()
91 static bool isNewlineChar(char C) { return C == '\n' || C == '\r'; } in isNewlineChar()
94 static Cursor skipComment(Cursor C) { in skipComment()
104 static bool isIdentifierChar(char C) { in isIdentifierChar()
114 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString() local
140 static Cursor lexStringConstant(Cursor C, ErrorCallbackType ErrorCallback) { in lexStringConstant()
154 static Cursor lexName(Cursor C, MIToken &Token, MIToken::TokenKind Type, in lexName()
176 static Cursor maybeLexIntegerType(Cursor C, MIToken &Token) { in maybeLexIntegerType()
233 static Cursor maybeLexIdentifier(Cursor C, MIToken &Token) { in maybeLexIdentifier()
245 static Cursor maybeLexMachineBasicBlock(Cursor C, MIToken &Token, in maybeLexMachineBasicBlock()
277 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule, in maybeLexIndex()
290 static Cursor maybeLexIndexAndName(Cursor C, MIToken &Token, StringRef Rule, in maybeLexIndexAndName()
313 static Cursor maybeLexJumpTableIndex(Cursor C, MIToken &Token) { in maybeLexJumpTableIndex()
317 static Cursor maybeLexStackObject(Cursor C, MIToken &Token) { in maybeLexStackObject()
321 static Cursor maybeLexFixedStackObject(Cursor C, MIToken &Token) { in maybeLexFixedStackObject()
325 static Cursor maybeLexConstantPoolItem(Cursor C, MIToken &Token) { in maybeLexConstantPoolItem()
329 static Cursor maybeLexSubRegisterIndex(Cursor C, MIToken &Token, in maybeLexSubRegisterIndex()
338 static Cursor maybeLexIRBlock(Cursor C, MIToken &Token, in maybeLexIRBlock()
348 static Cursor maybeLexIRValue(Cursor C, MIToken &Token, in maybeLexIRValue()
358 static Cursor lexVirtualRegister(Cursor C, MIToken &Token) { in lexVirtualRegister()
369 static Cursor maybeLexRegister(Cursor C, MIToken &Token) { in maybeLexRegister()
383 static Cursor maybeLexGlobalValue(Cursor C, MIToken &Token, in maybeLexGlobalValue()
400 static Cursor maybeLexExternalSymbol(Cursor C, MIToken &Token, in maybeLexExternalSymbol()
408 static bool isValidHexFloatingPointPrefix(char C) { in isValidHexFloatingPointPrefix()
412 static Cursor maybeLexHexFloatingPointLiteral(Cursor C, MIToken &Token) { in maybeLexHexFloatingPointLiteral()
425 static Cursor lexFloatingPointLiteral(Cursor Range, Cursor C, MIToken &Token) { in lexFloatingPointLiteral()
441 static Cursor maybeLexNumericalLiteral(Cursor C, MIToken &Token) { in maybeLexNumericalLiteral()
464 static Cursor maybeLexExlaim(Cursor C, MIToken &Token, in maybeLexExlaim()
484 static MIToken::TokenKind symbolToken(char C) { in symbolToken()
513 static Cursor maybeLexSymbol(Cursor C, MIToken &Token) { in maybeLexSymbol()
529 static Cursor maybeLexNewline(Cursor C, MIToken &Token) { in maybeLexNewline()
538 static Cursor maybeLexEscapedIRValue(Cursor C, MIToken &Token, in maybeLexEscapedIRValue()
563 auto C = skipComment(skipWhitespace(Cursor(Source))); in lexMIToken() local