Searched refs:exclaim (Results 1 - 25 of 27) sorted by relevance

12

/openbsd-current/gnu/usr.bin/perl/cpan/parent/t/lib/
H A DReturnsFalse.pm3 sub exclaim { "I CAN FROM " . __PACKAGE__ } subroutine
H A DDummy.pm6 sub exclaim { "I CAN FROM " . __PACKAGE__ } subroutine
10 sub exclaim { "I CAN FROM " . __PACKAGE__ } subroutine
/openbsd-current/gnu/usr.bin/perl/cpan/parent/t/lib/Dummy/
H A DOutside.pm3 sub exclaim { "I CAN FROM " . __PACKAGE__ } subroutine
/openbsd-current/gnu/usr.bin/perl/cpan/parent/t/
H A Dcompile-time.t8 sub exclaim { "I CAN HAS PERL?" } subroutine
19 can_ok $obj, 'exclaim';
20 is $obj->exclaim, "I CAN HAS PERL?", 'Inheritance is set up correctly';
H A Dcompile-time-file.t33 can_ok $obj, 'exclaim';
34 is $obj->exclaim, "I CAN FROM Dummy", 'Inheritance is set up correctly';
39 can_ok $obj, 'exclaim';
40 is $obj->exclaim, "I CAN FROM Dummy::InlineChild", 'Inheritance is set up correctly for inlined classes';
45 can_ok $obj, 'exclaim';
46 is $obj->exclaim, "I CAN FROM Dummy::Outside", "Inheritance is set up correctly for classes inherited from via '";
/openbsd-current/gnu/usr.bin/perl/cpan/parent/lib/
H A Dparent.pm58 sub exclaim { "I CAN HAS PERL" }
67 sub exclaim { "I CAN HAS PERL" }
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/MIRParser/
H A DMILexer.h40 exclaim, enumerator in enum:llvm::MIToken::TokenKind
H A DMIParser.cpp1113 if (Token.is(MIToken::exclaim)) {
1252 if (Token.is(MIToken::exclaim)) {
1270 if (Token.isNot(MIToken::exclaim))
1285 if (Token.isNot(MIToken::exclaim))
1349 if (Token.isNot(MIToken::exclaim))
2232 assert(Token.is(MIToken::exclaim));
2352 if (Token.is(MIToken::exclaim)) {
2403 if (Token.is(MIToken::exclaim)) {
2893 case MIToken::exclaim:
H A DMILexer.cpp619 Token.reset(MIToken::exclaim, Range.upto(C));
/openbsd-current/gnu/usr.bin/perl/dist/base/lib/
H A Dbase.pm279 sub exclaim { "I can have such a thing?!" }
284 There is no F<Foo.pm>, but because C<Foo> defines a symbol (the C<exclaim>
/openbsd-current/gnu/llvm/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp103 case tok::exclaim:
/openbsd-current/gnu/llvm/llvm/include/llvm/AsmParser/
H A DLLToken.h36 exclaim, // ! enumerator in enum:llvm::lltok::Kind
/openbsd-current/gnu/llvm/clang/lib/Lex/
H A DTokenConcatenation.cpp119 TokenInfo[tok::exclaim ] |= aci_avoid_equal; // !=
H A DPPExpressions.cpp511 case tok::exclaim: {
H A DModuleMap.cpp1636 case tok::exclaim:
/openbsd-current/gnu/llvm/clang/lib/Format/
H A DFormatTokenLexer.cpp527 tok::r_brace, tok::l_square, tok::semi, tok::exclaim,
545 if (Prev->isOneOf(tok::plusplus, tok::minusminus, tok::exclaim))
H A DUnwrappedLineParser.cpp1510 if (Next->is(tok::exclaim) && PreviousMustBeValue)
2326 case tok::exclaim:
2767 if (FormatTok->is(tok::exclaim))
3239 case tok::exclaim:
3561 case tok::exclaim:
3620 case tok::exclaim: // The same as above, but unary.
H A DTokenAnnotator.cpp1768 (Current.is(tok::exclaim) && Current.Previous &&
1839 Current.is(tok::exclaim)) {
1907 } else if (Current.isOneOf(tok::exclaim, tok::tilde)) {
3449 if (Left.isOneOf(tok::exclaim, tok::tilde))
4222 if (Left.is(tok::exclaim) && Left.TokenText == "not")
4231 return (Style.SpaceAfterLogicalNot && Left.is(tok::exclaim)) ||
4831 if (Left.is(tok::exclaim) && Right.is(tok::colon))
H A DFormatToken.h656 case tok::exclaim:
/openbsd-current/gnu/llvm/llvm/lib/AsmParser/
H A DLLLexer.cpp430 return lltok::exclaim;
H A DLLParser.cpp423 case lltok::exclaim:
792 parseToken(lltok::exclaim, "Expected '!' here") ||
812 } else if (parseToken(lltok::exclaim, "Expected '!' here") ||
825 assert(Lex.getKind() == lltok::exclaim);
841 } else if (parseToken(lltok::exclaim, "Expected '!' here") ||
4116 return parseToken(lltok::exclaim, "expected '!' here") || parseMDNodeTail(N);
5620 if (Lex.getKind() != lltok::exclaim)
5624 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
/openbsd-current/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp1454 if (Tok.is(tok::exclaim)) {
H A DParseObjc.cpp1060 case tok::exclaim:
H A DParseDeclCXX.cpp4239 case tok::exclaim: // 'not'
H A DParseExpr.cpp1390 case tok::exclaim: // unary-expression: '!' cast-expression

Completed in 391 milliseconds

12