Searched refs:result (Results 226 - 250 of 1438) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/Script/
H A DUnaryOp.cpp25 IntOperand* res = result();
35 IntOperand* res = result();
45 IntOperand* res = result();
55 IntOperand* res = result();
66 return result();
73 IntOperand* res = result();
95 IntOperand* res = result();
118 IntOperand* res = result();
129 return result();
138 return result();
[all...]
/frameworks/wilhelm/src/itf/
H A DILEDArray.c30 result = SL_RESULT_SUCCESS;
41 result = SL_RESULT_PARAMETER_INVALID;
48 result = SL_RESULT_SUCCESS;
59 result = SL_RESULT_PARAMETER_INVALID; local
75 result = SL_RESULT_SUCCESS;
87 result = SL_RESULT_PARAMETER_INVALID;
95 result = SL_RESULT_SUCCESS;
H A DIMIDIMessage.c28 result = SL_RESULT_PARAMETER_INVALID;
31 result = SL_RESULT_FEATURE_UNSUPPORTED;
48 result = SL_RESULT_SUCCESS;
64 result = SL_RESULT_SUCCESS;
89 result = SL_RESULT_SUCCESS;
93 result = SL_RESULT_PARAMETER_INVALID;
109 result = SL_RESULT_SUCCESS;
H A DIPrefetchStatus.c27 result = SL_RESULT_PARAMETER_INVALID;
34 result = SL_RESULT_SUCCESS;
46 result = SL_RESULT_PARAMETER_INVALID;
53 result = SL_RESULT_SUCCESS;
70 result = SL_RESULT_SUCCESS;
81 result = SL_RESULT_PARAMETER_INVALID;
88 result = SL_RESULT_SUCCESS;
102 result = SL_RESULT_PARAMETER_INVALID;
109 result = SL_RESULT_SUCCESS;
121 result
[all...]
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/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp79 MyString8 result; local
99 result.append(buffer);
101 result.append(buffer);
147 write(fd, result.string(), result.size());
148 result.clear();
154 result.append(buffer);
157 result.append(", ");
160 result.append(buffer);
162 result
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_MemoryFile.cpp33 int result = ashmem_create_region(namestr, length); local
38 if (result < 0) {
43 return jniCreateFileDescriptor(env, result);
50 void* result = mmap(NULL, length, prot, MAP_SHARED, fd, 0); local
51 if (result == MAP_FAILED) {
54 return reinterpret_cast<jlong>(result);
59 int result = munmap(reinterpret_cast<void *>(addr), length); local
60 if (result < 0)
114 int result = (pin ? ashmem_pin_region(fd, 0, 0) : ashmem_unpin_region(fd, 0, 0)); local
115 if (result <
126 int result = ashmem_get_size_region(fd); local
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureLibraries.java75 boolean result = false;
80 result = true;
87 return result;
91 boolean result = false;
96 result = true;
104 return result;
127 boolean result = false;
133 result = true;
140 return result;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameQueue.java46 FrameQueue result = new FrameQueue(type, name);
47 buildQueueImpl(result);
48 return result;
57 FrameType result = FrameType.merge(mWriteType, mReadType);
59 result = FrameType.merge(result, queue.mType);
61 return result;
105 Frame result = mFrame;
107 return result;
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DDecorator.java27 * @param result return value of target method
29 void onAfterInvocation(Method m, Object[] args, Object result); argument
77 Object result = null;
80 result = m.invoke(mObject, args);
81 mListener.onAfterInvocation(m, args, result);
90 return result;
/frameworks/base/core/java/android/nfc/
H A DTransceiveResult.java25 * Class used to pipe transceive result from the NFC service.
38 public TransceiveResult(final int result, final byte[] data) { argument
39 mResult = result;
74 int result = in.readInt();
77 if (result == RESULT_SUCCESS) {
84 return new TransceiveResult(result, responseData);
/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);
/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 DFaceUnlockView.java36 int result = 0;
40 result = desired;
43 result = Math.max(specSize, desired);
47 result = specSize;
49 return result;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DSpace.java70 int result = size;
76 result = size;
79 result = Math.min(size, specSize);
82 result = specSize;
85 return result;
/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.c123 SLresult result = (*bufq)->Enqueue(bufq, buffer, nbytes); local
124 assert(SL_RESULT_SUCCESS == result);
359 SLresult result; local
361 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
362 assert(SL_RESULT_SUCCESS == result);
364 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
365 assert(SL_RESULT_SUCCESS == result);
366 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
367 assert(SL_RESULT_SUCCESS == result);
373 result
[all...]
H A Dplaybq.cpp123 SLresult result = (*bufq)->Enqueue(bufq, buffer, nbytes); local
124 assert(SL_RESULT_SUCCESS == result);
359 SLresult result; local
361 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
362 assert(SL_RESULT_SUCCESS == result);
364 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
365 assert(SL_RESULT_SUCCESS == result);
366 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
367 assert(SL_RESULT_SUCCESS == result);
373 result
[all...]
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.java218 int result = 1;
219 result = prime * result + Arrays.hashCode(data);
220 result = prime * result + type;
221 result = prime * result + ((uuid == null) ? 0 : uuid.hashCode());
222 result = prime * result + ((vendorUuid == null) ? 0 : vendorUuid.hashCode());
223 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
598 Word32 result; local
626 Word32 result; local
689 Word32 result; local
730 Word16 result; local
779 Word16 result; local
989 Word16 result; local
1013 Word32 result; local
1036 Word32 result; local
[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/hardware/hdmi/
H A DHdmiPlaybackClient.java36 * Listener used by the client to get the result of one touch play operation.
40 * Called when the result of the feature one touch play is returned.
42 * @param result the result of the operation. {@link HdmiControlManager#RESULT_SUCCESS}
45 public void onComplete(int result); argument
76 * of the result
96 * of the result
109 public void onComplete(int result) {
110 callback.onComplete(result);
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java53 * // the layout result data and that the content is a document.
54 * LayoutResult result = doSomeLayoutWork();
59 * .setPageCount(result.getPageCount())
62 * callback.onLayoutFinished(info, result.getContentChanged());
210 int result = 1;
211 result = prime * result + ((mName != null) ? mName.hashCode() : 0);
212 result = prime * result + mContentType;
213 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);

Completed in 4280 milliseconds

1234567891011>>