Searched defs:core (Results 101 - 110 of 110) sorted by relevance

12345

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DDOMForest.java99 private final Map<String,Document> core = new HashMap<String,Document>(); field in class:DOMForest
160 Document doc = core.get(systemId);
169 doc = core.get( "file://"+systemId.substring(5) );
176 for (String key : core.keySet()) {
178 doc = core.get(key);
208 for (Document dom : core.values()) {
252 for (Map.Entry<String,Document> e : core.entrySet()) {
277 if( core.containsKey(systemId) )
279 return core.get(systemId);
340 core
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DClassBinderFilter.java53 private final ClassBinder core; field in class:ClassBinderFilter
55 protected ClassBinderFilter(ClassBinder core) { argument
56 this.core = core;
60 return core.annotation(xsAnnotation);
64 return core.attGroupDecl(xsAttGroupDecl);
68 return core.attributeDecl(xsAttributeDecl);
72 return core.attributeUse(xsAttributeUse);
76 return core.complexType(xsComplexType);
80 return core
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DElementBeanInfoImpl.java38 import com.sun.xml.internal.bind.v2.model.core.PropertyKind;
204 private final Loader core; field in class:ElementBeanInfoImpl.IntercepterLoader
206 public IntercepterLoader(Loader core) { argument
207 this.core = core;
212 state.loader = core;
239 core.startElement(state,ea);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DLister.java52 import com.sun.xml.internal.bind.v2.model.core.Adapter;
53 import com.sun.xml.internal.bind.v2.model.core.ID;
322 private final Lister<BeanT,PropT,Object,Object> core; field in class:Lister.IDREFS
328 public IDREFS(Lister core, Class itemType) { argument
329 this.core = core;
334 final ListIterator i = core.iterator(prop,context);
351 core.reset(bean,acc);
381 Object pack = core.startPacking(bean,acc);
399 core
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamReaderFilter.java51 public XMLStreamReaderFilter(XMLStreamReader core) { argument
52 this.reader = core;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DDelegatingParserExtension.java41 protected final WSDLParserExtension core; field in class:DelegatingParserExtension
43 public DelegatingParserExtension(WSDLParserExtension core) { argument
44 this.core = core;
48 core.start(context);
52 core.serviceAttributes(service, reader);
56 return core.serviceElements(service, reader);
60 core.portAttributes(port, reader);
64 return core.portElements(port, reader);
68 return core
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPKCS12PBECipherCore.java381 private final PKCS12PBECipherCore core; field in class:PKCS12PBECipherCore.PBEWithSHA1AndDESede
383 core = new PKCS12PBECipherCore("DESede", 24);
387 return core.implDoFinal(in, inOff, inLen);
393 return core.implDoFinal(in, inOff, inLen, out, outOff);
396 return core.implGetBlockSize();
399 return core.implGetIV();
402 return core.implGetKeySize(key);
405 return core.implGetOutputSize(inLen);
408 return core.implGetParameters();
414 core
456 private final PKCS12PBECipherCore core; field in class:PKCS12PBECipherCore.PBEWithSHA1AndRC2_40
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeClassInfoImpl.java50 import com.sun.xml.internal.bind.v2.model.core.PropertyKind;
294 private final PropertySeed<Type,Class,Field,Method> core; field in class:RuntimeClassInfoImpl.RuntimePropertySeed
296 public RuntimePropertySeed(PropertySeed<Type,Class,Field,Method> core, Accessor acc) { argument
297 this.core = core;
302 return core.getName();
306 return core.readAnnotation(annotationType);
310 return core.hasAnnotation(annotationType);
314 return core.getRawType();
318 return core
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java61 public abstract void attach(String java, String core); argument
351 new Command("attach", "attach pid | exec core", true) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java87 * tasks. Most typically, core and maximum pool sizes are set only
93 * <dd> By default, even core threads are initially created and
130 * time-out policy to core threads as well, so long as the
265 * keep-alive times, using a lower bound of zero core threads and/or
522 * If false (default), core threads stay alive even when idle.
523 * If true, core threads use keepAliveTime to time out waiting
868 * pool state and the given bound (either core or maximum). If so,
886 * @param core if true use corePoolSize as bound, else
892 private boolean addWorker(Runnable firstTask, boolean core) { argument
908 wc >= (core
[all...]

Completed in 73 milliseconds

12345