Home
last modified time | relevance | path

Searched refs:s2 (Results 1 – 8 of 8) sorted by relevance

/sdk/emulator/opengl/host/libs/Translator/EGL/
DEglValidate.cpp66 bool EglValidate::releaseContext(EGLContext ctx,EGLSurface s1,EGLSurface s2) { in releaseContext() argument
69 (s2 == EGL_NO_SURFACE); in releaseContext()
72 bool EglValidate::badContextMatch(EGLContext ctx,EGLSurface s1,EGLSurface s2) { in badContextMatch() argument
73 return ctx != EGL_NO_CONTEXT ? (s1 == EGL_NO_SURFACE || s2 == EGL_NO_SURFACE): in badContextMatch()
74 (s1 != EGL_NO_SURFACE || s2 != EGL_NO_SURFACE); in badContextMatch()
DEglValidate.h26 static bool releaseContext(EGLContext ctx,EGLSurface s1,EGLSurface s2);
27 static bool badContextMatch(EGLContext ctx,EGLSurface s1,EGLSurface s2);
/sdk/avdlauncher/src/source/
Davdlauncher.c48 LPSTR s, s2; in display_error() local
62 s2 = (LPSTR) malloc(strlen(description) + strlen(s) + 5); in display_error()
63 sprintf(s2, "%s\r\n%s", description, s); in display_error()
64 MessageBox(NULL, s2, "Android AVD Manager - Error", MB_OK); in display_error()
65 free(s2); in display_error()
/sdk/sdklauncher/src/source/
Dsdklauncher.c48 LPSTR s, s2; in display_error() local
62 s2 = (LPSTR) malloc(strlen(description) + strlen(s) + 5); in display_error()
63 sprintf(s2, "%s\r\n%s", description, s); in display_error()
64 MessageBox(NULL, s2, "Android SDK Manager - Error", MB_OK); in display_error()
65 free(s2); in display_error()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSimpleElement.java243 for (String s2 : s.substring(1).split(",")) { //$NON-NLS-1$ in parseLines()
244 int pos = s2.indexOf('='); in parseLines()
245 if (pos <= 0 || pos == s2.length() - 1) { in parseLines()
248 String key = s2.substring(0, pos).trim(); in parseLines()
249 String value = s2.substring(pos + 1).trim(); in parseLines()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiResourceAttributeNode.java422 public int compare(String s1, String s2) { in sortAttributeChoices()
423 int compare = score(attributeInfo, s1) - score(attributeInfo, s2); in sortAttributeChoices()
426 compare = s1.compareToIgnoreCase(s2); in sortAttributeChoices()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
DBaseBuilder.java121 String s2 = srcSegments[i]; in findMatchingSourceFolder() local
123 if (s1.equalsIgnoreCase(s2) == false) { in findMatchingSourceFolder()
/sdk/emulator/opengl/tests/event_injector/
Dsockets.c1443 int s0, s1, s2, port; in socket_pair()
1463 s2 = socket_loopback_client( port, SOCK_STREAM ); in socket_pair()
1464 if (s2 < 0) { in socket_pair()
1476 closesocket (s2); in socket_pair()
1484 *fd2 = s2; in socket_pair()