Searched defs:result (Results 276 - 300 of 3569) sorted by relevance

<<11121314151617181920>>

/external/elfutils/libelf/
H A Dgelf_update_symshndx.c75 int result = 0; local
167 result = 1;
175 return result;
/external/elfutils/src/
H A Dsectionhash.c41 int result = strcmp (one->name, two->name); local
43 if (result == 0)
45 result = one->type - two->type;
47 if (result == 0)
51 result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
53 if (result == 0)
55 result = one->entsize - two->entsize;
57 if (result == 0)
59 result = (one->grp_signature == NULL
65 if (result
[all...]
/external/elfutils/tests/
H A Dasm-tst4.c47 int result = 0; local
103 if (result == 0)
104 result = WEXITSTATUS (system ("\
112 return result;
H A Dasm-tst5.c49 int result = 0; local
115 if (result == 0)
116 result = WEXITSTATUS (system ("\
124 return result;
H A Dasm-tst6.c47 int result = 0; local
149 if (result == 0)
150 result = WEXITSTATUS (system ("\
158 return result;
H A Dtest-nlist.c55 int result = 0; local
87 result = 1;
90 return foo (result);
/external/embunit/src/
H A DRepeatedTest.c43 void RepeatedTest_run(RepeatedTest* self,TestResult* result) argument
48 Test_run(test, result);
H A DTestCaller.c44 void TestCaller_run(TestCaller* self,TestResult* result) argument
54 Test_run(&cs,result);
H A DTestSuite.c43 void TestSuite_run(TestSuite* self,TestResult* result) argument
50 Test_run(test, result);
/external/gtest/test/
H A Dgtest-message_test.cc44 static testing::internal::String result; local
45 result = msg.GetString();
46 return result.c_str();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingListeningExecutorService.java49 public <T> ListenableFuture<T> submit(Runnable task, T result) { argument
50 return delegate().submit(task, result);
H A DFutureCallback.java36 * Invoked with the result of the {@code Future} computation when it is
39 void onSuccess(V result); argument
/external/icu4c/i18n/
H A Dupluralrules.cpp46 UnicodeString result = ((PluralRules*)uplrules)->select(number); local
47 return result.extract(keyword, capacity, *status);
/external/icu4c/test/intltest/
H A Dtestutil.cpp41 UnicodeString result; local
42 if (s.isEmpty()) return result;
47 result.append(sep);
49 appendHex(result, c);
51 return result;
/external/icu4c/tools/tzcode/
H A Dscheck.c25 register const char * result; local
28 result = "";
30 return result;
33 return result;
60 result = (char *) format;
62 return result;
/external/junit/src/junit/extensions/
H A DRepeatedTest.java26 public void run(TestResult result) { argument
28 if (result.shouldStop())
30 super.run(result);
H A DTestSetup.java19 public void run(final TestResult result) { argument
23 basicRun(result);
27 result.runProtected(this, p);
/external/junit/src/junit/framework/
H A DJUnit4TestCaseFacade.java25 public void run(TestResult result) { argument
/external/kernel-headers/original/linux/
H A Dcalc64.h12 * result is returned and the remainder stored in the variable
23 u64 result = dividend; local
25 *(remainder) = do_div(result, divisor);
26 return (unsigned long) result;
/external/mdnsresponder/mDNSPosix/
H A DExampleClientApp.c54 int result; local
72 result = select(nfds, &readfds, NULL, NULL, &timeout);
74 if (result < 0)
76 verbosedebugf("select() returned %d errno %d", result, errno);
/external/opencv/cv/src/
H A Dcvkalman.cpp168 CvMat* result = 0; local
193 result = kalman->state_pre;
197 return result;
204 CvMat* result = 0; local
236 result = kalman->state_post;
240 return result;
/external/openfst/src/include/fst/script/
H A Dconvert.h36 Fst<Arc> *result = Convert(fst, new_type); local
37 args->retval = new FstClass(result);
38 delete result;
/external/oprofile/libregex/
H A Ddemangle_symbol.cpp48 string result = demangle_java_symbol(name); local
49 if (!result.empty())
50 return result;
54 string result(unmangled);
66 regex.execute(result);
69 return result;
/external/oprofile/libregex/tests/
H A Djava_test.cpp27 string const & result)
29 if (result != output) {
32 << "found:\n\"" << result << "\"\n"; local
59 string result = demangle_java_symbol(cur->mangled); local
60 check_result(cur->mangled, cur->expect, result);
26 check_result(string const & input, string const & output, string const & result) argument
/external/protobuf/gtest/test/
H A Dgtest-message_test.cc45 static testing::internal::String result; local
46 result = msg.GetString();
47 return result.c_str();

Completed in 498 milliseconds

<<11121314151617181920>>