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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/tools/tzcode/
ialloc.c 13 register char * result; local
22 if ((result = realloc(old, oldsize + newsize + 1)) != NULL)
24 (void) strcpy(result + oldsize, new);
25 return result;
  /external/jmonkeyengine/engine/src/core/checkers/quals/
Dependent.java 19 * private @Nullable @Dependent(result=NonNull.class, when=ThreadSafe.class)
31 Class<? extends Annotation> result(); method in interface:Dependent
34 * The qualifier class of the receiver that causes the {@code result}
  /external/jsr305/sampleUses/src/main/java/
LuhnVerification.java 4 int result = 0; local
15 result += v;
18 System.out.println(result);
19 return result % 10 == 0;
  /external/libcxx/test/std/containers/associative/map/
compare.pass.cpp 30 std::pair<std::map<Key, int>::iterator, bool> result = local
  /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;
_ReadULEB.c 7 unw_word_t byte, result = 0; local
13 result |= (byte & 0x7f) << shift;
19 return result;
  /external/lldb/test/functionalities/archives/
a.c 12 int result = arg + __a_global; local
13 return result; // Set file and line breakpoint inside a().
b.c 12 int result = arg + __b_global; local
13 return result;
  /external/parameter-framework/utility/
convert.hpp 60 static inline bool convertTo(const std::string &str, T &result)
64 * with this type, thus that the result is undefined. */
85 ss >> std::hex >> result; local
92 ss >> result; local
108 * Result may be modified, even in case of failure.
111 * @param[out] result reference to object where to store the result.
116 static inline bool convertTo(const std::string &str, T &result)
118 return details::convertTo<T>(str, result);
131 * @param[out] result reference to object where to store the result
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftgasp.c 28 FT_Int result = FT_GASP_NO_TABLE; local
49 result = range->gaspFlag;
53 result &= 3;
57 return result;
  /external/skia/src/animator/
SkDisplayBounds.cpp 31 bool result = INHERITED::draw(maker); local
42 return result;
  /external/skia/tests/
GrDrawTargetTest.cpp 19 SkString result = caps->dump(); local
20 SkASSERT(!result.isEmpty());
RTConfRegistryTest.cpp 29 int result = 0; local
30 test_rt_conf_parse(&reg, "nonexistent.item", &result);
31 REPORTER_ASSERT(reporter, result == 132);
  /external/v8/test/mjsunit/
debug-liveedit-3.js 60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log); variable
61 print("Result: " + JSON.stringify(result) + "\n");
  /external/v8/test/mjsunit/harmony/
debug-evaluate-blockscopes.js 36 var result; variable
56 result = exec_state.frame().evaluate("i").value();
62 result = -1;
64 assertEquals(1, result);
  /external/v8/test/webkit/fast/js/
Promise-catch.js 29 var result; variable
41 result = localResult;
42 shouldBeEqualToString('result', 'hello');
47 result = localResult;
48 shouldBeEqualToString('result', 'bye');
Promise-then.js 29 var result; variable
41 result = localResult;
42 shouldBeEqualToString('result', 'hello');
51 result = localResult;
52 shouldBeEqualToString('result', 'world');
58 result = localResult;
59 shouldBeEqualToString('result', 'exception');
  /external/valgrind/none/tests/mips32/
test_math.cpp 10 volatile float result __attribute__((unused)) = 123.0f / zero; local
  /external/valgrind/none/tests/
pth_cancel1.c 41 void *result; local
57 if (pthread_join(tid, &result) != 0)
63 printf("result is %s\n", result == PTHREAD_CANCELED ? "correct" : "incorrect");
  /external/vboot_reference/utility/
tpm_init_temp_fix.c 27 uint32_t result; local
32 TlclStartup(); /* ignore result */
39 result = TlclGetFlags(NULL, NULL, NULL);
41 result = TlclSelfTestFull();
42 if (result != 0) {
43 syslog(pri, "TPM selftest failed with code 0x%x\n", result);
49 result = TlclAssertPhysicalPresence();
50 if (result != 0) {
51 syslog(pri, "TPM assertpp failed with code 0x%x\n", result);
55 result = TlclGetFlags(&disable, &deactivated, NULL)
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/test/
camera_test.cpp 40 int result = 0; local
51 return result;
56 int result = 0; local
63 return result;
68 int result = 0; local
75 return result;
80 int result = 0; local
89 return result;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/
compare.pass.cpp 30 std::pair<std::map<Key, int>::iterator, bool> result = local
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
badsyntax_future3.py 10 result = f(2)(4) variable
badsyntax_future4.py 10 result = f(2)(4) variable
badsyntax_future5.py 12 result = f(2)(4) variable

Completed in 2309 milliseconds

1 2 3 4 5 6 7 8 91011>>