Searched refs:ExpandableString (Results 1 – 6 of 6) sorted by relevance
/libnativehelper/ |
D | ExpandableString.h | 26 struct ExpandableString { struct 32 void ExpandableStringInitialize(struct ExpandableString* s); 35 void ExpandableStringRelease(struct ExpandableString* s); 39 bool ExpandableStringAppend(struct ExpandableString* s, const char* text); 43 bool ExpandableStringAssign(struct ExpandableString*s, const char* text);
|
D | ExpandableString.c | 23 void ExpandableStringInitialize(struct ExpandableString *s) { in ExpandableStringInitialize() 27 void ExpandableStringRelease(struct ExpandableString* s) { in ExpandableStringRelease() 32 bool ExpandableStringAppend(struct ExpandableString* s, const char* text) { in ExpandableStringAppend() 45 bool ExpandableStringAssign(struct ExpandableString* s, const char* text) { in ExpandableStringAssign()
|
D | JNIHelp.c | 65 static bool AppendJString(JNIEnv* env, jstring text, struct ExpandableString* dst) { in AppendJString() 80 static bool GetExceptionSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetExceptionSummary() 152 static bool GetStackTrace(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTrace() 190 static void GetStackTraceOrSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTraceOrSummary() 230 struct ExpandableString summary; in DiscardPendingException() 339 struct ExpandableString summary; in jniRegisterNativeMethods() 352 struct ExpandableString summary; in jniLogException()
|
D | Android.bp | 114 "ExpandableString.c", 209 "ExpandableString.c",
|
/libnativehelper/tests/ |
D | ExpandableString_test.cpp | 26 TEST(ExpandableString, InitializeAppendRelease) { in TEST() argument 28 struct ExpandableString s; in TEST() 40 TEST(ExpandableString, InitializeWriteRelease) { in TEST() argument 44 struct ExpandableString s; in TEST() 64 struct ExpandableString expandableString;
|
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 52 struct [[maybe_unused]] ExpandableString { struct 57 [[maybe_unused]] static void ExpandableStringInitialize(struct ExpandableString* s) { in ExpandableStringInitialize() argument 61 [[maybe_unused]] static void ExpandableStringRelease(struct ExpandableString* s) { in ExpandableStringRelease() 66 [[maybe_unused]] static bool ExpandableStringAppend(struct ExpandableString* s, const char* text) { in ExpandableStringAppend() 79 [[maybe_unused]] static bool ExpandableStringAssign(struct ExpandableString* s, const char* text) { in ExpandableStringAssign() 118 struct ExpandableString* dst) { in AppendJString() 134 struct ExpandableString* dst) { in GetExceptionSummary() 205 struct ExpandableString* dst) { in GetStackTrace() 244 struct ExpandableString* dst) { in GetStackTraceOrSummary() 284 struct ExpandableString summary; in DiscardPendingException() [all …]
|