代码搜索:jstring
找到约 391 项符合「jstring」的源代码
代码结果 391
www.eeworm.com/read/162614/5533273
h java_util_vmtimezone.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#ifndef __java_util_VMTimeZone__
#define __java_util_VMTimeZone__
#include
#ifdef __cplusplus
extern "C"
{
#endif
JNIEXPORT jstring JN
www.eeworm.com/read/162519/5542805
h java_util_vmtimezone.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#ifndef __java_util_VMTimeZone__
#define __java_util_VMTimeZone__
#include
#ifdef __cplusplus
extern "C"
{
#endif
JNIEXPORT jstring JN
www.eeworm.com/read/247586/4480737
c mynewstring.c
#include
#include
#include "MyNewString.h"
jstring
MyNewString(JNIEnv *env, jchar *chars, jint len)
{
jclass stringClass;
jcharArray elemArr;
static jmethodID cid = NU
www.eeworm.com/read/233448/4687750
c jniutf.c
#include
JNIEXPORT void JNICALL
Java_jniutf_printString (JNIEnv *env, jobject obj, jstring str)
{
const char *cstr;
cstr = (*env)->GetStringUTFChars (env, str, NULL);
(*env)->Releas
www.eeworm.com/read/229812/4744391
c jstrupr.c
#include
#include
JCHAR source[] = { "A mixed-case STRING" };
void main()
{
printf( "%s\n", source );
printf( "%s\n", jstrupr( source ) );
printf( "%s\n"
www.eeworm.com/read/229812/4744406
c jstrncat.c
#include
#include
#include
JCHAR buffer[80];
void main()
{
strcpy( buffer, "Hello " );
jstrncat( buffer, "world", 8 );
printf( "%s\n", buffer
www.eeworm.com/read/229812/4744420
c jstrlwr.c
#include
#include
JCHAR source[] = { "A mixed-case STRING" };
void main()
{
printf( "%s\n", source );
printf( "%s\n", jstrlwr( source ) );
printf( "%s\n"
www.eeworm.com/read/229812/4750629
gml jtoupper.gml
.func jtoupper
#include
JMOJI jtoupper( JMOJI c );
.ixfunc2 '&CharTest' &func
.funcend
.desc begin
The &func function converts a double-byte lowercase character to an
equivalent dou
www.eeworm.com/read/229812/4750929
gml jtolower.gml
.func jtolower
#include
JMOJI jtolower( JMOJI c );
.ixfunc2 '&CharTest' &func
.funcend
.desc begin
The &func function converts a double-byte uppercase character to an
equivalent dou
www.eeworm.com/read/162614/5537144
c jniutf.c
#include
JNIEXPORT void JNICALL
Java_jniutf_printString (JNIEnv *env, jobject obj, jstring str)
{
const char *cstr;
cstr = (*env)->GetStringUTFChars (env, str, NULL);
(*env)->Releas