Searched refs:context (Results 1 - 25 of 1291) sorted by relevance

1234567891011>>

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/
H A DDTMAxisTraverser.java49 * By the nature of the stateless traversal, the context node can not be
56 * @param context The context node of this traversal. This is the point
60 public int first(int context) argument
62 return next(context, context);
66 * By the nature of the stateless traversal, the context node can not be
73 * @param context The context node of this traversal. This is the point
79 public int first(int context, in argument
98 next(int context, int current) argument
116 next(int context, int current, int extendedTypeID) argument
[all...]
/openjdk10/jdk/test/tools/launcher/modules/upgrademodulepath/src/java.enterprise/javax/enterprise/context/
H A DScope.java24 package javax.enterprise.context;
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/handler/
H A DHandler.java33 * @param <C> message context
42 * @param context the message context.
56 public boolean handleMessage(C context); argument
62 * @param context the message context
76 public boolean handleFault(C context); argument
84 * @param context the message context
86 public void close(MessageContext context); argument
[all...]
/openjdk10/hotspot/src/share/vm/shark/
H A DsharkType.hpp37 static SharkContext& context() { function in class:SharkType
44 return context().void_type();
47 return context().bit_type();
50 return context().jbyte_type();
53 return context().jshort_type();
56 return context().jint_type();
59 return context().jlong_type();
62 return context().jfloat_type();
65 return context().jdouble_type();
68 return context()
[all...]
/openjdk10/jdk/test/tools/launcher/modules/upgrademodulepath/src/java.enterprise/
H A Dmodule-info.java25 exports javax.enterprise.context;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/
H A DGenericContext.java33 private ArrayList<Object> context; field in class:GenericContext
36 context = null;
40 if (context == null) {
41 context = new ArrayList<>();
43 context.add(obj);
48 if (context != null) {
49 for (Object e : context) {
60 if (context != null) {
61 ListIterator<Object> it = context.listIterator();
67 if (context
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/util/pipe/
H A DStandalonePipeAssembler.java45 public Pipe createClient(ClientPipeAssemblerContext context) { argument
46 Pipe head = context.createTransportPipe();
47 head = context.createSecurityPipe(head);
52 head = context.createDumpPipe("client", System.out, head);
54 head = context.createWsaPipe(head);
55 head = context.createClientMUPipe(head);
56 return context.createHandlerPipe(head);
64 public Pipe createServer(ServerPipeAssemblerContext context) { argument
65 Pipe head = context.getTerminalPipe();
66 head = context
[all...]
H A DStandaloneTubeAssembler.java44 public Tube createClient(ClientTubeAssemblerContext context) { argument
45 Tube head = context.createTransportTube();
46 head = context.createSecurityTube(head);
50 head = context.createDumpTube("client", System.out, head);
52 head = context.createWsaTube(head);
53 head = context.createClientMUTube(head);
54 head = context.createValidationTube(head);
55 return context.createHandlerTube(head);
63 public Tube createServer(ServerTubeAssemblerContext context) { argument
64 Tube head = context
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/org/relaxng/datatype/helpers/
H A DStreamingValidatorImpl.java52 * public DatatypeStreamingValidator createStreamingValidator( ValidationContext context ) {
53 * return new StreamingValidatorImpl(this,context);
69 /** The current context. */
70 private final ValidationContext context; field in class:StreamingValidatorImpl
78 return baseType.isValid(buffer.toString(),context);
82 baseType.checkValid(buffer.toString(),context);
85 public StreamingValidatorImpl( Datatype baseType, ValidationContext context ) {
87 this.context = context;
/openjdk10/jdk/src/jdk.httpserver/share/classes/com/sun/net/httpserver/
H A DHttpsConfigurator.java72 private SSLContext context; field in class:HttpsConfigurator
76 * @param context the SSLContext to use for this configurator
79 public HttpsConfigurator (SSLContext context) { argument
80 if (context == null) {
83 this.context = context;
91 return context;
/openjdk10/jdk/src/java.desktop/unix/native/libfontmanager/
H A DX11FontScaler.c53 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
55 if (context != NULL) {
56 if (context->xFont != NULL) {
57 AWTFreeFont(context->xFont);
59 free(context);
67 NativeScalerContext *context = local
69 context->xFont = NULL;
70 context->minGlyph = 0;
71 context->maxGlyph = 0;
72 context
83 NativeScalerContext *context; local
205 NativeScalerContext *context = (NativeScalerContext*) local
223 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
235 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
274 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
295 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
316 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DImagePainter.java126 private void paint(SynthContext context, Graphics g, int x, int y, int w, argument
144 imageCache.paint(context.getComponent(), g, x, y, w, h,
152 public void paintArrowButtonBackground(SynthContext context, argument
155 paint(context, g, x, y, w, h);
158 public void paintArrowButtonBorder(SynthContext context, argument
161 paint(context, g, x, y, w, h);
164 public void paintArrowButtonForeground(SynthContext context, argument
168 paint(context, g, x, y, w, h);
172 public void paintButtonBackground(SynthContext context, argument
175 paint(context,
178 paintButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
185 paintCheckBoxMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
191 paintCheckBoxMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
198 paintCheckBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
204 paintCheckBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
211 paintColorChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
217 paintColorChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
224 paintComboBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
230 paintComboBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
237 paintDesktopIconBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
243 paintDesktopIconBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
250 paintDesktopPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
256 paintDesktopPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
263 paintEditorPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
269 paintEditorPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
276 paintFileChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
282 paintFileChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
289 paintFormattedTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
295 paintFormattedTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
302 paintInternalFrameTitlePaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
308 paintInternalFrameTitlePaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
315 paintInternalFrameBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
321 paintInternalFrameBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
328 paintLabelBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
334 paintLabelBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
341 paintListBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
347 paintListBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
354 paintMenuBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
360 paintMenuBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
367 paintMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
373 paintMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
380 paintMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
386 paintMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
393 paintOptionPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
399 paintOptionPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
406 paintPanelBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
412 paintPanelBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
419 paintPasswordFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
425 paintPasswordFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
432 paintPopupMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
438 paintPopupMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
445 paintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
451 paintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
457 paintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
463 paintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
469 paintProgressBarForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
476 paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
482 paintRadioButtonMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
489 paintRadioButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
495 paintRadioButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
502 paintRootPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
508 paintRootPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
515 paintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
521 paintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
527 paintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
533 paintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
540 paintScrollBarThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
546 paintScrollBarThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
553 paintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
559 paintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
565 paintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
571 paintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
578 paintScrollPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
584 paintScrollPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
591 paintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
597 paintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
603 paintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
609 paintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
615 paintSeparatorForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
622 paintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
628 paintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
634 paintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
640 paintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
647 paintSliderThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
653 paintSliderThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
660 paintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
666 paintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
672 paintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
679 paintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
686 paintSpinnerBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
692 paintSpinnerBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
699 paintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
705 paintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
711 paintSplitPaneDividerForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
717 paintSplitPaneDragDivider(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
724 paintSplitPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
730 paintSplitPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
737 paintTabbedPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
743 paintTabbedPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
750 paintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
756 paintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
762 paintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
768 paintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
775 paintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex) argument
781 paintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation) argument
787 paintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex) argument
793 paintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation) argument
800 paintTabbedPaneContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
806 paintTabbedPaneContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
812 paintTableHeaderBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
818 paintTableHeaderBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
825 paintTableBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
831 paintTableBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
838 paintTextAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
844 paintTextAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
851 paintTextPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
857 paintTextPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
864 paintTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
870 paintTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
877 paintToggleButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
883 paintToggleButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
890 paintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
896 paintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
902 paintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
908 paintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
915 paintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
921 paintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
927 paintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
933 paintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
940 paintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
946 paintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
952 paintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
958 paintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
965 paintToolTipBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
971 paintToolTipBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
978 paintTreeBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
984 paintTreeBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
991 paintTreeCellBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
997 paintTreeCellBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
1003 paintTreeCellFocus(SynthContext context, Graphics g, int x, int y, int w, int h) argument
1010 paintViewportBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
1016 paintViewportBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthLabelUI.java68 SynthContext context = getContext(c, ENABLED);
69 style = SynthLookAndFeel.updateStyle(context, this);
77 SynthContext context = getContext(c, ENABLED);
79 style.uninstallDefaults(context);
131 SynthContext context = getContext(label);
132 FontMetrics fm = context.getComponent().getFontMetrics(
133 context.getStyle().getFont(context));
134 context.getStyle().getGraphicsUtils(context)
199 paint(SynthContext context, Graphics g) argument
218 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/image/
H A DBufImgVolatileSurfaceManager.java46 public BufImgVolatileSurfaceManager(SunVolatileImage vImg, Object context) { argument
47 super(vImg, context);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/assembler/dev/
H A DTubelineAssemblyContextUpdater.java38 * @param context
41 void prepareContext(ClientTubelineAssemblyContext context) throws WebServiceException; argument
46 * @param context
49 void prepareContext(ServerTubelineAssemblyContext context) throws WebServiceException; argument
/openjdk10/jdk/test/javax/script/
H A DTest3.js7 // pre-defined context variable refers to current ScriptContext
8 if (context.getAttribute('key', ScriptContext.GLOBAL_SCOPE) != 'global value') {
15 if (context.getAttribute('key', ScriptContext.GLOBAL_SCOPE) != 'global value') {
H A DTest5.js11 if (context.getAttribute("key", ScriptContext.GLOBAL_SCOPE ) != null) {
21 if (context.getAttribute("key", ScriptContext.GLOBAL_SCOPE ) !=
32 if (context.getAttribute("key", ScriptContext.GLOBAL_SCOPE ) !=
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DUnmarshallerChain.java50 public final JAXBContextImpl context; field in class:UnmarshallerChain
52 public UnmarshallerChain(JAXBContextImpl context) { argument
53 this.context = context;
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/dnd/
H A DDropTargetEvent.java60 context = dtc;
71 return context;
80 protected DropTargetContext context; field in class:DropTargetEvent
/openjdk10/jdk/src/jdk.jconsole/share/classes/com/sun/tools/jconsole/
H A DJConsolePlugin.java75 private volatile JConsoleContext context = null; field in class:JConsolePlugin
88 * is called. The given {@code context} can be in any
92 * @param context a {@code JConsoleContext} object
94 public final synchronized void setContext(JConsoleContext context) { argument
95 this.context = context;
98 context.addPropertyChangeListener(l);
108 * if it is called before the {@link #setContext context} is initialized.
114 return context;
203 if (context
[all...]
/openjdk10/jdk/test/java/beans/beancontext/
H A DTest4233980.java36 BeanContextSupport context = new BeanContextSupport(); // The BeanContext
38 // add the bean to the context
39 context.add(bean);
41 context.getResourceAsStream("Readme.txt", bean);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseTraversers.java208 * @param context The context node if this iteration.
213 public int next(int context, int current) argument
222 * @param context The context node of this iteration.
228 public int next(int context, int current, int expandedTypeID) argument
250 * By the nature of the stateless traversal, the context node can not be
254 * @param context The context node of this traversal.
258 public int first(int context) argument
275 first(int context, int expandedTypeID) argument
296 next(int context, int current) argument
312 next(int context, int current, int expandedTypeID) argument
410 first(int context) argument
429 first(int context, int expandedTypeID) argument
462 next(int context, int current) argument
477 next(int context, int current, int expandedTypeID) argument
681 first(int context, int expandedTypeID) argument
703 next(int context, int current) argument
732 next(int context, int current, int expandedTypeID) argument
787 first(int context) argument
807 next(int context, int current) argument
842 first(int context) argument
880 first(int context, int expandedTypeID) argument
928 next(int context, int current) argument
960 next(int context, int current, int expandedTypeID) argument
996 next(int context, int current) argument
1011 next(int context, int current, int expandedTypeID) argument
1038 next(int context, int current) argument
1056 next(int context, int current, int expandedTypeID) argument
1089 next(int context, int current) argument
1107 next(int context, int current, int expandedTypeID) argument
1143 first(int context) argument
1185 next(int context, int current) argument
1203 next(int context, int current, int expandedTypeID) argument
1247 next(int context, int current) argument
1276 next(int context, int current, int expandedTypeID) argument
1311 next(int context, int current) argument
1339 next(int context, int current, int expandedTypeID) argument
1372 next(int context, int current) argument
1387 next(int context, int current, int expandedTypeID) argument
1415 first(int context) argument
1432 first(int context, int expandedTypeID) argument
1445 next(int context, int current) argument
1460 next(int context, int current, int expandedTypeID) argument
1479 first(int context) argument
1492 first(int context, int expandedTypeID) argument
1506 next(int context, int current) argument
1532 next(int context, int current, int expandedTypeID) argument
1566 first(int context, int expandedTypeID) argument
1581 next(int context, int current) argument
1596 next(int context, int current, int expandedTypeID) argument
1640 first(int context) argument
1659 first(int context, int expandedTypeID) argument
1711 first(int context) argument
1730 first(int context, int expandedTypeID) argument
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/api/wsdl/
H A DTWSDLExtensionHandler.java51 * @param context Parser context that will be passed on by the wsdl parser
57 public boolean doHandleExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) { argument
59 return handleDefinitionsExtension(context, parent, e);
61 return handleTypesExtension(context, parent, e);
63 return handlePortTypeExtension(context, parent, e);
66 return handleBindingExtension(context, parent, e);
69 return handleOperationExtension(context, parent, e);
71 return handleInputExtension(context, parent, e);
74 return handleOutputExtension(context, paren
96 handlePortTypeExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
109 handleDefinitionsExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
122 handleTypesExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
135 handleBindingExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
148 handleOperationExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
161 handleInputExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
174 handleOutputExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
187 handleFaultExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
200 handleServiceExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
213 handlePortExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/
H A DNamespaceContextIterator.java38 Node context; field in class:NamespaceContextIterator
46 public NamespaceContextIterator(Node context) { argument
47 this.context = context;
51 public NamespaceContextIterator(Node context, boolean traverseStack) { argument
52 this(context);
57 while (context != null) {
58 int type = context.getNodeType();
60 attributes = context.getAttributes();
65 context
[all...]
/openjdk10/jdk/test/javax/swing/text/WrappedPlainView/6857057/
H A DStubLeafElement.java28 String context; field in class:StubLeafElement
32 public StubLeafElement(String context, Element parent, int position) { argument
33 this.context = context;
37 document.insertString(0, context, new SimpleAttributeSet());

Completed in 315 milliseconds

1234567891011>>