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 Cursor skipMachineOperandComment(Cursor C) { in skipMachineOperandComment()
118 static bool isIdentifierChar(char C) { in isIdentifierChar()
128 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString() local
154 static Cursor lexStringConstant(Cursor C, ErrorCallbackType ErrorCallback) { in lexStringConstant()
168 static Cursor lexName(Cursor C, MIToken &Token, MIToken::TokenKind Type, in lexName()
293 static Cursor maybeLexIdentifier(Cursor C, MIToken &Token) { in maybeLexIdentifier()
305 static Cursor maybeLexMachineBasicBlock(Cursor C, MIToken &Token, in maybeLexMachineBasicBlock()
340 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule, in maybeLexIndex()
353 static Cursor maybeLexIndexAndName(Cursor C, MIToken &Token, StringRef Rule, in maybeLexIndexAndName()
376 static Cursor maybeLexJumpTableIndex(Cursor C, MIToken &Token) { in maybeLexJumpTableIndex()
380 static Cursor maybeLexStackObject(Cursor C, MIToken &Token) { in maybeLexStackObject()
384 static Cursor maybeLexFixedStackObject(Cursor C, MIToken &Token) { in maybeLexFixedStackObject()
388 static Cursor maybeLexConstantPoolItem(Cursor C, MIToken &Token) { in maybeLexConstantPoolItem()
392 static Cursor maybeLexSubRegisterIndex(Cursor C, MIToken &Token, in maybeLexSubRegisterIndex()
401 static Cursor maybeLexIRBlock(Cursor C, MIToken &Token, in maybeLexIRBlock()
411 static Cursor maybeLexIRValue(Cursor C, MIToken &Token, in maybeLexIRValue()
421 static Cursor maybeLexStringConstant(Cursor C, MIToken &Token, in maybeLexStringConstant()
429 static Cursor lexVirtualRegister(Cursor C, MIToken &Token) { in lexVirtualRegister()
441 static bool isRegisterChar(char C) { in isRegisterChar()
445 static Cursor lexNamedVirtualRegister(Cursor C, MIToken &Token) { in lexNamedVirtualRegister()
455 static Cursor maybeLexRegister(Cursor C, MIToken &Token, in maybeLexRegister()
480 static Cursor maybeLexGlobalValue(Cursor C, MIToken &Token, in maybeLexGlobalValue()
497 static Cursor maybeLexExternalSymbol(Cursor C, MIToken &Token, in maybeLexExternalSymbol()
505 static Cursor maybeLexMCSymbol(Cursor C, MIToken &Token, in maybeLexMCSymbol()
552 static bool isValidHexFloatingPointPrefix(char C) { in isValidHexFloatingPointPrefix()
556 static Cursor lexFloatingPointLiteral(Cursor Range, Cursor C, MIToken &Token) { in lexFloatingPointLiteral()
572 static Cursor maybeLexHexadecimalLiteral(Cursor C, MIToken &Token) { in maybeLexHexadecimalLiteral()
594 static Cursor maybeLexNumericalLiteral(Cursor C, MIToken &Token) { in maybeLexNumericalLiteral()
619 static Cursor maybeLexExclaim(Cursor C, MIToken &Token, in maybeLexExclaim()
639 static MIToken::TokenKind symbolToken(char C) { in symbolToken()
670 static Cursor maybeLexSymbol(Cursor C, MIToken &Token) { in maybeLexSymbol()
686 static Cursor maybeLexNewline(Cursor C, MIToken &Token) { in maybeLexNewline()
695 static Cursor maybeLexEscapedIRValue(Cursor C, MIToken &Token, in maybeLexEscapedIRValue()
720 auto C = skipComment(skipWhitespace(Cursor(Source))); in lexMIToken() local