Searched defs:string (Results 126 - 150 of 153) sorted by relevance

1234567

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp701 // create the thread instance name space string - don't create an
879 Handle string = java_lang_String::create_from_str(name, CHECK_0); local
889 string,
1933 // check if we need to truncate the string
1940 // lop of the entire class name string, let snprintf handle
1942 class_name += s1len; // null string
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp433 // Test entry type in case string is resolved while in here.
440 return (char*)"<pseudo-string>";
689 // Intern string
694 // Another thread beat us and interned string, read string from constant pool
700 assert(java_lang_String::is_instance(str), "must be string");
708 // Not yet resolved, but it will resolve to a string.
711 return false; // actually, it might be a non-interned or non-perm string
731 // Intern string
880 // class pairs and resolved/unresolved string pair
1658 oop string = *(obj_at_addr_raw(idx)); local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp508 // if this call converted into a direct string concatenation.
1229 Node* string = str; local
1230 Node* offset = kit.load_String_offset(kit.control(), string);
1231 Node* count = kit.load_String_length(kit.control(), string);
1232 Node* value = kit.load_String_value (kit.control(), string);
1313 // Now insert the logic to compute the size of the string followed
1314 // by all the logic to construct array and resulting string.
1358 // Fallthrough to add string length.
1445 // Now copy the string representations into the final char[]
1484 // Intialize the string
[all...]
H A Dmemnode.cpp1621 ciObject* string = t->const_oop(); local
1622 ciConstant constant = string->as_instance()->field_value(field);
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c32 #include <string.h>
237 char* new_runpath = NULL; /* desired new LD_LIBRARY_PATH string */
439 * LD_LIBRARY_PATH to the empty string for security purposes. (In
455 * LD_LIBRARY_PATH to the empty string for security purposes. (In
547 * If dmpath is not NULL, remove the data model specific string
1032 void ReportErrorMessage2(char * format, char * string, jboolean always) { argument
1034 fprintf(stderr, format, string);
1044 * Return JNI_TRUE for an option string that has no effect but should
1690 * We want to actually check the paths rather than just the version string
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.cpp92 // Fill in buffer with current local time as an ISO-8601 string.
322 Handle string = java_lang_String::create_from_str(thread_name, CHECK); local
332 string,
1063 // Scan the format string to determine the length of the actual
1176 // allocate the string and add terminator storage
H A Dthread.cpp979 Handle string = java_lang_String::create_from_str("main", CHECK_NH); local
986 string,
1002 Handle string = java_lang_String::create_from_str("main", CHECK_NULL); local
1010 string,
1083 // the vm info string
2592 // search for the current bci in that string.
2877 // descriptive string if there is no set name
3549 // More hackery - the static initializer of java.lang.Compiler adds the string "nojit" to
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c441 unsigned char *string; local
454 &string));
456 if (status != Success || string == NULL) {
461 XFree(string);
466 return string;
682 * The property is ENLIGHTENMENT_COMMS, STRING/8 and the string format
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c892 LPWSTR string; local
893 if (ConvertSidToStringSidW(sid, &string) == 0) {
897 jstring s = (*env)->NewString(env, (const jchar *)string,
898 (jsize)wcslen(string));
899 LocalFree(string);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_util.c565 jstring string; local
570 string = JNI_FUNC_PTR(env,NewStringUTF)(env, name);
572 HPROF_ASSERT(string!=NULL);
573 return string;
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c42 #include <string.h>
541 jstring string; local
549 // Create a new java string from the message
550 string = (*env)->NewStringUTF(env, buffer);
557 string);
561 string);
1191 * Identifying string ASCII "ICC_PROFILE\0" (12 bytes)
1215 /* verify the identifying string */
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c589 /* Convert the supplied time into an RFC 1123 string suitable for use in
590 * a "Creation Time" or other text-based time string.
606 # define APPEND_STRING(string)\
608 pos, (string))
662 /* The following return the library version as a short string in the
688 /* Returns longer string containing both version and date */
982 png_check_fp_number(png_const_charp string, png_size_t size, int *statep, argument
992 switch (string[i])
1107 /* The same but for a complete string. */
1109 png_check_fp_string(png_const_charp string, png_size_ argument
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerImpl.java223 * Bit 7 of the length byte for a decomposition string in extra data is
224 * a flag indicating whether the decomposition string is
636 * bubble-insert one single code point into the preceding string
708 * merge two UTF-16 string parts together
714 * the second string may or may not be ordered in itself
723 * preceding part of the string
781 // copy the second string part
994 * generally, set p and length to the decomposition string
1582 break; /* end of string */
2505 public static String canonicalDecomposeWithSingleQuotation(String string) { argument
[all...]
/openjdk7/jdk/test/javax/management/mxbean/
H A DMerlinMXBean.java178 new String[] {"int", "string", "stringArray"},
179 new String[] {"int", "string", "stringArray"},
245 private GetSetBean(int Int, String string, String[] stringArray) { argument
247 this.string = string;
252 make(int Int, String string, String[] stringArray) { argument
253 GetSetBean b = new GetSetBean(Int, string, stringArray);
262 return this.string;
273 public void setString(String string) { argument
274 this.string
290 String string; field in class:MerlinMXBean.GetSetBean
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSS.java143 * The string representation of the attribute. This
144 * should exactly match the string specified in the
429 * The string representation of the attribute. This
430 * should exactly match the string specified in the
561 * Sets the base font size from the passed in string.
757 * Returns the size of a font from the passed in string.
759 * @param size CSS string describing font size
887 /** Maps from CSS value (string) to internal value. */
1046 * Translates a string to a <code>CSS.Attribute</code> object.
1053 * or <code>null</code> if the string
1239 parseRGB(String string) argument
1257 getColorComponent(String string, int[] index) argument
2874 isFontStyle(String string) argument
2879 isFontVariant(String string) argument
2883 isFontWeight(String string) argument
2975 isImage(String string) argument
2979 isRepeat(String string) argument
2984 isAttachment(String string) argument
2988 isPosition(String string) argument
2996 isColor(String string) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.hpp65 static void set_value( oop string, typeArrayOop buffer) { argument
67 string->obj_field_put(value_offset, (oop)buffer);
69 static void set_offset(oop string, int offset) { argument
72 string->int_field_put(offset_offset, offset);
75 static void set_count( oop string, int count) { argument
78 string->int_field_put(count_offset, count);
180 // This is the string hash code used by the StringTable, which may be
H A DsystemDictionary.cpp1291 Handle string = java_lang_String::externalize_classname(s, CHECK_(nh)); local
1320 string,
1328 string,
2202 // NULL if no constraint failed. The returned C string needs cleaning up
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp3228 oop string=java_lang_String::create_oop_from_unicode((jchar*) unicodeChars, len, CHECK_NULL); variable
3229 ret = (jstring) JNIHandles::make_local(env, string);
3234 JNI_QUICK_ENTRY(jsize, jni_GetStringLength(JNIEnv *env, jstring string))
3237 DTRACE_PROBE2(hotspot_jni, GetStringLength__entry, env, string);
3240 env, string);
3242 jsize ret = java_lang_String::length(JNIHandles::resolve_non_null(string));
3254 JNIEnv *env, jstring string, jboolean *isCopy))
3257 DTRACE_PROBE3(hotspot_jni, GetStringChars__entry, env, string, isCopy);
3260 env, string, (uintptr_t *) isCopy);
3266 oop s = JNIHandles::resolve_non_null(string);
[all...]
H A Djvm.cpp913 Handle string = java_lang_String::internalize_classname(h_name, CHECK_NULL); variable
915 const char* str = java_lang_String::as_utf8_string(string());
958 // Consider caching interned string in Klass
3434 Handle string = java_lang_String::internalize_classname(classname, CHECK_NULL); variable
3436 const char* str = java_lang_String::as_utf8_string(string());
3721 // Since 'ebuf' may contain a string encoded using
3770 oop string = JNIHandles::resolve_non_null(str);
3771 oop result = StringTable::intern(string, CHECK_NULL);
H A Djni.h745 (JNIEnv *env, jstring string, jboolean *isCopy);
747 (JNIEnv *env, jstring string, const jchar *cstring);
1829 const jchar * GetStringCritical(jstring string, jboolean *isCopy) { argument
1830 return functions->GetStringCritical(this,string,isCopy);
1832 void ReleaseStringCritical(jstring string, const jchar *cstring) { argument
1833 functions->ReleaseStringCritical(this,string,cstring);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp48 #include <string.h>
211 char* string() { return 0; } function in struct:entry
213 char* string(); // see far below
898 IMPLICIT_ENTRY_COUNT = 1 // empty Utf8 string
1005 // Implicit first Utf8 string is the empty string.
1115 if (suffix == 0) continue; // done with empty string
1131 cp_Utf8_big_chars = saved_band; // reset the band for the next string
1140 int prevlen = 0; // previous string length (in chars)
1160 *fillp = 0; // bigbuf must contain a well-formed Utf8 string
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java66 // this is for case insensitive string comparisons
559 * This method parses a single string of signers separated by commas
585 // transfer signer and ignore trailing part of the string
591 // we are at the end of the string -- transfer signer
795 * this policy entry into a string
807 * convert the Codebase/signer portion of this policy entry into a string
836 * convert the Principals portion of this policy entry into a string
3659 @Override @Deprecated public void add(String string) { argument
3662 public void addTaggedItem(String string, Object object) { argument
3663 super.add(string);
3667 replaceItem(String string, int index) argument
3670 replaceTaggedItem(String string, Object object, int index) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c34 #include <string.h>
854 unsigned char * string; local
860 &string);
861 if (status != Success || string == NULL) {
866 XFree(string);
871 return JNU_NewStringPlatform(env,(char*) string);
1647 jstring string = NULL; local
1658 string = (*env)->NewStringUTF(env, (const char *)name);
1662 return string;
2059 jstring string local
[all...]
/openjdk7/jdk/src/share/javavm/export/
H A Djni.h745 (JNIEnv *env, jstring string, jboolean *isCopy);
747 (JNIEnv *env, jstring string, const jchar *cstring);
1829 const jchar * GetStringCritical(jstring string, jboolean *isCopy) { argument
1830 return functions->GetStringCritical(this,string,isCopy);
1832 void ReleaseStringCritical(jstring string, const jchar *cstring) { argument
1833 functions->ReleaseStringCritical(this,string,cstring);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java68 * Gets byte string from str_ptr and copies it into byte array
310 static native long InternAtom(long display, String string, int only_if_exists); argument

Completed in 244 milliseconds

1234567