Searched refs:decorator (Results 1 - 19 of 19) sorted by relevance

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DDebugDumpScope.java31 * nested scopes may choose to represent a decorator scope at the same level as the scope it
34 public final boolean decorator; field in class:DebugDumpScope
40 public DebugDumpScope(String name, boolean decorator) { argument
42 this.decorator = decorator;
/openjdk9/hotspot/src/share/vm/logging/
H A DlogDecorators.hpp75 static uint mask(LogDecorators::Decorator decorator) { argument
76 return 1 << decorator;
92 static const char* name(LogDecorators::Decorator decorator) { argument
93 return _name[decorator][0];
96 static const char* abbreviation(LogDecorators::Decorator decorator) { argument
97 return _name[decorator][1];
110 bool is_decorator(LogDecorators::Decorator decorator) const {
111 return (_decorators & mask(decorator)) != 0;
H A DlogDecorations.hpp60 const char* decoration(LogDecorators::Decorator decorator) const {
61 if (decorator == LogDecorators::level_decorator) {
64 return _decoration_offset[decorator];
H A DlogFileStreamOutput.cpp56 LogDecorators::Decorator decorator = static_cast<LogDecorators::Decorator>(i); local
57 if (!_decorators.is_decorator(decorator)) {
62 _decorator_padding[decorator],
63 decorations.decoration(decorator));
66 } else if (static_cast<size_t>(written - 2) > _decorator_padding[decorator]) {
67 _decorator_padding[decorator] = written - 2;
H A DlogOutput.cpp90 LogDecorators::Decorator decorator = static_cast<LogDecorators::Decorator>(d); local
91 if (decorators().is_decorator(decorator)) {
92 out->print("%s%s", delimiter, LogDecorators::name(decorator));
H A DlogTagSet.cpp57 void LogTagSet::update_decorators(const LogDecorators& decorator) { argument
58 LogDecorators new_decorators = decorator;
H A DlogTagSet.hpp107 void update_decorators(const LogDecorators& decorator = LogDecorators::None);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/assembler/dev/
H A DTubelineAssemblyDecorator.java40 * Composite decorator
118 for (TubelineAssemblyDecorator decorator : decorators) {
119 this.decorators.add(decorator);
125 for (TubelineAssemblyDecorator decorator : decorators) {
126 tube = decorator.decorateClient(tube, context);
134 for (TubelineAssemblyDecorator decorator : decorators) {
135 tube = decorator.decorateClientHead(tube, context);
144 for (TubelineAssemblyDecorator decorator : decorators) {
145 tube = decorator.decorateClientTail(tube, context);
151 for (TubelineAssemblyDecorator decorator
[all...]
/openjdk9/hotspot/test/native/logging/
H A Dtest_logDecorators.cpp50 LogDecorators::Decorator decorator = decorator_array[i]; local
51 if (decorator == LogDecorators::uptime_decorator ||
52 decorator == LogDecorators::level_decorator ||
53 decorator == LogDecorators::tags_decorator) {
54 EXPECT_TRUE(decorators->is_decorator(decorator));
56 EXPECT_FALSE(decorators->is_decorator(decorator));
66 // Test converting between name and decorator (string and enum)
72 LogDecorators::Decorator decorator = decorator_array[i]; local
74 const char* name = LogDecorators::name(decorator);
78 EXPECT_EQ(decorator, decorator
92 LogDecorators::Decorator decorator = decorator_array[i]; local
134 assert_decorations_between(const LogDecorators* decorator, size_t first, size_t last) argument
[all...]
H A Dtest_logDecorations.cpp87 const LogDecorators::Decorator decorator; member in struct:__anon739
97 LogDecorators::Decorator decorator = test_decorator[i].decorator; local
99 ASSERT_TRUE(decorator_selection.parse(LogDecorators::name(decorator)));
101 // Create decorations with the decorator we want to test included
103 const char* decoration = decorations.decoration(decorator);
117 julong val = strtoull(d.decoration(decorator), NULL, 10);
207 LogDecorators::Decorator decorator; member in struct:__anon740
214 const char* reported = decorations.decoration(ids[i].decorator);
H A Dtest_logConfiguration.cpp75 // Verify that each tag, level and decorator is listed
293 // And for each decorator
295 const LogDecorators::Decorator decorator = static_cast<LogDecorators::Decorator>(d); local
296 EXPECT_TRUE(LogConfiguration::parse_log_arguments("#0", "", LogDecorators::name(decorator), "", &ss));
/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DGraphicComponent.java66 private Decoration decorator; field in class:GraphicComponent
74 Decoration decorator,
86 this.decorator = decorator;
97 this.decorator = parent.decorator;
201 visualBounds = decorator.getVisualBounds(this);
232 return decorator.getOutline(this, x, y);
246 decorator.drawTextAndDecorations(this, g2d, x, y);
251 return decorator
73 GraphicComponent(GraphicAttribute graphic, Decoration decorator, int[] charsLtoV, byte[] levels, int start, int limit, AffineTransform baseTx) argument
[all...]
H A DTextLabelFactory.java118 Decoration decorator,
133 return new ExtendedTextSourceLabel(source, decorator);
116 createExtended(Font font, CoreMetrics lm, Decoration decorator, int start, int limit) argument
H A DExtendedTextSourceLabel.java60 private Decoration decorator; field in class:ExtendedTextSourceLabel
77 public ExtendedTextSourceLabel(TextSource source, Decoration decorator) { argument
79 this.decorator = decorator;
91 this.decorator = oldLabel.decorator;
141 vb = decorator.getVisualBounds(this);
176 return decorator == Decoration.getPlainDecoration() &&
189 return decorator.getOutline(this, x, y);
197 decorator
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/assembler/
H A DMetroTubelineAssembler.java109 TubelineAssemblyDecorator decorator = TubelineAssemblyDecorator.composite(
123 if (!context.setTubelineHead(decorator.decorateClient(tubeCreator.createTube(context), context))) { // no new tube has been created
141 context.setTubelineHead(decorator.decorateClientTail(context.getTubelineHead(), context));
146 return decorator.decorateClientHead(context.getTubelineHead(), context);
163 TubelineAssemblyDecorator decorator = TubelineAssemblyDecorator.composite(
177 if (!context.setTubelineHead(decorator.decorateServer(tubeCreator.createTube(context), context))) { // no new tube has been created
195 context.setTubelineHead(decorator.decorateServerTail(context.getTubelineHead(), context));
200 return decorator.decorateServerHead(context.getTubelineHead(), context);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.salver/src/org/graalvm/compiler/salver/util/
H A DMethodContext.java91 if (debugDumpScope.decorator && !isEmpty()) {
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/font/
H A DTextLine.java951 Decoration decorator = Decoration.getDecoration(values);
963 decorator,
1003 Decoration decorator,
1025 factory.createExtended(font, cm, decorator, startPos, startPos + lmCount);
1063 Decoration decorator = styledParagraph.getDecorationAt(pos);
1079 new GraphicComponent(graphicAttribute, decorator, charsLtoV, levels, pos, chunkLimit, baseRot);
1099 decorator,
994 createComponentsOnRun(int runStart, int runLimit, char[] chars, int[] charsLtoV, byte[] levels, TextLabelFactory factory, Font font, CoreMetrics cm, FontRenderContext frc, Decoration decorator, TextLineComponent[] components, int numComponents) argument
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DCFGPrinterObserver.java90 * Looks for the outer most method and its {@link DebugDumpScope#decorator}s in the current
92 * and decorator pair.
109 if (debugDumpScope.decorator) {
H A DGraphPrinterDumpHandler.java202 if (debugDumpScope.decorator && !result.isEmpty()) {

Completed in 232 milliseconds