Searched defs:base (Results 151 - 175 of 291) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixPath.java373 // Resolve child against given base
374 private static byte[] resolve(byte[] base, byte[] child) { argument
375 int baseLength = base.length;
378 return base;
382 if (baseLength == 1 && base[0] == '/') {
388 System.arraycopy(base, 0, result, 0, baseLength);
389 result[base.length] = '/';
444 // result is a "../" for each remaining name in base
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.c152 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base) { argument
153 return add_lib_info_fd(ph, libname, -1, base);
156 lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd, uintptr_t base) { argument
165 newlib->base = base;
220 uintptr_t res = search_symbol(lib->symtab, lib->base, sym_name, NULL);
236 if (lib->symtab && addr >= lib->base) {
237 res = nearest_symbol(lib->symtab, addr - lib->base, poffset);
361 // get base address of a lib
367 return lib->base;
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.c153 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base) { argument
154 return add_lib_info_fd(ph, libname, -1, base);
157 lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd, uintptr_t base) { argument
166 newlib->base = base;
218 uintptr_t res = search_symbol(lib->symtab, lib->base, sym_name, NULL);
234 if (lib->symtab && addr >= lib->base) {
235 res = nearest_symbol(lib->symtab, addr - lib->base, poffset);
359 // get base address of a lib
365 return lib->base;
[all...]
H A Dsymtab.c507 uintptr_t search_symbol(struct symtab* symtab, uintptr_t base, argument
520 uintptr_t rslt = (uintptr_t) ((char*)base + sym->offset);
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedBreakIterator.java1050 * This iterator relies only on base.setIndex(n) where n is less than
1053 * One caveat: if the base iterator's begin and end indices change
1059 private CharacterIterator base; field in class:RuleBasedBreakIterator.SafeCharIterator
1064 SafeCharIterator(CharacterIterator base) { argument
1065 this.base = base;
1066 this.rangeStart = base.getBeginIndex();
1067 this.rangeLimit = base.getEndIndex();
1068 this.currentIndex = base.getIndex();
1084 return base
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp69 void reset( address base, unsigned int size ) { argument
71 _start = _pc = base; _end = base + size;
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.hpp232 address base() const { return (address)reserved_region().start(); } function in class:CollectedHeap
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp625 // and only have different constant offsets from the same base.
683 // Split an oop pointer into a base and offset.
685 // Return the base, or NULL if failure.
690 Node* base = ptr->in(AddPNode::Base); local
693 if (base == addr || base->is_top()) {
710 Node* base = addr->in(AddPNode::Base); local
712 if (addr->in(AddPNode::Base) != base) {
723 if (addr != base) {
730 // Do we Match on this edge index or not? Do not match base pointe
[all...]
H A DbuildOopMap.cpp55 // base-pointer pairs. When the base is moved, the derived pointer moves to
75 // find and record the register holding the base.
167 // Find base case for callee saves
294 // Find the base of the derived value.
316 guarantee( 0, "must find derived/base pair" );
319 Node *base = n->in(i+1); // Base is other half of pair local
320 int breg = regalloc->get_reg_first(base);
326 // Thus bases of base/derived pairs might not be in the
408 assert( found, "derived with no base i
489 const Node* base = m->get_base_and_disp(offset, adr_type); local
[all...]
H A DidealKit.hpp201 Node* AddP(Node *base, Node *ptr, Node *off) { return _gvn.transform(new (C) AddPNode(base, ptr, off)); } argument
215 // This is the base version which is given an alias index.
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DEmergencySoundbank.java487 double base = x * 25;
497 complexGaussianDist(data, base * (i + 1) * detune, w, a);
500 SF2Sample sample = newSimpleFFTSample(sf2, "EPiano", data, base);
520 double base = x * 25;
553 complexGaussianDist(data, base * (i + 1), w, aa[i]);
556 SF2Sample sample = newSimpleFFTSample(sf2, "Guitar", data, base);
578 double base = x * 25;
611 complexGaussianDist(data, base * (i + 1), w, aa[i]);
616 data, base, 10000.0);
701 double base
2430 newSimpleFFTSample(SF2Soundbank sf2, String name, double[] data, double base) argument
2435 newSimpleFFTSample(SF2Soundbank sf2, String name, double[] data, double base, int fadeuptime) argument
2469 newSimpleFFTSample_dist(SF2Soundbank sf2, String name, double[] data, double base, double preamp) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DDialog.java308 private static final String base = "dialog"; field in class:Dialog
738 return base + nameCounter++;
H A DFrame.java358 private static final String base = "frame"; field in class:Frame
461 return base + nameCounter++;
H A DMenuItem.java165 private static final String base = "menuitem"; field in class:MenuItem
225 return base + nameCounter++;
H A DScrollbar.java273 private static final String base = "scrollbar"; field in class:Scrollbar
424 return base + nameCounter++;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp376 intptr_t* base; local
378 base = iframe()->interpreter_frame_expression_stack_at(top_element);
380 base = iframe()->interpreter_frame_expression_stack();
383 base,
/openjdk7/hotspot/src/share/vm/services/
H A DmemReporter.cpp86 rgn->base(), rgn->base() + rgn->size(), amount_in_current_scale(rgn->size()), rgn->pc());
88 _outputer.committed_memory_region(rgn->base(), rgn->base() + rgn->size(),
375 void BaselineTTYOutputer::reserved_memory_region(MEMFLAGS type, address base, address end, argument
381 _output->print_cr("[" PTR_FORMAT " - " PTR_FORMAT "] reserved %d%s for %s", base, end, size, unit,
388 void BaselineTTYOutputer::committed_memory_region(address base, address end, size_t size, address pc) { argument
392 _output->print("\t[" PTR_FORMAT " - " PTR_FORMAT "] committed %d%s", base, end, size, unit);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCClassInfo.java373 * This method accepts both {@link CClassInfo} (which means the base class
374 * is also generated), or {@link CClassRef} (which means the base class is
378 * this external base class is invisible. This modeling might need more
381 public void setBaseClass(CClass base) { argument
383 assert base!=null;
384 baseClass = base;
387 if (base instanceof CClassInfo) {
388 CClassInfo realBase = (CClassInfo) base;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/nav/
H A DNavigatorImpl.java54 public NType getBaseClass(NType nt, NClass base) { argument
57 if (base instanceof EagerNClass) {
58 EagerNClass enc = (EagerNClass) base;
61 // lazy class can never be a base type of an eager type
66 if (base instanceof EagerNClass) {
67 EagerNClass enc = (EagerNClass) base;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/nav/
H A DNavigator.java61 * Gets the base class of the specified class.
69 * Gets the parameterization of the given base type.
91 * or null if the type is not assignable to the base type.
136 * of whether they override methods of the base classes.)
139 * Note that this method does not list methods declared on base classes.
376 * defined in the base class 'base' or its ancestors.
378 boolean isOverriding(M method, C base); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DUTF8XmlOutput.java143 int base= pushNsDecls();
146 writeNsDecls(base);
152 int base = pushNsDecls();
155 writeNsDecls(base);
172 int base = Math.min(prefixCount,ns.getBase());
174 for( int i=base; i<size; i++ ) {
188 return base;
191 protected void writeNsDecls(int base) throws IOException { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java538 private static Path resolve(Path base, String relativePath) { argument
539 FileSystem fs = base.getFileSystem();
541 return base.resolve(rp);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DScanner.java206 /** Convert an ASCII digit from its base (8, 10, or 16)
209 private int digit(int base) { argument
211 int result = Character.digit(c, base);
469 // for octal, allow base-10 digit in case it's a float literal
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSConstraints.java112 * check whether derived is valid derived from base, given a subset
115 public static boolean checkTypeDerivationOk(XSTypeDefinition derived, XSTypeDefinition base, short block) { argument
116 // if derived is anyType, then it's valid only if base is anyType too
118 return derived == base;
119 // if derived is anySimpleType, then it's valid only if the base
122 return (base == SchemaGrammar.fAnyType ||
123 base == SchemaGrammar.fAnySimpleType);
128 // if base is complex type
129 if (base.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE) {
130 // if base i
149 checkSimpleDerivationOk(XSSimpleType derived, XSTypeDefinition base, short block) argument
174 checkComplexDerivationOk(XSComplexTypeDecl derived, XSTypeDefinition base, short block) argument
186 checkSimpleDerivation(XSSimpleType derived, XSSimpleType base, short block) argument
236 checkComplexDerivation(XSComplexTypeDecl derived, XSTypeDefinition base, short block) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalog.java79 * changes the base URI for resolving relative system identifiers. The
80 * initial base URI is the URI of the location of the catalog (which is,
139 * entry identifing "http://example.com/a/b/c" as the base URI,
178 * base, not the default base URI of the catalog.</p>
258 * The base URI for relative system identifiers in the catalog.
261 protected URL base; field in class:Catalog
263 /** The base URI of the Catalog file currently being parsed. */
528 * Returns the current base URI.
531 return base
[all...]

Completed in 445 milliseconds

1234567891011>>