Searched defs:result (Results 1 - 25 of 3569) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-35.js28 var result; variable
29 eval("result = 42; while(true)break");
30 assertEquals(42, result);
32 eval("result = 87; while(false)continue");
33 assertEquals(87, result);
H A Dregress-676025.js28 var result; variable
29 try { eval('a=/(/'); } catch (e) { result = e; }
30 assertEquals('object', typeof result);
31 assertTrue(result instanceof SyntaxError);
/external/chromium/chrome/browser/sync/util/
H A Ddata_encryption_unittest.cc20 string result; local
21 ASSERT_TRUE(DecryptData(example, &result));
22 ASSERT_TRUE(result == "example");
27 string result; local
28 ASSERT_FALSE(DecryptData(example, &result));
/external/elfutils/libelf/
H A Delf_cntl.c65 int result = 0; local
85 result = -1;
97 result = -1;
103 return result;
H A Delf_flagehdr.c67 unsigned int result; local
79 result = (elf->state.elf.ehdr_flags |= (flags & ELF_F_DIRTY));
81 result = (elf->state.elf.ehdr_flags &= ~(flags & ELF_F_DIRTY));
88 return result;
H A Delf_flagelf.c67 unsigned int result; local
79 result = (elf->flags
82 result = (elf->flags
90 return result;
H A Delf_flagphdr.c67 unsigned int result; local
79 result = (elf->state.elf.phdr_flags |= (flags & ELF_F_DIRTY));
81 result = (elf->state.elf.phdr_flags &= ~(flags & ELF_F_DIRTY));
88 return result;
H A Delf_flagscn.c67 unsigned int result; local
79 result = (scn->flags |= (flags & ELF_F_DIRTY));
81 result = (scn->flags &= ~(flags & ELF_F_DIRTY));
88 return result;
H A Delf_flagshdr.c67 unsigned int result; local
79 result = (scn->shdr_flags |= (flags & ELF_F_DIRTY));
81 result = (scn->shdr_flags &= ~(flags & ELF_F_DIRTY));
88 return result;
H A Delf_rawfile.c66 char *result; local
86 result = (char *) elf->map_address + elf->start_offset;
89 return result;
H A Dgelf_getsyminfo.c68 GElf_Syminfo *result = NULL; local
95 result = dst;
100 return result;
H A Dgelf_getverdaux.c68 GElf_Verdaux *result; local
93 result = NULL;
96 result = (GElf_Verdaux *) memcpy (dst, (char *) data->d_buf + offset,
102 return result;
H A Dgelf_getverdef.c68 GElf_Verdef *result; local
93 result = NULL;
96 result = (GElf_Verdef *) memcpy (dst, (char *) data->d_buf + offset,
101 return result;
H A Dgelf_getvernaux.c68 GElf_Vernaux *result; local
96 result = NULL;
99 result = (GElf_Vernaux *) memcpy (dst, (char *) data->d_buf + offset,
104 return result;
H A Dgelf_getverneed.c68 GElf_Verneed *result; local
96 result = NULL;
99 result = (GElf_Verneed *) memcpy (dst, (char *) data->d_buf + offset,
104 return result;
/external/freetype/src/base/
H A Dftxf86.c30 const char* result = NULL; local
34 FT_FACE_FIND_SERVICE( face, result, XF86_NAME );
36 return result;
/external/aac/libFDK/include/mips/
H A Dclz_mips.h98 INT result; local
99 __asm__ ("clz %0,%1" : "=d" (result) : "d" (value));
101 return result;
109 INT result; local
110 __asm__ ("clz %[result], %[value]" : [result] "=r" (result) : [value] "r" (value)) ;
112 return result;
/external/chromium/chrome/browser/notifications/
H A Dnotifications_interactive_uitest.cc36 bool result; local
40 &result));
41 EXPECT_TRUE(result);
57 // Load a page which just does a request; no user gesture should result
/external/chromium/chrome/browser/
H A Dpower_save_blocker_mac.cc20 IOReturn result; local
23 result = IOPMAssertionCreate(
29 result = IOPMAssertionRelease(sleep_assertion);
33 if (result != kIOReturnSuccess) {
/external/chromium/testing/gtest/samples/
H A Dsample1.cc38 int result = 1; local
40 result *= i;
43 return result;
/external/clang/test/CodeGen/
H A D2003-11-26-PointerShift.c3 unsigned long do_csum(const unsigned char *buff, int len, unsigned long result) { argument
4 if (2 & (unsigned long) buff) result += 1;
5 return result;
H A Dnvptx-inlineasm.c5 int result; local
13 "}" : "=r"(result) : "r"(a));
14 return result;
/external/clang/test/PCH/
H A Denum.c11 int result = aRoundShape; local
12 return result;
/external/compiler-rt/lib/
H A Dashldi3.c28 dwords result; local
32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_word);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
42 return result.all;
H A Dashrdi3.c28 dwords result; local
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
43 return result.all;

Completed in 328 milliseconds

1234567891011>>