/external/catch2/include/internal/ |
D | catch_capture.hpp | 42 #define INTERNAL_CATCH_TEST( macroName, resultDisposition, ... ) \ argument 44 …Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATC… 55 #define INTERNAL_CATCH_IF( macroName, resultDisposition, ... ) \ argument 56 INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \ 60 #define INTERNAL_CATCH_ELSE( macroName, resultDisposition, ... ) \ argument 61 INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \ 66 #define INTERNAL_CATCH_NO_THROW( macroName, resultDisposition, ... ) argument 67 #define INTERNAL_CATCH_THROWS( macroName, resultDisposition, ... ) argument 68 #define INTERNAL_CATCH_THROWS_AS( macroName, exceptionType, resultDisposition, expr ) argument 73 #define INTERNAL_CATCH_NO_THROW( macroName, resultDisposition, ... ) \ argument [all …]
|
D | catch_message.cpp | 21 : macroName( _macroName ), in MessageInfo() 41 Catch::MessageBuilder::MessageBuilder( StringRef const& macroName, in MessageBuilder() argument 44 :m_info(macroName, lineInfo, type) {} in MessageBuilder() 69 …Capturer::Capturer( StringRef macroName, SourceLineInfo const& lineInfo, ResultWas::OfType resultT… in Capturer() argument 101 m_messages.emplace_back(macroName, lineInfo, resultType); in Capturer() 109 m_messages.emplace_back(macroName, lineInfo, resultType); in Capturer()
|
D | catch_assertionresult.cpp | 64 if( m_info.macroName[0] == 0 ) in getExpressionInMacro() 67 expr.reserve( m_info.macroName.size() + m_info.capturedExpression.size() + 4 ); in getExpressionInMacro() 68 expr += m_info.macroName; in getExpressionInMacro() 95 return m_info.macroName; in getTestMacroName()
|
D | catch_capture_matchers.h | 57 #define INTERNAL_CHECK_THAT( macroName, matcher, resultDisposition, arg ) \ argument 59 …Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATC… 68 #define INTERNAL_CATCH_THROWS_MATCHES( macroName, exceptionType, resultDisposition, matcher, ... ) \ argument 70 …Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATC…
|
D | catch_message.h | 27 StringRef macroName; member 51 MessageBuilder( StringRef const& macroName, 80 …Capturer( StringRef macroName, SourceLineInfo const& lineInfo, ResultWas::OfType resultType, Strin…
|
D | catch_assertionhandler.cpp | 56 ( StringRef const& macroName, in AssertionHandler() argument 60 : m_assertionInfo{ macroName, lineInfo, capturedExpression, resultDisposition }, in AssertionHandler()
|
D | catch_assertioninfo.h | 19 StringRef macroName; member
|
D | catch_assertionhandler.h | 52 ( StringRef const& macroName,
|
D | catch_run_context.cpp | 172 m_lastAssertionInfo.macroName = StringRef(); in resetAssertionInfo()
|
/external/clang/utils/TableGen/ |
D | ClangASTNodesEmitter.cpp | 36 static std::string macroName(std::string S) { in macroName() function in __anon8bcd19e70111::ClangASTNodesEmitter 76 std::string BaseName = macroName(Base->getName()); in EmitNode() 89 std::string NodeName = macroName(R->getName()); in EmitNode() 97 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "(" in EmitNode() 125 OS << "LAST_" << macroName(Root.getName()) << "_RANGE("; in EmitNode() 127 OS << macroName(Root.getName()) << "_RANGE("; in EmitNode() 139 OS << "#ifndef ABSTRACT_" << macroName(Root.getName()) << "\n"; in run() 140 OS << "# define ABSTRACT_" << macroName(Root.getName()) << "(Type) Type\n"; in run() 143 OS << "#ifndef " << macroName(Root.getName()) << "_RANGE\n"; in run() 145 << macroName(Root.getName()) << "_RANGE(Base, First, Last)\n"; in run() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | InterpretedMacro.java | 40 private final String macroName; field in InterpretedMacro 45 public InterpretedMacro(PCommand command, Template owningTemplate, String macroName, in InterpretedMacro() argument 50 this.macroName = macroName; in InterpretedMacro() 94 return owningTemplate.getDisplayName() + ":" + macroName; in getDisplayName() 99 return macroName; in getMacroName() 107 throw new JSilverInterpreterException("Too many arguments supplied to macro " + macroName); in getArgumentName()
|
D | TemplateInterpreter.java | 435 String macroName = makeWord(node.getMacro()); in caseADefCommand() local 441 throw new JSilverInterpreterException("Invalid name for macro '" + macroName in caseADefCommand() 448 context.registerMacro(macroName, new InterpretedMacro(node.getCommand(), template, macroName, in caseADefCommand() 472 String macroName = makeWord(node.getMacro()); in caseACallCommand() local 473 Macro macro = context.findMacro(macroName); in caseACallCommand() 478 throw new JSilverInterpreterException("Number of arguments to macro " + macroName + " (" in caseACallCommand()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | BaseCompiledTemplate.java | 246 private final String macroName; field in BaseCompiledTemplate.CompiledMacro 249 protected CompiledMacro(String macroName, String... argumentsNames) { in CompiledMacro() argument 250 this.macroName = macroName; in CompiledMacro() 272 return macroName; in getMacroName() 280 throw new JSilverInterpreterException("Too many arguments supplied to macro " + macroName); in getArgumentName() 300 return BaseCompiledTemplate.this.getDisplayName() + ":" + macroName; in getDisplayName()
|
D | TemplateTranslator.java | 656 public void parseDefNode(JavaExpression macroName, ADefCommand node) { in parseDefNode() argument 657 java.startField("Macro", macroName); in parseDefNode()
|
/external/boringssl/src/util/ |
D | make_errors.go | 324 func handleDeclareMacro(line, join, macroName string, m map[string]int) { 325 if i := strings.Index(line, macroName); i >= 0 { 326 contents := line[i+len(macroName):]
|
/external/bcc/tests/cc/ |
D | catch.hpp | 835 std::string macroName; member 1222 ResultBuilder( char const* macroName, 1905 std::string macroName; member 1922 MessageBuilder( std::string const& macroName, in MessageBuilder() 1925 : m_info( macroName, lineInfo, type ) in MessageBuilder() 2057 #define INTERNAL_CATCH_TEST( expr, resultDisposition, macroName ) \ argument 2059 …Catch::ResultBuilder __catchResult( macroName, CATCH_INTERNAL_LINEINFO, #expr, resultDisposition )… 2071 #define INTERNAL_CATCH_IF( expr, resultDisposition, macroName ) \ argument 2072 INTERNAL_CATCH_TEST( expr, resultDisposition, macroName ); \ 2076 #define INTERNAL_CATCH_ELSE( expr, resultDisposition, macroName ) \ argument [all …]
|
/external/catch2/examples/ |
D | 210-Evt-EventListeners.cpp | 52 os << ws(level+1) << "- macroName: '" << info.macroName << "'\n" in print() 219 << ws(level+1) << "- macroName: '" << info.macroName << "'\n"; in print()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 1108 StringRef macroName; member 2181 ( StringRef const& macroName, 2229 StringRef macroName; member 2253 MessageBuilder( StringRef const& macroName, 2282 …Capturer( StringRef macroName, SourceLineInfo const& lineInfo, ResultWas::OfType resultType, Strin… 2328 #define INTERNAL_CATCH_TEST( macroName, resultDisposition, ... ) \ argument 2330 …Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATC… 2341 #define INTERNAL_CATCH_IF( macroName, resultDisposition, ... ) \ argument 2342 INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \ 2346 #define INTERNAL_CATCH_ELSE( macroName, resultDisposition, ... ) \ argument [all …]
|
/external/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 2078 StringRef macroName = PP.getLastMacroWithSpelling(noteLoc, tokens); in DiagnoseOwningPropertyGetterSynthesis() local 2079 if (!macroName.empty()) in DiagnoseOwningPropertyGetterSynthesis() 2080 spelling = macroName; in DiagnoseOwningPropertyGetterSynthesis()
|
/external/skia/tools/bookmaker/ |
D | includeParser.cpp | 823 string macroName = className + "::" + incName; in checkTokens() local 824 def = root->find(macroName, RootDefinition::AllowParens::kYes); in checkTokens()
|
/external/skqp/tools/bookmaker/ |
D | includeParser.cpp | 822 string macroName = className + "::" + incName; in checkTokens() local 823 def = root->find(macroName, RootDefinition::AllowParens::kYes); in checkTokens()
|
/external/testng/ant/3rdparty/ |
D | doclava-1.0.3.jar | META-INF/MANIFEST.MF
assets/html/index.html
assets/templates/data ... |
/external/testng/ant/ |
D | ivy-2.1.0.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/LICENSE
META-INF ... |
/external/kotlinc/lib/ |
D | kotlin-main-kts.jar | META-INF/MANIFEST.MF
org/jetbrains/kotlin/mainKts/MainKtsScriptDefinition$1$ ... |
/external/guice/extensions/struts2/lib/ |
D | freemarker-2.3.16.jar | META-INF/
META-INF/MANIFEST.MF
freemarker/
freemarker/cache/
freemarker/ ... |