Searched refs:str (Results 1 - 25 of 413) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/
H A Dtrace.c49 const char *str = slesutResultToString(result); local
50 if (NULL != str) {
51 SL_LOGW("Leaving %s (%s)", function, str);
112 const char *str = slesutResultToString(result); local
114 if (NULL != str) {
116 &underscore[1], str);
122 if (NULL != str) {
123 SL_LOGW("Leaving %s (%s)", function, str);
/frameworks/wilhelm/tests/automated/
H A DBufferQueue_test.cpp55 const char *str = slesutResultToString(res); local
56 if (NULL == str)
57 str = "unknown";
58 fprintf(stderr, "CheckErr failure: %s (0x%x), exiting\n", str, res);
/frameworks/wilhelm/tests/examples/
H A DslesTestEffectCapabilities.cpp46 void guidToString(const SLInterfaceID guid, char *str) { argument
47 if ((NULL == guid) || (NULL == str)) {
50 snprintf(str, GUID_DISPLAY_LENGTH, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/support/v4/java/android/support/v4/text/
H A DBidiFormatter.java288 * given explicitly by a heuristic to estimate the {@code str}'s directionality.
290 * @param str String after which the mark may need to appear.
291 * @param heuristic The text direction heuristic that will be used to estimate the {@code str}'s
296 private String markAfter(String str, TextDirectionHeuristicCompat heuristic) { argument
297 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
299 if (!mIsRtlContext && (isRtl || getExitDir(str) == DIR_RTL)) {
302 if (mIsRtlContext && (!isRtl || getExitDir(str) == DIR_LTR)) {
315 * directionality is given explicitly by a heuristic to estimate the {@code str}'s directionality.
317 * @param str Strin
323 markBefore(String str, TextDirectionHeuristicCompat heuristic) argument
342 isRtl(String str) argument
375 unicodeWrap(String str, TextDirectionHeuristicCompat heuristic, boolean isolate) argument
405 unicodeWrap(String str, TextDirectionHeuristicCompat heuristic) argument
418 unicodeWrap(String str, boolean isolate) argument
429 unicodeWrap(String str) argument
464 getExitDir(String str) argument
481 getEntryDir(String str) argument
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DAtomicFile.java98 FileOutputStream str = null;
100 str = new FileOutputStream(mBaseName);
107 str = new FileOutputStream(mBaseName);
112 return str;
121 public void finishWrite(FileOutputStream str) { argument
122 if (str != null) {
123 sync(str);
125 str.close();
138 public void failWrite(FileOutputStream str) { argument
139 if (str !
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java2977 * @param str string to create the allocation from
2983 String str,
2988 allocArray = str.getBytes("UTF-8");
2982 createFromString(RenderScript rs, String str, int usage) argument
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp215 AutoJavaStringToUTF8(JNIEnv* env, jstring str) : fEnv(env), fJStr(str) { argument
216 fCStr = env->GetStringUTFChars(str, NULL);
217 fLength = env->GetStringUTFLength(str);
/frameworks/webview/chromium/tools/
H A Dmemreport.py104 return str(field / (1024))
/frameworks/rs/api/
H A DGenerateDocumentation.cpp116 return stream.str();
143 return stream.str();
274 string s = entries->str();
338 string s = stream.str();
H A DGenerateHeaderFiles.cpp64 *file << "#if !defined(RS_VERSION) || " << checkMaxVersion.str() << "\n";
69 *file << " && " << checkMaxVersion.str();
245 const string s = ps.str();
H A DGenerateStubsWhiteList.cpp283 *compressedMangling = stream2.str();
337 mangling = stream.str();
543 file << calls.str();
H A DSpecification.cpp964 return stream.str();
H A DUtilities.cpp132 return stream.str();
192 return " __attribute__((" + stream.str() + "))";
/frameworks/rs/cpp/
H A DRenderScript.cpp93 static uint32_t getProp(const char *str) { argument
96 property_get(str, buf, "0");
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_advsimd_ColorMatrix.S1060 9: str x2, [x0], #8
1074 str x2, [x0]
1204 9: str x2, [x0], #8
1218 str x2, [x0]
H A DrsCpuIntrinsics_neon_Resize.S188 str lr, [sp,#SP_STORE]
215 str r8, [sp,#OSC_STORE]
216 str r9, [sp,#OSCSTEP_STORE]
217 str r10, [sp,#OSCCTL_STORE]
218 str r11, [sp,#OSCCTL_STORE+4]
290 str lr, [sp,#AVAIL_STORE]
381 3: str lr, [sp,#AVAIL_STORE] /* done with available pixel count */
417 str r8, [sp,#OSC_STORE] /* done with osc */
H A DrsCpuScript.cpp385 compileArguments.push_back(ss.str().c_str());
H A DrsCpuScriptGroup2.cpp184 batch = new Batch(this, ss.str().c_str());
374 invokeBatches.push_back(ss.str());
379 kernelBatches.push_back(ss.str());
419 const char* checksumStr = ss.str().c_str();
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DConvolve3x3.java40 private float[] updateMatrix(float str) { argument
42 float cf1 = blend(1.f / 9.f, 0.f, str);
43 float cf2 = blend(1.f / 9.f, -1.f, str);
44 float cf3 = blend(1.f / 9.f, 5.f, str);
H A DConvolve5x5.java40 private float[] updateMatrix(float str) { argument
43 float cf1 = blend(f125, -1.f, str);
44 float cf2 = blend(f125, -3.f, str);
45 float cf3 = blend(f125, -4.f, str);
46 float cf4 = blend(f125, 6.f, str);
47 float cf5 = blend(f125, 20.f, str);
48 float cf6 = blend(f125, 0.f, str);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DConvolve3x3.java47 private float[] updateMatrix(float str) { argument
49 float cf1 = blend(1.f / 9.f, 0.f, str);
50 float cf2 = blend(1.f / 9.f, -1.f, str);
51 float cf3 = blend(1.f / 9.f, 5.f, str);
H A DConvolve5x5.java47 private float[] updateMatrix(float str) { argument
50 float cf1 = blend(f125, -1.f, str);
51 float cf2 = blend(f125, -3.f, str);
52 float cf3 = blend(f125, -4.f, str);
53 float cf4 = blend(f125, 6.f, str);
54 float cf5 = blend(f125, 20.f, str);
55 float cf6 = blend(f125, 0.f, str);
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java115 boolean str(short vr) { method in class:LoaderDicom
233 if (dbg && str(e.mVR)) {
245 if (str(e.mVR)) {
/frameworks/rs/
H A DrsContext.cpp217 static uint32_t getProp(const char *str) { argument
220 property_get(str, buf, "0");
H A DrsCppUtils.h82 void setTo(const char* str, ssize_t len) { argument
83 this->assign(str, len);
85 void setTo(const char* str) { argument
86 this->assign(str);
90 const char*const str = this->c_str(); local
92 cp = strrchr(str, OS_PATH_SEPARATOR);
96 return String8(str, cp - str);

Completed in 2310 milliseconds

1234567891011>>