Searched defs:first (Results 51 - 75 of 104) sorted by relevance

12345

/frameworks/base/tools/aidl/
H A Dgenerate_java_rpc.cpp216 bool first = true; local
226 if (first) {
229 first = false;
246 if (first) {
248 first = false;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java717 private static <K, V> void merge(HashMap<K, HashMap<V, MethodDescription>> first, argument
720 HashMap<V, MethodDescription> firstVals = first.get(key);
723 first.put(key, secondVals);
/frameworks/native/opengl/libagl/
H A Darray.cpp466 // We never use the first and second entries because they might be in
533 void drawPrimitivesPoints(ogles_context_t* c, GLint first, GLsizei count) argument
546 c->arrays.compileElements(c, v, first, num);
547 first += num;
564 void drawPrimitivesLineStrip(ogles_context_t* c, GLint first, GLsizei count) argument
571 c->arrays.compileElement(c, c->vc.vBuffer, first);
572 first += 1;
583 c->arrays.compileElements(c, v, first, num);
584 first += num;
603 void drawPrimitivesLineLoop(ogles_context_t* c, GLint first, GLsize argument
618 drawPrimitivesLines(ogles_context_t* c, GLint first, GLsizei count) argument
650 drawPrimitivesTriangleFanOrStrip(ogles_context_t* c, GLint first, GLsizei count, int winding) argument
704 drawPrimitivesTriangleStrip(ogles_context_t* c, GLint first, GLsizei count) argument
709 drawPrimitivesTriangleFan(ogles_context_t* c, GLint first, GLsizei count) argument
714 drawPrimitivesTriangles(ogles_context_t* c, GLint first, GLsizei count) argument
951 compileElement__generic(ogles_context_t* c, vertex_t* v, GLint first) argument
965 compileElements__generic(ogles_context_t* c, vertex_t* v, GLint first, GLsizei count) argument
1345 glDrawArrays(GLenum mode, GLint first, GLsizei count) argument
[all...]
H A Degl.cpp1140 static int binarySearch(T const sortedArray[], int first, int last, EGLint key) argument
1142 while (first <= last) {
1143 int mid = (first + last) / 2;
1145 first = mid + 1;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBackgroundManager.java1132 private boolean sameDrawable(Drawable first, Drawable second) { argument
1133 if (first == null || second == null) {
1136 if (first == second) {
1139 if (first instanceof BitmapDrawable && second instanceof BitmapDrawable) {
1140 if (((BitmapDrawable) first).getBitmap().sameAs(((BitmapDrawable) second).getBitmap())) {
/frameworks/av/camera/
H A DCameraParameters.cpp297 static int parse_pair(const char *str, int *first, int *second, char delim, argument
300 // Find the first integer.
312 *first = w;
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp294 bool first) {
360 if (first) {
361 // If decrypting the first block in a file, read the iv from the manifest
915 // this means we haven't even find the first access unit,
1145 true /* first */);
1156 // first segment after start, or on a discontinuity segment.
1287 buffer->offset() == 0 /* first */);
1630 // get the smallest first PTS from all streams present in this parser
292 decryptBuffer( size_t playlistIndex, const sp<ABuffer> &buffer, bool first) argument
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h59 // If no access units arrive for the first 10 secs after starting the
582 // The first "track" is merely session meta
628 // The first "track" is merely session meta
996 int32_t first; local
997 if (msg->findInt32("first-rtcp", &first)) {
1002 if (msg->findInt32("first-rtp", &first)) {
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java228 * @hide Flag for IInputMethodManager.windowGainedFocus: this is the first
234 * @hide Flag for IInputMethodManager.startInput: this is the first
1414 boolean first, int windowFlags) {
1419 + " first=" + first + " flags=#"
1436 if (first) {
1413 onPostWindowFocus(View rootView, View focusedView, int softInputMode, boolean first, int windowFlags) argument
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java216 // The first output is 0, and each following output will increment by 6 {0, 6, 12, ...}.
1163 * @param first value in the range [0,max]
1168 private int getCircularDiff(int first, int second, int max) { argument
1169 final int diff = Math.abs(first - second);
H A DRemoteViews.java156 F first; field in class:RemoteViews.MutablePair
159 MutablePair(F first, S second) { argument
160 this.first = first;
170 return Objects.equal(p.first, first) && Objects.equal(p.second, second);
175 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
286 // We first copy the new RemoteViews, as the process of merging modifies the way the actions
761 mPair.first
[all...]
/frameworks/base/libs/hwui/tests/
H A Dnullgles.cpp190 void glDrawArrays(GLenum mode, GLint first, GLsizei count) {} argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
H A DApplicationsState.java755 // Always try rebuilding list first thing, if needed.
1363 public CompoundFilter(AppFilter first, AppFilter second) { argument
1364 mFirstFilter = first;
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DScreenMagnifier.java527 public boolean onScroll(MotionEvent first, MotionEvent second, float distanceX, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java1296 if (DBG) log("setupData: Some calls are disconnecting first. Wait and retry");
2024 ApnContext apnContext = pair.first;
2307 ApnSetting first = mAllApnSettings.get(i);
2312 if (apnsSimilar(first, second)) {
2313 ApnSetting newApn = mergeApns(first, second);
2315 first = newApn;
2326 private boolean apnTypeSameAny(ApnSetting first, ApnSetting second) { argument
2328 StringBuilder apnType1 = new StringBuilder(first.apn + ": ");
2329 for(int index1 = 0; index1 < first.types.length; index1++) {
2330 apnType1.append(first
2359 apnsSimilar(ApnSetting first, ApnSetting second) argument
2377 xorEquals(String first, String second) argument
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java339 // Let topmost child views inspect first
388 // when the behavior first started blocking things below this point.
706 // If the view has a behavior, let it try first
1355 * @param first first child view to test
1359 public boolean doViewsOverlap(View first, View second) { argument
1360 if (first.getVisibility() == VISIBLE && second.getVisibility() == VISIBLE) {
1362 getChildRect(first, first.getParent() != this, firstRect);
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp176 // Setup vendor tags before we call get_camera_info the first time
379 int newUid = iter->second.first;
774 bool first = true; local
776 if (first) {
778 first = false;
1302 mTorchUidMap[id].first = uid;
1306 mTorchUidMap[id].first = uid;
1387 int id = cameraIdToInt(i.first);
2332 String8 cameraId = state.first;
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp865 /* void glDrawArrays ( GLenum mode, GLint first, GLsizei count ) */
868 (JNIEnv *_env, jobject _this, jint mode, jint first, jint count) {
871 (GLint)first,
867 android_glDrawArrays__III(JNIEnv *_env, jobject _this, jint mode, jint first, jint count) argument
H A Dandroid_opengl_GLES30.cpp3717 /* void glDrawArraysInstanced ( GLenum mode, GLint first, GLsizei count, GLsizei instanceCount ) */
3720 (JNIEnv *_env, jobject _this, jint mode, jint first, jint count, jint instanceCount) {
3723 (GLint)first,
3719 android_glDrawArraysInstanced__IIII(JNIEnv *_env, jobject _this, jint mode, jint first, jint count, jint instanceCount) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java255 public void glDrawArrays(int mode, int first, int count) { argument
257 mgl.glDrawArrays(mode, first, count);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java340 // C function void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
344 int first,
342 glDrawArrays( int mode, int first, int count ) argument
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java574 // first alarm we've seen in the current delivery generation from this package
2210 // The change is by at least +/- 500 ms (or this is the first change),
2274 // just deliver them first because we generally want non-wakeup
2303 boolean first) {
2307 if (first || mLastWakeLockUnimportantForLogging) {
2302 setWakelockWorkSource(PendingIntent pi, WorkSource ws, int type, String tag, boolean first) argument
/frameworks/base/tools/aapt/
H A DCommand.cpp332 bool first = true; local
358 if (!first) {
361 first = false;
H A DResource.cpp952 // with the type 0x01, so we're looking for the first attribute
2033 ssize_t first; local
2034 if ((first = symbol.find(":", 0)) >= 0
2035 || (first = symbol.find(".", 0)) >= 0) {
2038 for (size_t i = first; i < size; i++) {
/frameworks/av/media/libstagefright/
H A DACodec.cpp136 bool first = true; local
141 if (first) {
143 first = false;

Completed in 874 milliseconds

12345