Searched refs:result (Results 176 - 200 of 1597) sorted by relevance

1234567891011>>

/frameworks/base/telecomm/java/android/telecom/
H A DResponse.java28 * @param result The results.
30 void onResult(IN request, OUT... result); argument
/frameworks/base/telephony/java/android/telephony/
H A DPreciseDataConnectionState.java192 int result = 1;
193 result = prime * result + mState;
194 result = prime * result + mNetworkType;
195 result = prime * result + ((mAPNType == null) ? 0 : mAPNType.hashCode());
196 result = prime * result + ((mAPN == null) ? 0 : mAPN.hashCode());
197 result
[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/wilhelm/src/itf/
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.c28 result = SL_RESULT_PARAMETER_INVALID;
39 result = SL_RESULT_SUCCESS;
51 result = SL_RESULT_PARAMETER_INVALID;
58 result = SL_RESULT_SUCCESS;
70 result = SL_RESULT_PARAMETER_INVALID;
73 result = SL_RESULT_SUCCESS;
94 result = SL_RESULT_SUCCESS;
105 result = SL_RESULT_PARAMETER_INVALID;
112 result = SL_RESULT_SUCCESS;
133 result
[all...]
H A DIDynamicInterfaceManagement.c39 SLresult result; local
59 result = SL_RESULT_SUCCESS;
61 result = SL_RESULT_FEATURE_UNSUPPORTED;
67 if (SL_RESULT_SUCCESS == result) {
77 result = SL_RESULT_OPERATION_ABORTED;
83 result = SL_RESULT_INTERNAL_ERROR;
99 (*callback)(&thiz->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
112 result = SL_RESULT_PARAMETER_INVALID;
122 result = SL_RESULT_FEATURE_UNSUPPORTED;
138 result
295 SLresult result; local
[all...]
H A DIMetadataTraversal.c34 result = SL_RESULT_SUCCESS;
38 result = SL_RESULT_PARAMETER_INVALID;
51 result = SL_RESULT_PARAMETER_INVALID;
58 result = SL_RESULT_SUCCESS;
71 result = SL_RESULT_PARAMETER_INVALID;
78 result = SL_RESULT_SUCCESS;
91 result = SL_RESULT_FEATURE_UNSUPPORTED; local
106 result = SL_RESULT_PARAMETER_INVALID;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryLoader.java105 final DirectoryResult result = new DirectoryResult();
117 result.exception = e;
118 return result;
136 result.mode = userMode;
139 result.mode = State.MODE_GRID;
141 result.mode = State.MODE_LIST;
146 result.sortOrder = mUserSortOrder;
149 result.sortOrder = State.SORT_ORDER_LAST_MODIFIED;
151 result.sortOrder = State.SORT_ORDER_DISPLAY_NAME;
157 result
212 deliverResult(DirectoryResult result) argument
245 onCanceled(DirectoryResult result) argument
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DKeyCharacteristics.java91 List<Integer> result = new ArrayList<Integer>();
92 result.addAll(hwEnforced.getEnums(tag));
93 result.addAll(swEnforced.getEnums(tag));
94 return result;
117 List<BigInteger> result = new ArrayList<BigInteger>();
118 result.addAll(hwEnforced.getUnsignedLongs(tag));
119 result.addAll(swEnforced.getUnsignedLongs(tag));
120 return result;
131 Date result = swEnforced.getDate(tag, null);
132 if (result !
[all...]
/frameworks/base/core/java/android/text/
H A DHyphenator.java58 Hyphenator result = sMap.get(locale);
59 if (result != null) {
60 return result.mNativePtr;
67 result = sMap.get(languageOnlyLocale);
68 if (result != null) {
69 sMap.put(locale, result);
70 return result.mNativePtr;
80 result = sMap.get(scriptOnlyLocale);
81 if (result != null) {
82 sMap.put(locale, result);
[all...]
/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/av/cmds/stagefright/filters/
H A Dnightvision.rs33 float3 result = dot(rgb, gMonoMult) * gNightVisionMult;
35 v_out->y = (uchar)clamp((result.r * 255.f + 0.5f), 0.f, 255.f);
36 v_out->z = (uchar)clamp((result.g * 255.f + 0.5f), 0.f, 255.f);
37 v_out->w = (uchar)clamp((result.b * 255.f + 0.5f), 0.f, 255.f);
/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;
/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/native/opengl/tools/glgen/stubs/gles11/
H A DglGetProgramInfoLog.cpp16 jstring result = _env->NewStringUTF(buf); local
18 return result;
H A DglGetProgramPipelineInfoLog.cpp16 jstring result = _env->NewStringUTF(buf); local
18 return result;
H A DglGetShaderInfoLog.cpp16 jstring result = _env->NewStringUTF(buf); local
18 return result;
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dl_mult.h111 Word32 result; local
119 QADD result, product, product local
122 return (result);
131 Word32 result; local
142 : "=r"(result)
146 return(result);
/frameworks/base/core/java/android/accounts/
H A DAccount.java40 int result = 17;
41 result = 31 * result + name.hashCode();
42 result = 31 * result + type.hashCode();
43 return result;

Completed in 1628 milliseconds

1234567891011>>