Searched refs:result (Results 276 - 300 of 1828) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/os/
H A DRegistrant.java49 notifyResult(Object result) argument
51 internalNotifyRegistrant (result, null);
66 internalNotifyRegistrant (ar.result, ar.exception);
70 internalNotifyRegistrant (Object result, Throwable exception) argument
81 msg.obj = new AsyncResult(userObj, result, exception);
H A DRemoteCallback.java30 public void onResult(Bundle result); argument
62 public void sendResult(@Nullable final Bundle result) { argument
69 mListener.onResult(result);
73 mListener.onResult(result);
78 mCallback.sendResult(result);
/frameworks/base/core/java/android/widget/
H A DSpace.java76 int result = size;
82 result = size;
85 result = Math.min(size, specSize);
88 result = specSize;
91 return result;
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawingSpace.java52 int result = size;
58 result = size;
61 result = Math.min(size, specSize);
64 result = specSize;
67 return result;
/frameworks/support/v4/java/android/support/v4/widget/
H A DSpace.java60 int result = size;
66 result = size;
69 result = Math.min(size, specSize);
72 result = specSize;
75 return result;
/frameworks/wilhelm/src/itf/
H A DIEffectSend.c94 * to the SL ES result code used in the EnableEffectSend() function of the SLEffectSendItf
119 result = SL_RESULT_PARAMETER_INVALID;
124 result = SL_RESULT_PARAMETER_INVALID;
130 result = SL_RESULT_SUCCESS;
142 result = translateEnableFxSendError(android_fxSend_attach(ap, (bool) enable,
146 result = translateEnableFxSendError(android_fxSend_attach(ap, (bool) enable,
151 result = SL_RESULT_PARAMETER_INVALID;
168 result = SL_RESULT_PARAMETER_INVALID;
174 result = SL_RESULT_PARAMETER_INVALID;
180 result
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java522 SubscriptionInfo result = null;
527 result = iSub.getActiveSubscriptionInfoForIccId(iccId, mContext.getOpPackageName());
533 return result;
548 SubscriptionInfo result = null;
553 result = iSub.getActiveSubscriptionInfoForSimSlotIndex(slotIdx,
560 return result;
571 List<SubscriptionInfo> result = null;
576 result = iSub.getAllSubInfoList(mContext.getOpPackageName());
582 if (result == null) {
583 result
[all...]
/frameworks/compile/slang/tests/P_reduce_general_input/
H A DScriptC_reduce_general_input.java.expect112 // To obtain the result, invoke get(), which blocks
159 result_int result = reduce_my_half_0(ain1, null);
160 result.mTempIns = new Allocation[]{ain1};
161 return result;
192 result_int result = reduce_my_half_1(ain1, null);
193 result.mTempIns = new Allocation[]{ain1};
194 return result;
225 result_int result = reduce_my_half_2(ain1, null);
226 result.mTempIns = new Allocation[]{ain1};
227 return result;
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dmonkey.c57 SLresult result = (*p->mPlay)->SetPlayState(p->mPlay, SL_PLAYSTATE_PAUSED); local
58 assert(SL_RESULT_SUCCESS == result);
65 SLresult result = (*p->mPlay)->SetPlayState(p->mPlay, SL_PLAYSTATE_PLAYING); local
66 assert(SL_RESULT_SUCCESS == result);
73 SLresult result = (*p->mPlay)->SetPlayState(p->mPlay, SL_PLAYSTATE_STOPPED); local
74 assert(SL_RESULT_SUCCESS == result);
81 SLresult result = (*p->mSeek)->SetPosition(p->mSeek, (SLmillisecond) 0, SL_SEEKMODE_FAST); local
82 assert(SL_RESULT_SUCCESS == result);
119 SLresult result = (*engineEngine)->CreateAudioPlayer(engineEngine, &p->mObject, &audioSrc, local
121 if (SL_RESULT_SUCCESS != result)
130 SLresult result = (*p->mObject)->Realize(p->mObject, SL_BOOLEAN_FALSE); local
174 SLresult result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL); local
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioEffectTest.java152 boolean result = true;
175 result = false;
184 result = false;
187 result = false;
189 assertTrue(msg, result);
195 boolean result = true;
219 result = false;
222 result = false;
224 assertTrue(msg, result);
230 boolean result
[all...]
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java226 int result = 1;
227 result = prime * result + Arrays.hashCode(data);
228 result = prime * result + type;
229 result = prime * result + ((uuid == null) ? 0 : uuid.hashCode());
230 result = prime * result + ((vendorUuid == null) ? 0 : vendorUuid.hashCode());
231 return result;
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dbasic_op.h235 Word32 result; local
237 "MOV %[result], %[L_var1], ASL %[var2] \n"
238 "TEQ %[L_var1], %[result], ASR %[var2]\n"
239 "EORNE %[result], %[mask], %[L_var1], ASR #31\n"
240 :[result]"=&r"(result)
243 return result;
248 Word32 result; local
251 "MOVLT %[result], %[L_var1], ASR %[var2]\n"
252 "MOVGE %[result],
262 Word32 result; local
299 Word16 result; local
430 Word32 result; local
460 Word32 result; local
483 Word32 result; local
595 Word32 result; local
623 Word32 result; local
686 Word32 result; local
727 Word16 result; local
776 Word16 result; local
986 Word16 result; local
1010 Word32 result; local
1033 Word32 result; local
[all...]
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DDirectStatementRetriever.java77 StringBuilder result = new StringBuilder();
78 result.append("Result: ");
79 result.append(mStatements.toString());
80 result.append(", mExpireMillis=");
81 result.append(mExpireMillis);
82 return result.toString();
94 Result result = (Result) o;
96 if (!mExpireMillis.equals(result.mExpireMillis)) {
99 if (!mStatements.equals(result.mStatements)) {
108 int result
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DCryptoFactory.cpp50 android::status_t result = clearKeyPlugin->getInitStatus(); local
51 if (result == android::OK) {
57 return result;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioGain.cpp105 String8 result; local
108 result.append(buffer);
110 result.append(buffer);
112 result.append(buffer);
114 result.append(buffer);
116 result.append(buffer);
118 result.append(buffer);
120 result.append(buffer);
122 result.append(buffer);
124 result
[all...]
/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DBroadcastDispatcher.java50 Object result = null;
58 result = localResult;
62 return result;
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java60 * // the layout result data and that the content is a document.
61 * LayoutResult result = doSomeLayoutWork();
66 * .setPageCount(result.getPageCount())
69 * callback.onLayoutFinished(info, result.getContentChanged());
225 int result = 1;
226 result = prime * result + ((mName != null) ? mName.hashCode() : 0);
227 result = prime * result + mContentType;
228 result
[all...]
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/le/
H A DScanResultTest.java46 ScanResult result = new ScanResult(device, ScanRecord.parseFromBytes(scanRecord), rssi,
49 result.writeToParcel(parcel, 0);
53 assertEquals(result, resultFromParcel);
/frameworks/base/location/lib/java/com/android/location/provider/
H A DProviderRequestUnbundled.java52 List<LocationRequestUnbundled> result = new ArrayList<LocationRequestUnbundled>(
55 result.add(new LocationRequestUnbundled(r));
57 return result;
/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_frame.cpp46 NativeFrame* result = new NativeFrame(size_); local
48 result->WriteData(data_, 0, size_);
49 return result;
/frameworks/base/packages/PrintSpooler/jni/
H A Dcom_android_printspooler_util_BitmapSerializeUtils.cpp100 int result = AndroidBitmap_getInfo(env, jbitmap, &targetInfo); local
101 if (result < 0) {
116 result = AndroidBitmap_lockPixels(env, jbitmap, &pixels);
117 if (result < 0) {
131 result = AndroidBitmap_unlockPixels(env, jbitmap);
132 if (result < 0) {
140 int result = AndroidBitmap_getInfo(env, jbitmap, &info); local
141 if (result < 0) {
155 result = AndroidBitmap_lockPixels(env, jbitmap, &pixels);
156 if (result <
[all...]
/frameworks/compile/libbcc/lib/Support/
H A DOutputFile.cpp91 llvm::raw_fd_ostream *result = local
94 if (result == nullptr) {
98 return result;
/frameworks/compile/mclinker/lib/LD/
H A DRelocData.cpp31 RelocData* result = g_RelocDataFactory->allocate(); local
32 new (result) RelocData(pSection);
33 return result;
/frameworks/compile/mclinker/lib/Script/
H A DFileToken.cpp34 FileToken* result = g_FileTokenFactory->allocate(); local
35 new (result) FileToken(pName, pAsNeeded);
36 return result;
H A DNameSpec.cpp34 NameSpec* result = g_NameSpecFactory->allocate(); local
35 new (result) NameSpec(pName, pAsNeeded);
36 return result;

Completed in 814 milliseconds

<<11121314151617181920>>