Searched refs:result (Results 151 - 175 of 1445) sorted by relevance

1234567891011>>

/frameworks/wilhelm/src/itf/
H A DIEqualizer.c63 result = SL_RESULT_SUCCESS;
66 result = SL_RESULT_CONTROL_LOST;
70 result = android_fx_statusToResult(status);
84 result = SL_RESULT_PARAMETER_INVALID;
91 result = SL_RESULT_SUCCESS;
94 result = SL_RESULT_CONTROL_LOST;
97 result = SL_RESULT_SUCCESS;
112 result = SL_RESULT_PARAMETER_INVALID;
117 result = SL_RESULT_SUCCESS;
130 result
[all...]
H A DIAudioDecoderCapabilities.c28 result = SL_RESULT_PARAMETER_INVALID;
30 result = SL_RESULT_SUCCESS;
37 result = SL_RESULT_PARAMETER_INVALID;
54 result = GetCodecCapabilities(decoderId, pIndex, pDescriptor, DecoderDescriptors); local
H A DIAudioEncoder.c28 result = SL_RESULT_PARAMETER_INVALID;
35 result = SL_RESULT_SUCCESS;
48 result = SL_RESULT_PARAMETER_INVALID;
55 result = SL_RESULT_SUCCESS;
H A DIAudioEncoderCapabilities.c28 result = SL_RESULT_PARAMETER_INVALID;
30 result = SL_RESULT_SUCCESS;
37 result = SL_RESULT_PARAMETER_INVALID;
54 result = GetCodecCapabilities(encoderId, pIndex, pDescriptor, local
H A DIVisualization.c28 result = SL_RESULT_PARAMETER_INVALID;
36 result = SL_RESULT_SUCCESS;
48 result = SL_RESULT_PARAMETER_INVALID;
51 result = SL_RESULT_SUCCESS;
H A DIVolume.c27 result = SL_RESULT_PARAMETER_INVALID;
38 result = SL_RESULT_SUCCESS;
50 result = SL_RESULT_PARAMETER_INVALID;
57 result = SL_RESULT_SUCCESS;
69 result = SL_RESULT_PARAMETER_INVALID;
72 result = SL_RESULT_SUCCESS;
93 result = SL_RESULT_SUCCESS;
104 result = SL_RESULT_PARAMETER_INVALID;
111 result = SL_RESULT_SUCCESS;
132 result
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DSetTagsTest.java79 boolean result = false;
83 result = true;
85 assertTrue("Setting a tag with a framework id did not throw an exception", result);
90 boolean result = false;
94 result = true;
96 assertTrue("Setting a tag with an id with no package did not throw an exception", result);
106 boolean result = false;
110 result = true;
112 assertTrue("Setting a tag with an id with app package did not throw an exception", result);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLEnvironment.java103 int result = nativeAddSurface(surface);
104 if (result < 0) {
107 return result;
112 int result = nativeAddSurfaceWidthHeight(surface, width, height);
114 if (result < 0) {
117 return result;
121 int result = nativeAddSurfaceFromMediaRecorder(mediaRecorder);
122 if (result < 0) {
126 return result;
H A DSimpleFrameManager.java43 Frame result = null;
48 result = glFrame;
56 return result;
60 Frame result = null;
63 result = new SimpleFrame(format, this);
67 result = new NativeFrame(format, this);
73 result = glFrame;
78 result = new VertexFrame(format, this);
86 return result;
/frameworks/base/telephony/java/android/telephony/
H A DPreciseCallState.java271 int result = 1;
272 result = prime * result + mRingingCallState;
273 result = prime * result + mForegroundCallState;
274 result = prime * result + mBackgroundCallState;
275 result = prime * result + mDisconnectCause;
276 result
[all...]
H A DPreciseDataConnectionState.java194 int result = 1;
195 result = prime * result + mState;
196 result = prime * result + mNetworkType;
197 result = prime * result + ((mAPNType == null) ? 0 : mAPNType.hashCode());
198 result = prime * result + ((mAPN == null) ? 0 : mAPN.hashCode());
199 result
[all...]
/frameworks/wilhelm/src/objects/
H A DCAudioRecorder.c26 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_audioRecorder_realize(thiz, async);
33 return result;
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.cpp44 Value result; local
45 result.type = TYPEID;
46 result.value = malloc(sizeof(POD));
47 result.count = 1;
48 *reinterpret_cast<POD*>(result.value) = value;
49 return result;
54 Value result; local
55 result.type = TYPEID;
56 result.value = malloc(sizeof(BASE) * count);
57 memcpy(result
150 Value result; local
174 Value result; local
186 Value result; local
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dconfigbq.c75 SLresult result; local
79 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
80 assert(SL_RESULT_SUCCESS == result);
82 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
83 assert(SL_RESULT_SUCCESS == result);
84 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
85 assert(SL_RESULT_SUCCESS == result);
89 result = (*engineEngine)->CreateOutputMix(engineEngine, &outputMixObject, 0, NULL, NULL);
90 assert(SL_RESULT_SUCCESS == result);
91 result
[all...]
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpDeclinePacket.java44 ByteBuffer result = ByteBuffer.allocate(MAX_LENGTH);
46 fillInPacket(encap, mClientIp, mYourIp, destUdp, srcUdp, result,
48 result.flip();
49 return result;
/frameworks/base/core/java/com/android/internal/util/
H A DJournaledFile.java48 File result;
50 result = mReal;
55 result = mTemp;
60 return result;
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java30 // result code for GetObjectPropList
44 public MtpPropertyList(int maxCount, int result) { argument
46 mResult = result;
75 public void setResult(int result) { argument
76 mResult = result;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryLoader.java102 final DirectoryResult result = new DirectoryResult();
114 result.exception = e;
115 return result;
133 result.mode = userMode;
136 result.mode = State.MODE_GRID;
138 result.mode = State.MODE_LIST;
143 result.sortOrder = mUserSortOrder;
146 result.sortOrder = State.SORT_ORDER_LAST_MODIFIED;
148 result.sortOrder = State.SORT_ORDER_DISPLAY_NAME;
154 result
205 deliverResult(DirectoryResult result) argument
238 onCanceled(DirectoryResult result) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DResponse.java28 * @param result The results.
30 void onResult(IN request, OUT... result); argument
/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...]
/frameworks/opt/chips/tests/src/com/android/ex/chips/
H A DRecipientAlternatesAdapterTest.java32 Cursor result;
42 result = RecipientAlternatesAdapter.removeUndesiredDestinations(c,
44 assertEquals(1, result.getCount());
45 assertRow(result, 0, "a", "1@android.com", 1, "home", 1000, 2000, "x", 0);
50 result = RecipientAlternatesAdapter.removeUndesiredDestinations(c,
52 assertEquals(2, result.getCount());
53 assertRow(result, 0, "a", "1@android.com", 1, "home", 1000, 2000, "x", 0);
54 assertRow(result, 1, "a", "2@android.com", 1, "home", 1000, 2000, "x", 0);
60 result = RecipientAlternatesAdapter.removeUndesiredDestinations(c,
62 assertEquals(2, result
[all...]
/frameworks/support/v4/java/android/support/v4/database/
H A DDatabaseUtilsCompat.java53 String[] result = new String[originalValues.length + newValues.length ];
54 System.arraycopy(originalValues, 0, result, 0, originalValues.length);
55 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
56 return result;
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaItemStatus.java256 StringBuilder result = new StringBuilder();
257 result.append("MediaItemStatus{ ");
258 result.append("timestamp=");
259 TimeUtils.formatDuration(SystemClock.elapsedRealtime() - getTimestamp(), result);
260 result.append(" ms ago");
261 result.append(", playbackState=").append(playbackStateToString(getPlaybackState()));
262 result.append(", contentPosition=").append(getContentPosition());
263 result.append(", contentDuration=").append(getContentDuration());
264 result.append(", extras=").append(getExtras());
265 result
[all...]
/frameworks/base/core/jni/android/graphics/
H A DPorterDuff.cpp46 int result = AndroidRuntime::registerNativeMethods(env, local
49 return result;
/frameworks/base/tools/preload/
H A DRecord.java146 * @result the same field with any escaped characters replaced
149 String result = rawField;
150 int offset = result.indexOf("\\u");
152 String before = result.substring(0, offset);
153 String escaped = result.substring(offset+2, offset+6);
154 String after = result.substring(offset+6);
156 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after);
159 offset = result.indexOf("\\u", offset + 1);
161 return result;

Completed in 1058 milliseconds

1234567891011>>