Searched refs:decorators (Results 1 - 12 of 12) sorted by relevance

/openjdk9/hotspot/src/share/vm/logging/
H A DlogOutput.hpp39 // and its selected decorators.
60 void set_decorators(const LogDecorators &decorators) { argument
61 _decorators = decorators;
64 const LogDecorators& decorators() const { function in class:LogOutput
H A DlogDecorations.hpp45 void create_decorations(const LogDecorators& decorators);
54 LogDecorations(LogLevelType level, const LogTagSet& tagset, const LogDecorators& decorators);
H A DlogDecorations.cpp34 LogDecorations::LogDecorations(LogLevelType level, const LogTagSet &tagset, const LogDecorators &decorators) argument
36 create_decorations(decorators);
47 void LogDecorations::create_decorations(const LogDecorators &decorators) { argument
50 if (decorators.is_decorator(LogDecorators::full_name##_decorator)) { \
H A DlogConfiguration.hpp77 // Configure output (add or update existing configuration) to log on tag-level combination using specified decorators.
78 static void configure_output(size_t idx, const LogTagLevelExpression& tag_level_expression, const LogDecorators& decorators);
H A DlogConfiguration.cpp209 void LogConfiguration::configure_output(size_t idx, const LogTagLevelExpression& tag_level_expression, const LogDecorators& decorators) { argument
226 // Update decorators before adding/updating output level,
227 // so that the tagset will have the necessary decorators when requiring them.
229 ts->update_decorators(decorators);
251 // It is now safe to set the new decorators for the actual output
252 output->set_decorators(decorators);
254 // Update the decorators on all tagsets to get rid of unused decorators
323 // Apply configuration to stdout (output #0), with the same decorators as before.
325 configure_output(0, expr, _outputs[0]->decorators());
362 char* decorators = substrings[2]; local
398 LogDecorators decorators; local
[all...]
H A DlogOutput.cpp91 if (decorators().is_decorator(decorator)) {
H A DlogTagSet.cpp60 new_decorators.combine_with((*it)->decorators());
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/assembler/dev/
H A DTubelineAssemblyDecorator.java41 * @param decorators decorators
42 * @return composite that delegates to a list of decorators
44 public static TubelineAssemblyDecorator composite(Iterable<TubelineAssemblyDecorator> decorators) { argument
45 return new CompositeTubelineAssemblyDecorator(decorators);
115 private Collection<TubelineAssemblyDecorator> decorators = new ArrayList<TubelineAssemblyDecorator>(); field in class:TubelineAssemblyDecorator.CompositeTubelineAssemblyDecorator
117 public CompositeTubelineAssemblyDecorator(Iterable<TubelineAssemblyDecorator> decorators) { argument
118 for (TubelineAssemblyDecorator decorator : decorators) {
119 this.decorators.add(decorator);
125 for (TubelineAssemblyDecorator decorator : decorators) {
[all...]
/openjdk9/hotspot/test/native/logging/
H A DlogTestFixture.hpp44 const char* decorators = "",
H A Dtest_logDecorators.cpp46 // Assert that the given decorators object has the default decorators (uptime, level, tags)
47 // If exclusive = true, also assert that no other decorators are selected
48 static void assert_default_decorators(LogDecorators* decorators, bool exclusive = true) { argument
54 EXPECT_TRUE(decorators->is_decorator(decorator));
56 EXPECT_FALSE(decorators->is_decorator(decorator));
62 LogDecorators decorators; local
63 assert_default_decorators(&decorators);
110 LogDecorators decorators; local
111 decorators
117 LogDecorators decorators; local
126 LogDecorators decorators; local
145 LogDecorators decorators; local
[all...]
H A DlogTestFixture.cpp49 const char* decorators,
54 bool success = LogConfiguration::parse_log_arguments(output, what, decorators, options, &stream);
47 set_log_config(const char* output, const char* what, const char* decorators, const char* options, bool allow_failure) argument
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DCFGPrinterObserver.java96 ArrayList<String> decorators = new ArrayList<>();
100 decorators.clear();
105 decorators.clear();
110 decorators.add(debugDumpScope.name);
119 if (!method.equals(curMethod) || !curDecorators.equals(decorators)) {
124 curDecorators = decorators;

Completed in 146 milliseconds