OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cropExtLen
(Results
1 - 3
of
3
) sorted by null
/frameworks/native/libs/gui/
GLConsumer.cpp
112
size_t
cropExtLen
= strlen(CROP_EXT_STR);
115
bool atStart = !strncmp(CROP_EXT_STR " ", exts,
cropExtLen
+1);
116
bool atEnd = (
cropExtLen
+1) < extsLen &&
117
!strcmp(" " CROP_EXT_STR, exts + extsLen - (
cropExtLen
+1));
132
size_t
cropExtLen
= strlen(PROT_CONTENT_EXT_STR);
135
bool atStart = !strncmp(PROT_CONTENT_EXT_STR " ", exts,
cropExtLen
+1);
136
bool atEnd = (
cropExtLen
+1) < extsLen &&
137
!strcmp(" " PROT_CONTENT_EXT_STR, exts + extsLen - (
cropExtLen
+1));
[
all
...]
/frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp
33
size_t
cropExtLen
= strlen(extensionName);
38
bool atStart = !strncmp(extString + space, exts,
cropExtLen
+ 1);
39
bool atEnd = (
cropExtLen
+ 1) < extsLen &&
40
!strcmp(space + extString, exts + extsLen - (
cropExtLen
+ 1));
/frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp
644
size_t
cropExtLen
= strlen(CROP_EXT_STR);
647
bool atStart = !strncmp(CROP_EXT_STR " ", exts,
cropExtLen
+1);
648
bool atEnd = (
cropExtLen
+1) < extsLen &&
649
!strcmp(" " CROP_EXT_STR, exts + extsLen - (
cropExtLen
+1));
Completed in 714 milliseconds