Searched defs:base (Results 76 - 100 of 291) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DDHCrypt.java59 * . if we are client, call DHCrypt(modulus, base, random). This
82 private BigInteger base; // G (aka alpha) field in class:DHCrypt
108 base = spec.getG();
119 * @param base the Diffie-Hellman base G
121 DHCrypt(BigInteger modulus, BigInteger base, SecureRandom random) { argument
123 this.base = base;
126 DHParameterSpec params = new DHParameterSpec(modulus, base);
162 /** Returns the Diffie-Hellman base (generato
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFieldUpdater.java61 // If the field is static, 'base' may be null, but need not be, as a static field
64 private Expression base; field in class:FieldUpdater
79 Expression base, MemberDefinition getter, MemberDefinition setter) {
82 this.base = base;
95 if (base != null) {
97 base = base.inline(env, ctx);
99 base = base
78 FieldUpdater(long where, MemberDefinition field, Expression base, MemberDefinition getter, MemberDefinition setter) argument
[all...]
/openjdk7/langtools/test/tools/javac/Paths/6638501/
H A DJarFromManifestFailure.java98 static void jar(File jar, Iterable<File> classPath, File base, File... files) argument
109 add(j, base, files);
113 static void add(JarOutputStream j, File base, File... files) throws IOException { argument
118 add(j, base, f);
121 static void add(JarOutputStream j, File base, File file) throws IOException { argument
122 File f = new File(base, file.getPath());
130 add(j, base, new File(file, c));
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DUtil.java134 public static String replace(String base, char ch, String str) { argument
135 return (base.indexOf(ch) < 0) ? base :
136 replace(base, String.valueOf(ch), new String[] { str });
139 public static String replace(String base, String delim, String[] str) { argument
140 final int len = base.length();
144 final char ch = base.charAt(i);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSubstitutionGroupHandler.java115 private boolean typeDerivationOK(XSTypeDefinition derived, XSTypeDefinition base, short blockingConstraint) { argument
119 // "derived" should be derived from "base"
121 // add block of base types to blockConstraint.
123 while (type != base && type != SchemaGrammar.fAnyType) {
132 // whose base type should be anyType
140 if (type != base) {
141 // If the base is a union, check if "derived" is allowed through any of the member types.
142 if (base.getTypeCategory() == XSTypeDefinition.SIMPLE_TYPE) {
143 XSSimpleTypeDefinition st = (XSSimpleTypeDefinition) base;
319 // whose base typ
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DSourceTreeManager.java90 * @return The base URI of the owner argument.
111 * @param base The base URI that should be used.
121 String base, String urlString, SourceLocator locator)
129 source = m_uriResolver.resolve(urlString, base);
134 String uri = SystemIDResolver.getAbsoluteURI(urlString, base);
228 * Get the source tree from the a base URL and a URL string.
230 * @param base The base URI to use if the urlString is relative.
235 * base an
120 resolveURI( String base, String urlString, SourceLocator locator) argument
239 getSourceTree( String base, String urlString, SourceLocator locator, XPathContext xctxt) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciMethodData.java77 private byte[] fetchDataAt(Address base, long size) { argument
80 result[i] = base.getJByteAt(i);
87 Address base = getAddress().addOffsetTo(origField.getOffset());
90 result[i] = base.getJByteAt(i);
97 Address base = dataField.getValue(getAddress());
101 Address value = base.getAddressAt(i * MethodData.cellSize);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicDebugEvent.java59 public static BasicDebugEvent newLoadObjectLoadEvent(ThreadProxy thread, Address base) { argument
60 return newAddressEvent(DebugEvent.Type.LOADOBJECT_LOAD, thread, base);
63 public static BasicDebugEvent newLoadObjectUnloadEvent(ThreadProxy thread, Address base) { argument
64 return newAddressEvent(DebugEvent.Type.LOADOBJECT_UNLOAD, thread, base);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DDLL.java55 public DLL(Address base) throws COFFException { argument
56 this.addr = base;
130 long base = dbg.getAddressValue(addr);
133 long tmp = base + (exports.getExportAddress(exports.getExportOrdinal(i)) & 0xFFFFFFFF);
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicIntegerArray.java52 private static final int base = unsafe.arrayBaseOffset(int[].class); field in class:AtomicIntegerArray
71 return ((long) i << shift) + base;
H A DAtomicLongArray.java51 private static final int base = unsafe.arrayBaseOffset(long[].class); field in class:AtomicLongArray
70 return ((long) i << shift) + base;
H A DAtomicReferenceArray.java49 * @param <E> The base class of elements held in this array
55 private static final int base; field in class:AtomicReferenceArray
66 base = unsafe.arrayBaseOffset(Object[].class);
84 return ((long) i << shift) + base;
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.hpp130 const jbyte* base() const { return &_body[0]; } function in class:Symbol
146 return base()[index];
149 const jbyte* bytes() const { return base(); }
/openjdk7/jdk/src/share/classes/com/sun/tools/extcheck/
H A DExtCheck.java319 * from a base URL. Somewhat modified version of code in
323 private final URL base; field in class:ExtCheck.JarLoader
342 base = tmpBaseURL;
347 * Returns the base URL for this Loader.
350 return base;
392 * an array of URLs relative to the specified base URL.
394 private URL[] parseClassPath(URL base, String value) argument
402 urls[i] = new URL(base, path);
/openjdk7/jdk/src/share/classes/java/awt/
H A DFileDialog.java130 private static final String base = "filedlg"; field in class:FileDialog
309 return base + nameCounter++;
H A DMenuBar.java111 private static final String base = "menubar"; field in class:MenuBar
134 return base + nameCounter++;
/openjdk7/hotspot/src/share/vm/adlc/
H A Dmain.cpp31 static char *base_plus_suffix(const char* base, const char *suffix);// New concatenated string
32 static char *prefix_plus_base_plus_suffix(const char* prefix, const char* base, const char *suffix);// New concatenated string
89 const char *base = strip_ext(strdup(s)); local
90 AD._CPP_CLONE_file._name = base_plus_suffix(base,"_clone.cpp");
91 AD._CPP_EXPAND_file._name = base_plus_suffix(base,"_expand.cpp");
92 AD._CPP_FORMAT_file._name = base_plus_suffix(base,"_format.cpp");
93 AD._CPP_GEN_file._name = base_plus_suffix(base,"_gen.cpp");
94 AD._CPP_MISC_file._name = base_plus_suffix(base,"_misc.cpp");
95 AD._CPP_PEEPHOLE_file._name = base_plus_suffix(base,"_peephole.cpp");
96 AD._CPP_PIPELINE_file._name = base_plus_suffix(base,"_pipelin
143 const char *base = strip_ext(strdup(argv[i])); local
461 base_plus_suffix(const char* base, const char *suffix) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacCore.java246 private HmacSHA256(HmacSHA256 base) throws CloneNotSupportedException { argument
247 core = (HmacCore)base.core.clone();
282 private HmacSHA384(HmacSHA384 base) throws CloneNotSupportedException { argument
283 core = (HmacCore)base.core.clone();
318 private HmacSHA512(HmacSHA512 base) throws CloneNotSupportedException { argument
319 core = (HmacCore)base.core.clone();
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder.hpp50 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0;
87 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) { argument
104 static bool decode(address pc, char* buf, int buflen, int* offset, const void* base);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DC14nXmlOutput.java192 protected void writeNsDecls(int base) throws IOException { argument
202 nsBuf[i] = base+i;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DStep.java63 protected abstract Iterator<? extends T> filter( Iterator<? extends T> base );
102 protected Iterator<? extends XSComponent> filter(Iterator<? extends XSComponent> base) { argument
103 return base;
112 protected Iterator<T> filter(Iterator<? extends T> base) { argument
113 return new Iterators.Filter<T>(base) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DDocCommentScanner.java33 /** An extension to the base lexical analyzer that captures
107 /** Convert an ASCII digit from its base (8, 10, or 16)
110 private int digit(int base) { argument
112 int result = Character.digit(c, base);
144 // "illegal.Unicode.esc", reported by base scanner
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DMarkToLigaturePosnSubtables.cpp53 le_int32 MarkToLigaturePositioningSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const argument
56 le_int32 markCoverage = getGlyphCoverage(base, (LEGlyphID) markGlyph, success);
78 // FIXME: we probably don't want to find a ligature before a previous base glyph...
81 le_int32 ligatureCoverage = getBaseCoverage(base, (LEGlyphID) ligatureGlyph, success);
H A DValueRecords.cpp62 void ValueRecord::adjustPosition(ValueFormat valueFormat, const char *base, GlyphIterator &glyphIterator, argument
121 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
132 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
143 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
154 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
166 void ValueRecord::adjustPosition(le_int16 index, ValueFormat valueFormat, const char *base, GlyphIterator &glyphIterator, argument
225 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
236 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
247 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
258 const DeviceTable *dt = (const DeviceTable *) (base
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD4.java95 private MD4(MD4 base) { argument
96 super(base);
97 this.state = base.state.clone();

Completed in 92 milliseconds

1234567891011>>