Searched defs:result (Results 51 - 75 of 523) sorted by relevance

1234567891011>>

/frameworks/base/core/jni/
H A Dandroid_util_FloatMath.cpp55 int result = android::AndroidRuntime::registerNativeMethods(env, local
59 return result;
/frameworks/base/libs/androidfw/tests/
H A DInputChannel_test.cpp62 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
65 ASSERT_EQ(OK, result)
113 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
116 ASSERT_EQ(OK, result)
127 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
130 ASSERT_EQ(OK, result)
143 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
146 ASSERT_EQ(OK, result)
/frameworks/base/services/input/
H A DInputManager.cpp54 status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY); local
55 if (result) {
56 ALOGE("Could not start InputDispatcher thread due to error %d.", result);
57 return result;
60 result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
61 if (result) {
62 ALOGE("Could not start InputReader thread due to error %d.", result);
65 return result;
72 status_t result = mReaderThread->requestExitAndWait(); local
73 if (result) {
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorDialog.java41 AppErrorResult result, ProcessRecord app) {
48 mResult = result;
40 AppErrorDialog(Context context, ActivityManagerService service, AppErrorResult result, ProcessRecord app) argument
/frameworks/base/test-runner/src/junit/runner/
H A DClassPathTestCollector.java24 Hashtable result = collectFilesInPath(classPath);
25 return result.elements();
29 Hashtable result= collectFilesInRoots(splitClassPath(classPath));
30 return result;
34 Hashtable result= new Hashtable(100);
37 gatherFiles(new File((String)e.nextElement()), "", result);
38 return result;
41 void gatherFiles(File classRoot, String classFileName, Hashtable result) { argument
46 result.put(className, className);
53 gatherFiles(classRoot, classFileName+File.separatorChar+contents[i], result);
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DSha1Test.java29 private String result; field in class:Sha1Test.TestData
33 result = r;
52 assertEquals(encodedHash, mTestData[i].result);
/frameworks/base/tests/LargeAssetTest/src/com/android/largeassettest/
H A DLargeAssetTest.java46 mResultText = (TextView) findViewById(R.id.result);
98 protected void onPostExecute(Boolean result) { argument
99 CharSequence text = (result) ? "Valid!" : "NOT VALID";
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTextureBase.java38 protected void onPostExecute(Boolean result) { argument
/frameworks/base/tests/backup/
H A Dbackup_helper_test.cpp33 int result; member in struct:Test
90 t->result = t->func();
91 if (t->result != 0) {
110 if (t->result != 0) {
/frameworks/base/tools/aapt/
H A DMain.cpp227 int result = 1; // pessimistically assume an error. local
611 result = handleCommand(&bundle);
616 result = 2;
619 //printf("--> returning %d\n", result);
620 return result;
/frameworks/compile/libbcc/lib/Support/
H A DOutputFile.cpp31 OutputFile *result = NULL; local
57 // Create result OutputFile. Temporary file is always truncated.
58 result = new (std::nothrow) OutputFile(tmp_filename,
60 if (result == NULL) {
64 if (result->hasError()) {
66 result->getName().c_str(), result->getErrorMessage().c_str());
67 delete result;
68 result = NULL;
77 return result;
144 llvm::raw_fd_ostream *result = local
[all...]
/frameworks/compile/libbcc/runtime/lib/
H A Dfloatdidf.c43 const double result = (high - twop52) + low.d; local
44 return result;
H A Dfloatundidf.c46 const double result = (high.d - twop84_plus_twop52) + low.d; local
47 return result;
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dfixtfdi.c26 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */ local
27 result |= INT64_C(0x0010000000000000); /* matissa(hi) with implicit bit */
28 result <<= 10; /* mantissa(hi) with one zero preceeding bit. */
54 result += tailMantissa;
57 result >>= (62 - unbiasedHeadExponent);
59 /* Restore the sign of the result and return */
60 result = (result ^ hiNegationMask) - hiNegationMask;
61 return result;
67 /* |x| < 1, result i
74 int64_t result = INT64_MIN; local
[all...]
H A Dfixunstfdi.c23 uint64_t result = hibits.x & UINT64_C(0x000fffffffffffff); /* mantissa(hi) */ local
24 result |= UINT64_C(0x0010000000000000); /* matissa(hi) with implicit bit */
25 result <<= 11; /* mantissa(hi) left aligned in the int64 field. */
48 result += tailMantissa;
51 result >>= (63 - unbiasedHeadExponent);
52 return result;
/frameworks/compile/libbcc/runtime/test/Unit/ppc/
H A Dfixtfdi_test.c6 struct testVector { double xhi; double xlo; int64_t result; }; member in struct:testVector
463 expected_result = testCases[i].result;
/frameworks/compile/libbcc/tests/debuginfo/host-tests/
H A Dglobal_struct.c34 double result = pf[0] * d[1][1] * s.d * us * l; local
35 return (result == 0 ? 0 : -1);
H A Dglobals.c41 double result = pf[0] * d[1][1] * s.d * us * l; local
42 return (result == 0 ? 0 : -1);
H A Dlocals.cpp13 // CHECK: result = 0
44 double result = pf[0] * d[1][1] * s.f * us * l; local
45 return (result == 0 ? 0 : -1);
/frameworks/compile/mclinker/lib/LD/
H A DLDContext.cpp62 size_t result = 1; local
64 for (; result != size; ++result)
65 if (m_SectionTable[result]->name() == pName)
66 return result;
H A DLDSectionFactory.cpp29 LDSection* result = allocate(); local
30 new (result) LDSection(pName, pKind, pType, pFlag);
31 return result;
/frameworks/compile/mclinker/lib/MC/
H A DInputFactory.cpp29 mcld::Input* result = Alloc::allocate(); local
30 new (result) mcld::Input(pName, pPath, m_AttrFactory.last(), pType, pFileOffset);
31 return result;
/frameworks/compile/mclinker/lib/Support/
H A DLEB128.cpp97 uint64_t result = 0; local
113 result = ((*(pBuf + 3) & 0x7f) << 21) |
131 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
136 return result;
142 uint64_t result; local
145 result = byte & 0x7f;
147 return result;
150 result |= ((byte & 0x7f) << 7);
152 return result;
155 result |
189 uint64_t result = 0; local
210 uint64_t result = 0; local
[all...]
H A DRegionFactory.cpp27 MemoryRegion* result = Alloc::allocate(); local
28 new (result) MemoryRegion(pSpace,
31 pSpace.addRegion(*result);
32 return result;
H A DTargetRegistry.cpp21 mcld::Target *result = 0; local
25 result = (*TIter);
29 return result;

Completed in 1094 milliseconds

1234567891011>>