Searched defs:result (Results 126 - 150 of 552) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/os/
H A DRegistrantList.java76 internalNotifyRegistrants (Object result, Throwable exception) argument
80 r.internalNotifyRegistrant(result, exception);
97 notifyResult(Object result) argument
99 internalNotifyRegistrants (result, null);
106 internalNotifyRegistrants(ar.result, ar.exception);
H A DRemoteCallback.java31 DeliverResult(Bundle result) { argument
32 mResult = result;
/frameworks/base/core/jni/android/graphics/
H A DInterpolator.cpp60 SkInterpolatorBase::Result result; local
63 result = interp->timeToValues(msec, (SkScalar*)values);
73 return result;
H A DPicture.cpp114 result = android::AndroidRuntime::registerNativeMethods(env, name, array, \
116 if (result < 0) return result
119 int result; local
123 return result;
/frameworks/base/libs/androidfw/
H A DStreamingZipInflater.cpp176 int result = Z_OK; local
179 result = inflateInit2(&mInflateState, -MAX_WBITS);
182 if (result == Z_OK) result = ::inflate(&mInflateState, Z_SYNC_FLUSH);
183 if (result < 0) {
185 ALOGE("Error inflating asset: %d", result);
190 if (result == Z_STREAM_END) {
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorOsal.cpp46 M4OSA_ERR result; member in struct:__anon1138
224 M4OSA_ERR result)
235 // Check if the specified result matches.
236 if (result == gkRESULTS[index].result)
243 // Check if no result was found.
248 (M4OSA_Char*)"<unknown(0x%08X)>", result);
252 // Return the result.
281 // Reset the result flag.
223 videoEditOsal_getResultString( M4OSA_ERR result) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGraphRunner.java32 * @param result will be RESULT_FINISHED if the graph finished running
38 public void onRunnerDone(int result); argument
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.cpp92 const jint result = vm->GetEnv(reinterpret_cast<void**>(&env),
94 return result == JNI_OK ? env : NULL;
105 std::string result(c_value);
108 return result;
128 jobject result = JNI_NULL; local
130 return result;
134 Value result = MakeNullValue(); local
138 result = MakeIntValue(env->CallBooleanMethod(object, method) == JNI_TRUE ? 1 : 0);
141 result = MakeIntValue(env->CallIntMethod(object, method));
144 result
163 jobject result = JNI_NULL; local
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_program.cpp137 char result[buffer_size]; local
138 result[buffer_size - 1] = '\0';
139 getvalue_function_(key.c_str(), result, buffer_size, user_data_);
140 return std::string(result);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaScene.java99 protected void onPostExecute(Boolean result) { argument
132 protected void onPostExecute(Boolean result) { argument
/frameworks/base/tools/aidl/
H A Doptions_test.cpp10 int result; member in struct:Answer
67 int result = parse_options(argc, answer.argv, &options); local
69 // result
70 if (((bool)result) != ((bool)answer.result)) {
71 cout << "mismatch: result: got " << result << " expected " <<
72 answer.result << endl;
76 if (result != 0) {
141 /* result */
243 int result = 0; local
[all...]
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp74 Compiler::ErrorCode result = mCompiler.config(*mCompilerConfig); local
76 if (result != Compiler::kSuccess) {
78 Compiler::GetErrorString(result));
126 Linker::ErrorCode result = mLinker.config(*mLinkerConfig); local
127 if (result != Linker::kSuccess) {
129 Linker::GetErrorString(result));
163 Compiler::ErrorCode result = mCompiler.compile(pScript, pOutput); local
164 if (result != Compiler::kSuccess) {
166 Compiler::GetErrorString(result));
182 Linker::ErrorCode result local
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSExecutable.cpp51 RSExecutable *result = new (std::nothrow) RSExecutable(pInfo, local
54 if (result == NULL) {
55 ALOGE("Out of memory when create object to hold RS result file for %s!",
70 void *addr = result->getSymbolAddress(name);
72 //ALOGW("RS export var at entry #%u named %s cannot be found in the result "
75 result->mExportVarAddrs.push_back(addr);
87 void *addr = result->getSymbolAddress(name);
89 // ALOGW("RS export func at entry #%u named %s cannot be found in the result"
92 result->mExportFuncAddrs.push_back(addr);
106 void *addr = result
184 DisassembleResult result = local
[all...]
H A DRSInfoReader.cpp178 RSInfo *result = NULL; local
256 // File seems ok, create result RSInfo object.
257 result = new (std::nothrow) RSInfo(header->strPoolSize);
258 if (result == NULL) {
267 ::memcpy(&result->mHeader, header, sizeof(rsinfo::Header));
272 if (result->mStringPool == NULL) {
277 ::memcpy(result->mStringPool, data + result->mHeader.headerSize,
278 result->mHeader.strPoolSize);
281 // Populate all the data to the result objec
[all...]
/frameworks/compile/libbcc/tests/data/src/
H A Dstructs.c44 void add(struct v* result, struct v* a, struct v* b) { argument
45 result->x = a->x + b->x;
46 result->y = a->y + b->y;
47 result->z = a->z + b->z;
48 result->w = a->w + b->w;
/frameworks/compile/libbcc/tools/abcc/
H A DMain.cpp43 static inline bool GetIntArg(const char *arg, int &result) { argument
46 result = ::strtol(arg, &endptr, 0);
/frameworks/compile/libbcc/tools/bcc_compat/
H A DMain.cpp132 RSScript *result = NULL; local
143 if (result != NULL) {
144 if (!result->mergeSource(*source, /* pPreserveSource */false)) {
151 result = new (std::nothrow) RSScript(*source);
152 if (result == NULL) {
161 return result;
209 Compiler::ErrorCode result = compiler->config(*config); local
211 if (result != Compiler::kSuccess) {
213 << Compiler::GetErrorString(result) << ")\n";
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp238 bool result = emit(*output); local
242 return result;
251 bool result = emit(*output); local
255 return result;
310 bool result = m_pTarget->emulate(m_pConfig->targets().triple().str(), local
315 return result;
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp69 FragmentRef* result = g_FragRefFactory->allocate();
70 new (result) FragmentRef(*frag, offset + frag->size());
72 return result;
189 Offset result = 0; local
191 result = m_pFragment->getOffset();
192 return (result + m_Offset);
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticInfos.cpp80 const DiagStaticInfo *result = std::lower_bound(static_info, static_info + info_size, key); local
82 if (result == (static_info + info_size) || result->ID != pID)
85 return result;
H A DELFDynObjReader.cpp58 bool result = true; local
60 result = false;
62 result = false;
64 result = false;
66 result = false;
68 return result;
117 bool result = m_pELFReader->readSymbols(pInput, m_Builder, local
122 return result;
H A DEhFrame.cpp63 EhFrame* result = g_EhFrameFactory->allocate(); local
64 new (result) EhFrame(pSection);
65 return result;
H A DLDSection.cpp75 LDSection* result = g_SectFactory->allocate(); local
76 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
77 return result;
H A DLDSymbol.cpp55 LDSymbol* result = g_LDSymbolFactory->allocate(); local
56 new (result) LDSymbol();
57 result->setResolveInfo(pResolveInfo);
58 return result;
/frameworks/compile/mclinker/lib/MC/
H A DAttribute.cpp105 Attribute *result = pParent.exists(*pCopy); local
106 if (NULL == result) { // can not find
112 pBase = result;

Completed in 627 milliseconds

1234567891011>>