HomeSort by relevance Sort by last modified time
    Searched refs:result (Results 226 - 250 of 27666) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jcommander/src/test/java/com/beust/jcommander/
HostPortConverter.java 24 HostPort result = new HostPort(); local
26 result.host = s[0];
27 result.port = Integer.parseInt(s[1]);
29 return result;
  /external/jsoncpp/src/lib_json/
json_tool.h 19 std::string result; local
24 result.resize(1);
25 result[0] = static_cast<char>(cp);
27 result.resize(2);
28 result[1] = static_cast<char>(0x80 | (0x3f & cp));
29 result[0] = static_cast<char>(0xC0 | (0x1f & (cp >> 6)));
31 result.resize(3);
32 result[2] = static_cast<char>(0x80 | (0x3f & cp));
33 result[1] = 0x80 | static_cast<char>((0x3f & (cp >> 6)));
34 result[0] = 0xE0 | static_cast<char>((0xf & (cp >> 12)))
    [all...]
  /external/junit/src/main/java/junit/framework/
Test.java 15 * Runs a test and collects its result in a TestResult instance.
17 public abstract void run(TestResult result);
  /external/libunwind/src/mi/
_ReadSLEB.c 7 unw_word_t byte, result = 0; local
13 result |= (byte & 0x7f) << shift;
21 result |= ((unw_word_t) -1) << shift;
24 return result;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/
1-3.c 24 int result = -1; local
26 result = sched_get_priority_max(SCHED_SPORADIC);
28 if (result != -1 && errno == 0) {
31 result);
2-1.c 20 int result = -1; local
22 result = sched_get_priority_max(-1);
24 if (result == -1 && errno == EINVAL) {
29 if (result != -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/
1-3.c 24 int result = -1; local
26 result = sched_get_priority_min(SCHED_SPORADIC);
28 if (result != -1 && errno == 0) {
31 result);
2-1.c 20 int result = -1; local
22 result = sched_get_priority_min(-1);
24 if (result == -1 && errno == EINVAL) {
29 if (result != -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/
3-1.c 21 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/shm_unlink/
11-1.c 23 int result; local
28 result = shm_unlink(SHM_NAME);
30 if (result == -1 && errno == ENOENT) {
33 } else if (result == -1) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.h 36 void (*test_func)(struct test_result * result);
37 struct test_result result; member in struct:test
42 void test_begin(struct test_result * result);
43 void test_check(struct test_result * result, int cond);
  /external/testng/src/main/java/org/testng/
IRetryAnalyzer.java 14 * @param result The result of the test method that just ran.
17 public boolean retry(ITestResult result);
  /external/tpm2/
ClearControl.c 21 TPM_RC result; local
26 result = NvIsAvailable();
27 if(result != TPM_RC_SUCCESS) return result;
NV_UndefineSpaceSpecial.c 22 TPM_RC result; local
28 result = NvIsAvailable();
29 if(result != TPM_RC_SUCCESS)
30 return result;
PCR_Reset.c 22 TPM_RC result; local
34 result = NvIsAvailable();
35 if(result != TPM_RC_SUCCESS)
36 return result;
PCR_SetAuthValue.c 23 TPM_RC result; local
37 result = NvIsAvailable();
38 if(result != TPM_RC_SUCCESS) return result;
  /external/v8/src/heap/
gc-idle-time-handler.h 24 GCIdleTimeAction result; local
25 result.type = DONE;
26 result.additional_work = false;
27 return result;
31 GCIdleTimeAction result; local
32 result.type = DO_NOTHING;
33 result.additional_work = false;
34 return result;
38 GCIdleTimeAction result; local
39 result.type = DO_INCREMENTAL_STEP
45 GCIdleTimeAction result; local
    [all...]
  /external/vboot_reference/tests/tpm_lite/
tlcl_tests.c 18 uint32_t result = TlclStartup(); local
26 return result;
28 return result == TPM_E_INVALID_POSTINIT ? TPM_SUCCESS : result;
  /frameworks/av/media/libaaudio/tests/
test_n_streams.cpp 32 aaudio_result_t result = AAUDIO_OK; local
37 result = AAudio_createStreamBuilder(&aaudioBuilder);
38 if (result != AAUDIO_OK) {
46 result = AAudioStreamBuilder_openStream(aaudioBuilder, &aaudioStreams[i]);
47 if (result != AAUDIO_OK) {
49 result, AAudio_convertResultToText(result));
62 result = AAudioStream_close(aaudioStreams[i]);
63 if (result != AAUDIO_OK) {
65 result, AAudio_convertResultToText(result))
91 aaudio_result_t result = testMaxStreams(AAUDIO_DIRECTION_OUTPUT); local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLObjectHandle.java 66 int result = 17; local
67 result = 31 * result + (int) (mHandle ^ (mHandle >>> 32));
68 return result;
  /frameworks/base/telephony/java/com/android/ims/
ImsUtInterface.java 98 * Invalid result value.
110 * The return value of ((AsyncResult)result.obj) is an array of {@link ImsSsInfo}.
112 public void queryCallBarring(int cbType, Message result);
116 * The return value of ((AsyncResult)result.obj) is an array of {@link ImsSsInfo}.
118 public void queryCallBarring(int cbType, Message result, int serviceClass);
122 * The return value of ((AsyncResult)result.obj) is an array of {@link ImsCallForwardInfo}.
124 public void queryCallForward(int condition, String number, Message result);
128 * The return value of ((AsyncResult)result.obj) is an array of {@link ImsSsInfo}.
130 public void queryCallWaiting(Message result);
135 public void queryCLIR(Message result);
    [all...]
  /frameworks/base/test-base/src/junit/framework/
Test.java 14 * Runs a test and collects its result in a TestResult instance.
16 public abstract void run(TestResult result);
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLObjectHandle.java 66 int result = 17; local
67 result = 31 * result + (int) (mHandle ^ (mHandle >>> 32));
68 return result;
  /libcore/ojluni/src/main/java/java/util/concurrent/
RecursiveTask.java 39 * A recursive result-bearing {@link ForkJoinTask}.
72 * The result of the computation.
74 V result; field in class:RecursiveTask
78 * @return the result of the computation
83 return result;
87 result = value;
94 result = compute();
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
HtmlifyBeginResult.java 25 public final Spanned result; field in class:HtmlifyBeginResult
28 public HtmlifyBeginResult(Spanned result, Object extras) {
29 this.result = result;

Completed in 326 milliseconds

1 2 3 4 5 6 7 8 91011>>