/external/icu/icu4c/source/common/ |
ustack.cpp | 38 void* result = 0; local 40 result = elementAt(n); 43 return result; 48 int32_t result = 0; local 50 result = elementAti(n); 53 return result;
|
/external/icu/icu4c/source/i18n/ |
csmatch.cpp | 62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status); local 66 return result;
|
/external/icu/icu4c/source/tools/tzcode/ |
scheck.c | 17 register const char * result; local 20 result = ""; 22 return result; 25 return result; 61 result = format; 63 return result;
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
RawCollationKey.java | 99 int result = super.compareTo(rhs); local 100 return result < 0 ? -1 : result == 0 ? 0 : 1;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
MultiComparator.java | 30 int result = comparators[i].compare(arg0, arg1); local 31 if (result == 0) { 34 if (result > 0) {
|
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/ |
Main.java | 21 double result = parser.parse().evaluate(); local 22 System.out.printf("%s = %s%n", expression, result);
|
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/ |
JSilverAutoEscapingException.java | 38 StringBuilder result = new StringBuilder(message); local 40 result.append(" resource=").append(resourceName); 43 result.append(" line=").append(line); 46 result.append(" column=").append(column); 48 return result.toString();
|
/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/junit/extensions/ |
TestSetup.java | 19 public void run(final TestResult result) { 23 basicRun(result); 27 result.runProtected(this, p);
|
/external/junit/src/junit/textui/ |
ResultPrinter.java | 28 synchronized void print(TestResult result, long runTime) { 30 printErrors(result); 31 printFailures(result); 32 printFooter(result); 48 protected void printErrors(TestResult result) { 49 printDefects(result.errors(), result.errorCount(), "error"); 52 protected void printFailures(TestResult result) { 53 printDefects(result.failures(), result.failureCount(), "failure") [all...] |
/external/junit/src/org/junit/experimental/results/ |
FailureList.java | 8 import org.junit.runner.Result; 19 public Result result() { method in class:FailureList 20 Result result= new Result(); local 21 RunListener listener= result.createListener(); 29 return result;
|
PrintableResult.java | 10 import org.junit.runner.Result; 14 * A test result that prints nicely in error messages. 24 * The result of running JUnit on {@code type} 31 * The result of running JUnit on Request {@code request} 37 private Result result; field in class:PrintableResult 40 * A result that includes the given {@code failures} 43 this(new FailureList(failures).result()); 46 private PrintableResult(Result result) { [all...] |
/external/libbrillo/brillo/strings/ |
string_utils.h | 73 std::string result; local 75 return result; 76 result = *first; 78 result += delimiter; 79 result += *first; 81 return result;
|
/external/libcap/libcap/ |
cap_flag.c | 132 int result; local 140 for (i=0, result=0; i<_LIBCAP_CAPABILITY_U32S; i++) { 141 result |= 149 return result;
|
/external/libchrome/base/ |
callback_helpers.cc | 37 Closure result = closure_; local 39 return result;
|
/external/libchrome/sandbox/win/sandbox_poc/pocdll/ |
utils.h | 37 BOOL result = ::DuplicateHandle(::GetCurrentProcess(), local 46 if (!result) {
|
/external/libcxx/test/std/thread/futures/futures.async/ |
async_race.pass.cpp | 48 int const result = f.get(); local 49 assert(result == 42); 53 int const result = f.get(); local 54 assert(result == 42); 60 int const result = f.get(); local 62 assert(result == 42);
|
/external/libmicrohttpd/src/microhttpd/ |
base64.c | 34 char* result; local 41 result = dest = malloc(in_len / 4 * 3 + 1); 42 if (result == NULL) 58 return result;
|
/external/libvncserver/webclients/novnc/include/ |
base64.js | 17 var result = ''; 24 result += toBase64Table[data[i] >> 2]; 25 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i + 1] >> 4)]; 26 result += toBase64Table[((data[i + 1] & 0x0f) << 2) + (data[i + 2] >> 6)]; 27 result += toBase64Table[data[i + 2] & 0x3f]; 34 result += toBase64Table[data[j] >> 2]; 35 result += toBase64Table[((data[j] & 0x03) << 4) + (data[j + 1] >> 4)]; 36 result += toBase64Table[(data[j + 1] & 0x0f) << 2]; 37 result += toBase64Table[64]; 40 result += toBase64Table[data[j] >> 2] 68 var result, result_length; variable [all...] |
/external/llvm/lib/Support/ |
Atomic.cpp | 47 sys::cas_flag result = *ptr; local 48 if (result == old_value) 50 return result; 100 sys::cas_flag original, result; local 103 result = original * val; 104 } while (sys::CompareAndSwap(ptr, result, original) != original); 106 return result; 110 sys::cas_flag original, result; local 113 result = original / val; 114 } while (sys::CompareAndSwap(ptr, result, original) != original) [all...] |
/external/lzma/CPP/7zip/Archive/Common/ |
MultiStream.cpp | 44 HRESULT result = s.Stream->Read(data, size, &size);
local 49 return result;
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_query.c | 70 uint64_t *result = (uint64_t*)vresult; local 73 *result = 512*1024*1024;
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_bld_blend.c | 128 * e.g. (0.9 * 0.9) + (0.9 * 0.9) != 0.9 * (0.9 + 0.9) as result of + is always <= 1. 142 LLVMValueRef result, src_term, dst_term; local 154 result = lp_build_add(bld, src, dst); 157 result = lp_build_mul(bld, result, src_factor); 158 return lp_build_sub(bld, result, dst); 160 result = lp_build_mul(bld, result, dst_factor); 161 return lp_build_sub(bld, src, result); 164 result = lp_build_add(bld, src, dst) 180 LLVMValueRef result; local [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
unit_test.h | 10 void (*test_func)(struct test_result * result); 11 struct test_result result; member in struct:test 16 void test_begin(struct test_result * result); 17 void test_check(struct test_result * result, int cond);
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_pipe_fs.c | 93 struct svga_shader_result *result, *tmp; local 100 for (result = fs->base.results; result; result = tmp ) { 101 tmp = result->next; 104 result->id, 109 result->id, 114 util_bitmask_clear( svga->fs_bm, result->id ); 116 svga_destroy_shader_result( result ); 119 * Remove stale references to this result to ensure a new result on th [all...] |