| /freebsd/sys/contrib/dev/acpica/compiler/ |
| H A D | dtio.c | 322 char *Colon; in DtParseLine() local 342 Colon = strchr (LineBuffer, ':'); in DtParseLine() 343 if (!Colon) in DtParseLine() 349 End = Colon; in DtParseLine() 351 while (Start < Colon) in DtParseLine() 357 while (Start < Colon && *Start != ']') in DtParseLine() 374 Column = ACPI_PTR_DIFF (Colon, LineBuffer) + 3; in DtParseLine() 384 Start = End = (Colon + 1); in DtParseLine()
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | ZOS.cpp | 290 size_t Colon = PathLE.find(':'); in AddClangSystemIncludeArgs() local 291 if (Colon == StringRef::npos) { in AddClangSystemIncludeArgs() 296 while (Colon != StringRef::npos) { in AddClangSystemIncludeArgs() 297 SmallString<128> P = PathLE.substr(0, Colon); in AddClangSystemIncludeArgs() 299 PathLE = PathLE.substr(Colon + 1); in AddClangSystemIncludeArgs() 300 Colon = PathLE.find(':'); in AddClangSystemIncludeArgs()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/ |
| H A D | HexagonAsmParser.cpp | 511 if (!Parser.getTok().is(AsmToken::Colon)) in matchBundleOptions() 995 if (String.lower() == "vwhist256" && Second.is(AsmToken::Colon) && in isLabel() 1002 assert(Second.is(AsmToken::Colon)); in isLabel() 1054 Lexer.is(AsmToken::Colon); in tryParseRegister() 1056 Lexer.is(AsmToken::Colon) || Lookahead.back().is(AsmToken::Colon); in tryParseRegister() 1088 } while (!Lookahead.empty() && !Lexer.is(AsmToken::Colon)); in tryParseRegister() 1105 if (!getLexer().getTok().is(AsmToken::Colon)) in implicitExpressionLocation() 1359 const std::string Colon = ":"; in processInstruction() local 1845 std::string Name = r + utostr(RegNum) + Colon + utostr(RegNum - 1); in processInstruction() 1850 std::string Name = r + utostr(RegNum + 1) + Colon + utostr(RegNum); in processInstruction() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmMacro.h | 44 Colon, enumerator
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | COFFMasmParser.cpp | 410 if (parseToken(AsmToken::Colon) || getParser().parseIdentifier(MacroId)) in parseDirectiveOption() 421 if (parseToken(AsmToken::Colon) || getParser().parseIdentifier(MacroId)) in parseDirectiveOption()
|
| H A D | AsmLexer.cpp | 65 case AsmToken::Colon: OS << "Colon"; break; in dump() 900 case ':': return AsmToken(AsmToken::Colon, StringRef(TokStart, 1)); in LexToken()
|
| H A D | AsmParser.cpp | 1753 if (Lexer.getKind() != AsmToken::Colon) { in parseStatement() 1831 if (Lexer.is(AsmToken::Colon) && getTargetParser().isLabel(ID)) { in parseStatement() 4506 if (Lexer.is(AsmToken::Colon)) { in parseDirectiveMacro() 5852 if (getLexer().is(AsmToken::Colon)) in parseDirectivePseudoProbe()
|
| H A D | MasmParser.cpp | 1938 if (Lexer.is(AsmToken::Colon) && getTargetParser().isLabel(ID)) { in parseStatement() 4315 if (Lexer.is(AsmToken::Colon)) { in parseDirectiveMacro() 4510 if (parseToken(AsmToken::Colon)) in parseDirectiveExtern() 5549 if (parseOptionalToken(AsmToken::Colon)) { in parseDirectiveFor()
|
| /freebsd/contrib/libxo/doc/ |
| H A D | field-modifiers.rst | 67 .. index:: Field Modifiers; Colon 70 The Colon Modifier ({c:}) 73 .. index:: Field Modifiers; Colon
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | OPENSSL_s390xcap.pod | 64 The following is a list of significant bits for each instruction. Colon
|
| /freebsd/crypto/openssl/doc/man1/ |
| H A D | openssl-rehash.pod.in | 139 Colon separated list of directories to operate on.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 2972 if (trySkipToken(AsmToken::Colon)) { in ParseRegRange() 3380 return Token.is(AsmToken::Identifier) && NextToken.is(AsmToken::Colon); in isOpcodeModifierWithVal() 6802 if (!trySkipId(Prefix, AsmToken::Colon)) in parseIntWithPrefix() 6830 if (!trySkipId(Prefix, AsmToken::Colon)) in parseOperandArrayWithPrefix() 7090 if (!trySkipId(Prefix, AsmToken::Colon)) in parseStringWithPrefix() 7101 if (!trySkipId(Name, AsmToken::Colon)) in parseStringOrIntWithPrefix() 7334 if (!trySkipId("format", AsmToken::Colon)) in parseSymbolicOrNumericFormat() 7404 if (isId("format") && peekToken().is(AsmToken::Colon)) in parseFORMAT() 8308 !skipToken(AsmToken::Colon, "colon expected")) in parseStructuredOpFields() 8623 if (skipToken(AsmToken::Colon, "expected a colon")) { in parseSwizzle() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/ |
| H A D | SystemZAsmParser.cpp | 1691 if (AllowTLS && getLexer().is(AsmToken::Colon)) { in parsePCRel() 1707 if (Parser.getTok().isNot(AsmToken::Colon)) in parsePCRel()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/ |
| H A D | AVRAsmParser.cpp | 385 if (Parser.getLexer().peekTok().is(AsmToken::Colon)) { in parseRegister()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 484 if (IsLoadStore && isNext(AsmToken::Colon)) { in checkForP2AlignIfLoadStore()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 5544 Parser.getTok().is(AsmToken::Colon)) in parseModImm() 5551 if (Lexer.peekTok().is(AsmToken::Colon)) in parseModImm() 5975 if (!Tok.is(AsmToken::Colon) && !Tok.is(AsmToken::Comma) && in parseMemory() 5997 assert((Tok.is(AsmToken::Colon) || Tok.is(AsmToken::Comma)) && in parseMemory() 6004 if (Parser.getTok().is(AsmToken::Colon)) { in parseMemory() 6396 if (Parser.getTok().isNot(AsmToken::Colon)) { in parseOperand() 6424 case AsmToken::Colon: { in parseOperand() 6486 assert(getLexer().is(AsmToken::Colon) && "expected a :"); in parsePrefix() 6555 if (getLexer().isNot(AsmToken::Colon)) { in parsePrefix()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 3434 getLexer().peekTok().is(AsmToken::Colon)) in tryParseImmWithOptionalShift() 4400 if (parseOptionalToken(AsmToken::Colon)) { in parseSymbolicImmVal() 4465 if (parseToken(AsmToken::Colon, "expect ':' after relocation specifier")) in parseSymbolicImmVal() 8608 if (getLexer().peekTok().isNot(AsmToken::Colon)) in tryParseImmRange() 8615 if (getTok().isNot(AsmToken::Colon)) in tryParseImmRange()
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | UnwrappedLineParser.cpp | 3054 auto *Colon = FormatTok; in parseTryCatch() local 3059 Colon->setFinalizedType(TT_CtorInitializerColon); in parseTryCatch()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86AsmParser.cpp | 2626 if (Tok.isNot(AsmToken::Colon)) { in parseIntelOperand() 2826 if (!Parser.parseOptionalToken(AsmToken::Colon)) { in parseATTOperand()
|
| /freebsd/contrib/sendmail/cf/cf/ |
| H A D | submit.cf | 793 R<> $* <$* : $* > $* $#error $@ 5.1.3 $: "553 Colon illegal in host name part"
|
| /freebsd/contrib/jemalloc/ |
| H A D | configure.ac | 956 [AS_HELP_STRING([--with-rpath=<rpath>], [Colon-separated rpath (ELF systems only)])],
|
| /freebsd/contrib/sendmail/cf/m4/ |
| H A D | proto.m4 | 1056 R<> $* <$* : $* > $* $#error $@ 5.1.3 $: "_CODE553 Colon illegal in host name part"
|
| /freebsd/share/misc/ |
| H A D | usb_vendors | 24541 033 ; and : (Semicolon and Colon)
|