ECode Chronometer::OnInitializeAccessibilityNodeInfo(
    /* [in] */ IAccessibilityNodeInfo* info)
{
    TextView::OnInitializeAccessibilityNodeInfo(info);
    String classNameStr("Chronometer");
    AutoPtr<ICharSequence> className;
    FAIL_RETURN(CStringWrapper::New(classNameStr, (ICharSequence**)&className));
    info->SetClassName(className);
    return NOERROR;
}
Beispiel #2
0
/*
 * Returns a human-readable summary of an exception object.  The buffer will
 * be populated with the "binary" class name and, if present, the
 * exception message.
 */
static bool getExceptionSummary(C_JNIEnv* env, jthrowable exception, std::string& result) {
    JNIEnv* e = reinterpret_cast<JNIEnv*>(env);

    /* get the name of the exception's class */
    scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail
    scoped_local_ref<jclass> classClass(env,
            (*env)->GetObjectClass(e, exceptionClass.get())); // java.lang.Class, can't fail
    jmethodID classGetNameMethod =
            (*env)->GetMethodID(e, classClass.get(), "getName", "()Ljava/lang/String;");
    scoped_local_ref<jstring> classNameStr(env,
            (jstring) (*env)->CallObjectMethod(e, exceptionClass.get(), classGetNameMethod));
    if (classNameStr.get() == NULL) {
        (*env)->ExceptionClear(e);
        result = "<error getting class name>";
        return false;
    }
    const char* classNameChars = (*env)->GetStringUTFChars(e, classNameStr.get(), NULL);
    if (classNameChars == NULL) {
        (*env)->ExceptionClear(e);
        result = "<error getting class name UTF-8>";
        return false;
    }
    result += classNameChars;
    (*env)->ReleaseStringUTFChars(e, classNameStr.get(), classNameChars);

    /* if the exception has a detail message, get that */
    jmethodID getMessage =
            (*env)->GetMethodID(e, exceptionClass.get(), "getMessage", "()Ljava/lang/String;");
    scoped_local_ref<jstring> messageStr(env,
            (jstring) (*env)->CallObjectMethod(e, exception, getMessage));
    if (messageStr.get() == NULL) {
        return true;
    }

    result += ": ";

    const char* messageChars = (*env)->GetStringUTFChars(e, messageStr.get(), NULL);
    if (messageChars != NULL) {
        result += messageChars;
        (*env)->ReleaseStringUTFChars(e, messageStr.get(), messageChars);
    } else {
        result += "<error getting message>";
        (*env)->ExceptionClear(e); // clear OOM
    }

    return true;
}
Beispiel #3
0
/*
 * Returns a human-readable summary of an exception object.  The buffer will
 * be populated with the "binary" class name and, if present, the
 * exception message.
 */
static char* getExceptionSummary0(C_JNIEnv* env, jthrowable exception) {
	JNIEnv* e = reinterpret_cast<JNIEnv*>(env);

	/* get the name of the exception's class */
	scoped_local_ref<jclass> exceptionClass(env,
			(*env)->GetObjectClass(e, exception)); // can't fail
	scoped_local_ref<jclass> classClass(env,
			(*env)->GetObjectClass(e, exceptionClass.get())); // java.lang.Class, can't fail
	jmethodID classGetNameMethod = (*env)->GetMethodID(e, classClass.get(),
			"getName", "()Ljava/lang/String;");
	scoped_local_ref<jstring> classNameStr(env,
			(jstring) (*env)->CallObjectMethod(e, exceptionClass.get(),
					classGetNameMethod));
	if (classNameStr.get() == NULL) {
		return NULL;
	}

	/* get printable string */
	const char* classNameChars = (*env)->GetStringUTFChars(e,
			classNameStr.get(), NULL);
	if (classNameChars == NULL) {
		return NULL;
	}

	/* if the exception has a detail message, get that */
	jmethodID getMessage = (*env)->GetMethodID(e, exceptionClass.get(),
			"getMessage", "()Ljava/lang/String;");
	scoped_local_ref<jstring> messageStr(env,
			(jstring) (*env)->CallObjectMethod(e, exception, getMessage));
	if (messageStr.get() == NULL) {
		return strdup(classNameChars);
	}

	char* result = NULL;
	const char* messageChars = (*env)->GetStringUTFChars(e, messageStr.get(),
	NULL);
	if (messageChars != NULL) {
		asprintf(&result, "%s: %s", classNameChars, messageChars);
		(*env)->ReleaseStringUTFChars(e, messageStr.get(), messageChars);
	} else {
		(*env)->ExceptionClear(e); // clear OOM
		asprintf(&result, "%s: <error getting message>", classNameChars);
	}

	(*env)->ReleaseStringUTFChars(e, classNameStr.get(), classNameChars);
	return result;
}
/*static*/ bool wxNode_wxWebViewHistoryItem::AssignableFrom(const v8::Handle<v8::String>& className) {
  v8::String::AsciiValue classNameStr(className);
  return AssignableFrom(*classNameStr);
}
/*static*/ bool wxNode_wxNonOwnedWindow::AssignableFrom(const v8::Handle<v8::String>& className) {
  v8::String::AsciiValue classNameStr(className);
  return AssignableFrom(*classNameStr);
}
/*static*/ bool wxNode_wxTextValidator::AssignableFrom(const v8::Handle<v8::String>& className) {
    v8::String::AsciiValue classNameStr(className);
    return AssignableFrom(*classNameStr);
}
bool RuntimeConfiguration::isClassDebugged(const char* className) {    
    //return true;
    String classNameStr(className);        
    /*if(classNameStr == "LeafClientHandler"){
        return true;
    }
    
    if(classNameStr == "FTDataClientHandler"){
        return true;
    }
    
    if(classNameStr == "FTControlClientHandler"){
        return true;
    }
    if(classNameStr == "FTControlSvcHandler"){
        return true;
    }
    if(classNameStr == "FTDataSvcHandler"){
        return true;
    }
    if(classNameStr == "P3ReplicationGroup"){
        return true;
    }
    if(classNameStr == "RequestGroup"){
        return true;
    }*/
    /*if(classNameStr == "EventFuture"){
        return true;
    }*/
    
    
    if(classNameStr == "Cell"){
        return true;
    }
    
    //if(classNameStr == "CellDiscovery"){
    //    return true;
    //}
    /*if(classNameStr == "Synchronizable"){
        return true;
    }*/
    
    
    /*
    if(classNameStr == "RequestGroup"){
        return true;
    }*/
    /*if(classNameStr == "Cell"){
        return true;
    }
    
    
    if(classNameStr == "Task"){
        return true;
    }
     if(classNameStr == "CellSvcHandler"){
        return true;
    }     
    
    
    if(classNameStr == "SuperPeerDiscovery"){
        return true;
    }*/
    
    /*if(classNameStr == "FTDataSvcHandler"){
        return true;
    }
    
    if(classNameStr == "FTDataClientHandler"){
        return true;
    }*/
    /*if(classNameStr == "ChannelManager"){
        return true;
    }
    
    if(classNameStr == "CellDiscoveryChannel"){
        return true;
    }*/
    return false;
}