Searched defs:result (Results 51 - 75 of 4925) sorted by relevance

1234567891011>>

/external/freetype/src/base/
H A Dftfntfmt.c30 const char* result = NULL; local
34 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
36 return result;
45 const char* result = NULL; local
49 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
51 return result;
H A Dfttype1.c58 FT_Int result = 0; local
67 result = service->ps_has_glyph_names( face );
70 return result;
110 FT_Int result = 0; local
119 result = service->ps_get_font_value( face, key, idx,
123 return result;
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample1.cc38 int result = 1; local
40 result *= i;
43 return result;
/external/googletest/googletest/samples/
H A Dsample1.cc38 int result = 1; local
40 result *= i;
43 return result;
/external/libcxx/test/std/re/re.regex/re.regex.construct/
H A Dbad_escape.pass.cpp24 bool result = false; local
28 result = (ex.code() == std::regex_constants::error_escape);
30 return result;
H A Dbad_repeat.pass.cpp24 bool result = false; local
28 result = (ex.code() == std::regex_constants::error_badrepeat);
30 return result;
/external/libxml2/python/tests/
H A DtstURI.py30 result=uri.saveUri() variable
31 if result != "https://example.org:223/foo/bar?query=simple":
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/ctime/
H A D1-1.c20 char *result; local
23 result = ctime(&current_time);
25 if (result == NULL) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlock/
H A D5-1.c23 int result; local
32 result = mlock(ptr, BUFSIZE);
33 if (result == 0 && errno == 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munlock/
H A D7-1.c23 int result; local
42 result = munlock(ptr, BUFSIZE);
43 if (result == 0 && errno == 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munlockall/
H A D5-1.c33 int result; local
35 result = munlockall();
37 if (result == 0) {
45 printf("munlockall() returns %i instead of zero.\n", result);
55 int result; local
64 result = munlockall();
66 if ((result == 0 && memlock > 0) || (result == -1 && memlock <= 0)) {
74 printf("munlockall() returns %i instead of zero.\n", result);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/
H A D1-1.c23 int result = -1; local
27 result = sched_getparam(getpid(), &param);
29 if (result == 0 && param.sched_priority != -1 && errno == 0) {
34 if (result != 0) {
H A D3-1.c21 int result = -1; local
25 result = sched_getparam(0, &param);
27 if (result == 0 && param.sched_priority != -1 && errno == 0) {
37 if (result != 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/
H A D5-1.c27 int result = -1, child_pid; local
46 result = sched_getscheduler(child_pid);
48 if (result == -1) {
58 if (result != -1) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_rr_get_interval/
H A D2-1.c23 int result = -2; local
36 result = sched_rr_get_interval(0, &interval);
38 if (result == 0 &&
54 if (result != 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
H A D22-1.c20 int result; local
28 result = sched_setparam(0, &param);
30 if (result == 0) {
H A D25-3.c27 int policy, result; local
42 result = sched_setparam(0, &param);
44 if (result == -1 && errno == EINVAL) {
47 } else if (result != -1) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/
H A D19-2.c27 int invalid_priority, result; local
40 result = sched_setscheduler(0, SCHED_SPORADIC, &param);
42 if (result == -1 && errno == EINVAL) {
45 } else if (result != -1) {
H A D19-3.c28 int policy, result; local
45 result = sched_setscheduler(0, SCHED_SPORADIC, &param);
47 if (result == -1 && errno == EINVAL) {
50 } else if (result != -1) {
H A D19-5.c16 * and sched_setscheduler for which the result code -1 indicate an error.)
31 int result; local
36 result = sched_setscheduler(0, -1, &param);
38 if (result == -1 && errno == EINVAL) {
56 result = sched_setscheduler(0, INVALID_POLICY, &param);
58 if (result == -1 && errno == EINVAL) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
H A D41-1.c25 int fd, result; local
27 result = shm_unlink(SHM_NAME);
28 if (result != 0 && errno != ENOENT) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/
H A D11-1.c23 int result; local
28 result = shm_unlink(SHM_NAME);
30 if (result == -1 && errno == ENOENT) {
33 } else if (result == -1) {
/external/mesa3d/src/compiler/glsl/glcpp/tests/
H A D067-nested-ifdef-ifndef.c4 #define result success macro
8 #undef result macro
9 #define result failure macro
12 result
16 #undef result macro
17 #define result failure macro
20 result
22 #undef result macro
23 #define result failure macro
26 #undef result macro
27 #define result macro
32 #undef result macro
33 #define result macro
36 #undef result macro
37 #define result macro
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftfntfmt.c30 const char* result = NULL; local
34 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
36 return result;
45 const char* result = NULL; local
49 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
51 return result;
H A Dfttype1.c58 FT_Int result = 0; local
67 result = service->ps_has_glyph_names( face );
70 return result;
110 FT_Int result = 0; local
119 result = service->ps_get_font_value( face, key, idx,
123 return result;

Completed in 1459 milliseconds

1234567891011>>