Searched refs:result (Results 251 - 275 of 2201) sorted by relevance

<<11121314151617181920>>

/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/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/media/java/android/media/session/
H A DIOnMediaKeyListener.aidl26 void onMediaKey(in KeyEvent event, in ResultReceiver 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;
/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/hardware/interfaces/sensorservice/1.0/
H A DIDirectReportChannel.hal44 * @return result OK on success;
51 * may be returned or (2) error (in which case result
55 generates (int32_t token, Result result);
/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.cpp17 jstring result = _env->NewStringUTF(outLen == 0 ? "" : buf); local
19 return result;
/frameworks/support/v7/preference/tests/src/android/support/v7/preference/tests/
H A DPreferencePersistTest.java85 String result = mPreference.getString(expected);
87 assertEquals(expected, result);
118 String result = mPreference.getString("Default");
120 assertEquals(expected, result);
130 String result = mPreference.getString("Default");
132 assertEquals(expected, result);
141 Set<String> result = mPreference.getStringSet(expected);
143 assertThat(result, containsInAnyOrder(expected.toArray()));
173 Set<String> result = mPreference.getStringSet(TEST_DEFAULT_STR_SET);
175 assertThat(result, containsInAnyOrde
[all...]
/frameworks/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.cpp39 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.cpp34 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/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationInflater.java148 InflationProgress result = createRemoteViews(reInflateFlags, builder, mIsLowPriority,
151 apply(result, reInflateFlags, mRow, mRedactAmbient, mRemoteViewClickHandler, null);
152 return result;
159 InflationProgress result = new InflationProgress();
162 result.newContentView = createContentView(builder, isLowPriority, usesIncreasedHeight);
166 result.newExpandedView = createExpandedView(builder, isLowPriority);
170 result.newHeadsUpView = builder.createHeadsUpContentView(usesIncreasedHeadsUpHeight);
174 result.newPublicView = builder.makePublicContentView();
178 result.newAmbientView = redactAmbient ? builder.makePublicAmbientNotification()
181 result
185 apply(InflationProgress result, int reInflateFlags, ExpandableNotificationRow row, boolean redactAmbient, RemoteViews.OnClickHandler remoteViewClickHandler, @Nullable InflationCallback callback) argument
320 applyRemoteView(final InflationProgress result, final int reInflateFlags, int inflationId, final ExpandableNotificationRow row, final boolean redactAmbient, boolean isNewView, RemoteViews.OnClickHandler remoteViewClickHandler, @Nullable final InflationCallback callback, NotificationData.Entry entry, NotificationContentView parentLayout, View existingView, NotificationViewWrapper existingWrapper, final HashMap<Integer, CancellationSignal> runningInflations, ApplyCallback applyCallback) argument
406 finishIfDone(InflationProgress result, int reInflateFlags, HashMap<Integer, CancellationSignal> runningInflations, @Nullable InflationCallback endListener, ExpandableNotificationRow row, boolean redactAmbient) argument
597 onPostExecute(InflationProgress result) argument
[all...]
/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/tests/coretests/src/android/widget/listview/
H A DListItemsExpandOnSelection.java42 TextView result = new ExpandWhenSelectedView(parent.getContext(), desiredHeight);
43 result.setHeight(desiredHeight);
44 result.setFocusable(mItemsFocusable);
45 result.setText(getValueAtPosition(position));
49 result.setLayoutParams(lp);
50 return result;
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/jni/
H A Dnative.cpp26 int result = a + b; local
27 ALOGI("%d + %d = %d", a, b, result);
28 return result;
89 jint result = -1; local
105 result = JNI_VERSION_1_4;
108 return result;
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/jni/
H A Dnative.cpp26 int result = a + b; local
27 ALOGI("%d + %d = %d", a, b, result);
28 return result;
89 jint result = -1; local
105 result = JNI_VERSION_1_4;
108 return result;
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/jni/
H A Dnative.cpp26 int result = a + b; local
27 ALOGI("%d + %d = %d", a, b, result);
28 return result;
89 jint result = -1; local
105 result = JNI_VERSION_1_4;
108 return result;
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java182 short[] result = new short[1];
183 checkStatus(getParameter(param, result));
184 mNumBands = result[0];
199 short[] result = new short[2];
200 checkStatus(getParameter(PARAM_LEVEL_RANGE, result));
201 return result;
238 short[] result = new short[1];
242 checkStatus(getParameter(param, result));
244 return result[0];
260 int[] result
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameManager.java36 Frame result = newFrame(frame.getFormat());
37 result.setDataFromFrame(frame);
38 return result;
44 Frame result = newFrame(newFormat);
45 result.setDataFromFrame(frame);
46 return result;
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DImageFormat.java41 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_BYTE, target);
42 result.setDimensions(width, height);
43 result.setBytesPerSample(bytesPerSample);
44 result.setMetaValue(COLORSPACE_KEY, colorspace);
46 result.setObjectClass(Bitmap.class);
48 return result;
H A DPrimitiveFormat.java69 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
70 result.setDimensions(count);
71 return result;
75 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
76 result.setDimensionCount(1);
77 return result;

Completed in 2269 milliseconds

<<11121314151617181920>>