OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CROP_EXT_STR
(Results
1 - 2
of
2
) sorted by null
/frameworks/native/libs/gui/
GLConsumer.cpp
46
#define
CROP_EXT_STR
"EGL_ANDROID_image_crop"
111
size_t cropExtLen = strlen(
CROP_EXT_STR
);
113
bool equal = !strcmp(
CROP_EXT_STR
, exts);
114
bool atStart = !strncmp(
CROP_EXT_STR
" ", exts, cropExtLen+1);
116
!strcmp(" "
CROP_EXT_STR
, exts + extsLen - (cropExtLen+1));
117
bool inMiddle = strstr(exts, " "
CROP_EXT_STR
" ");
[
all
...]
/frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp
31
#define
CROP_EXT_STR
"EGL_ANDROID_image_crop"
643
size_t cropExtLen = strlen(
CROP_EXT_STR
);
645
bool equal = !strcmp(
CROP_EXT_STR
, exts);
646
bool atStart = !strncmp(
CROP_EXT_STR
" ", exts, cropExtLen+1);
648
!strcmp(" "
CROP_EXT_STR
, exts + extsLen - (cropExtLen+1));
649
bool inMiddle = strstr(exts, " "
CROP_EXT_STR
" ");
Completed in 161 milliseconds