Searched defs:suffix (Results 51 - 63 of 63) sorted by relevance

123

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java336 byte[] suffix,
342 suffix[i] = (byte)i;
913 byte[] suffix = new byte[4096];
918 initializeStringTable(prefix, suffix, initial, length);
927 initializeStringTable(prefix, suffix, initial, length);
959 suffix[ti] = initial[newSuffixIndex];
975 string[i] = suffix[c];
335 initializeStringTable(int[] prefix, byte[] suffix, byte[] initial, int[] length) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DOptions.java404 private void addRecursive( File dir, String suffix, List<InputSource> result ) { argument
410 addRecursive(f,suffix,result);
412 if(f.getPath().endsWith(suffix))
738 * @param suffix
740 * and find all files that have the given suffix.
742 private void addFile(String name, List<InputSource> target, String suffix) throws BadCommandLineException { argument
755 addRecursive(fsrc,suffix,target);
/openjdk7/jdk/src/windows/native/sun/font/
H A Dfontpath.c382 * Note: OpenType fonts seems to have " (TrueType)" suffix on Vista
390 char *suffix; local
403 /* suffix length is the same for truetype and opentype fonts */
404 suffix = name + len - TTSLEN;
405 if (strcmp(suffix, TTSUFFIX) == 0 || strcmp(suffix, OTSUFFIX) == 0) {
406 suffix[0] = '\0'; /* truncate name */
416 wchar_t *suffix; local
428 /* suffix length is the same for truetype and opentype fonts */
429 suffix
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java321 private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) { argument
329 sb.append(suffix);
332 private void appendIfNotEmpty(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) { argument
334 append(sb, prefix, list, suffix);
535 void writeList(String prefix, Collection<?> items, String suffix) { argument
543 print(suffix);
546 void writeListIfNotEmpty(String prefix, List<?> items, String suffix) { argument
548 writeList(prefix, items, suffix);
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp76 relocInfo suffix = (*this); local
78 // Finish up with the suffix. (Hack note: pack_data_to might edit this.)
79 *data_limit = suffix;
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp211 const char* suffix) {
217 print_raw(suffix);
222 const char* suffix) {
236 print_raw(suffix);
209 stamp(bool guard, const char* prefix, const char* suffix) argument
220 date_stamp(bool guard, const char* prefix, const char* suffix) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java2674 * @param suffix
2677 protected String getClassName(Port port, String suffix) { argument
2679 return options.defaultPackage + "." + prefix + suffix;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c271 char suffix[5]; local
283 suffix[0] = 0;
285 /* Look for .txt suffix if not binary output */
292 (void)strcpy(suffix, format_suffix);
310 (void)strcpy(suffix, dot);
318 "%s.%d%s", prefix, pid, suffix);
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp1537 // Reattach remaining (suffix) to overflow list
1546 oop suffix = oop(cur->klass()); // suffix will be put back on global list local
1547 cur->set_klass_to_list_ptr(NULL); // break off suffix
1550 // able to place back the suffix.
1556 (oop) Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
1564 // Find the last item of suffix list
1565 oop last = suffix;
1569 // Atomically prepend suffix to current overflow list
1580 (oop)Atomic::cmpxchg_ptr(suffix,
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp1565 void Node::dump(const char* suffix, outputStream *st) const { argument
1634 if (suffix) st->print(suffix);
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp285 // suffix // from -Xbootclasspath/a:...
299 inline void add_suffix_to_prefix(const char* suffix);
300 inline void add_suffix(const char* suffix);
361 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) { argument
362 _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
365 inline void SysClassPath::add_suffix(const char* suffix) { argument
366 _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
378 // Clear the prefix and suffix.
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp1034 int suffix = (i < SUFFIX_SKIP_1)? 0: cp_Utf8_suffix.getInt(); local
1035 if (suffix < 0) {
1036 abort("bad utf8 suffix");
1039 if (suffix == 0 && i >= SUFFIX_SKIP_1) {
1045 uint size3 = suffix * 3; // max Utf8 length
1046 bool isMalloc = (suffix > SMALL);
1059 for (int j = 0; j < suffix; j++) {
1087 int suffix = (i < SUFFIX_SKIP_1)? 0: cp_Utf8_suffix.getInt(); local
1089 if (prefix < 0 || prefix+suffix < 0) {
1094 if (suffix
1113 int suffix = (int)chars.len; // pick up the hack local
1148 int suffix = (int)chars.len; local
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmstypes.c3098 char suffix[32]; // Suffix for each color name local
3109 if (io -> Read(io, suffix, 32, 1) != 1) return NULL;
3111 prefix[31] = suffix[31] = 0;
3113 v = cmsAllocNamedColorList(self ->ContextID, count, nDeviceCoords, prefix, suffix);
3154 char suffix[32]; // Suffix for each color name local
3164 strncpy(suffix, (const char*) NamedColorList->Suffix, 32);
3166 suffix[31] = prefix[31] = 0;
3169 if (!io ->Write(io, 32, suffix)) return FALSE;

Completed in 126 milliseconds

123