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

<<11121314151617181920>>

/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/parameter-framework/utility/
H A DTokenizer.cpp65 vector<string> result; local
71 return result;
73 result.push_back(token);
/external/pdfium/fpdfsdk/src/javascript/
H A Dresource.cpp58 CFX_WideString result = CFX_WideString::FromLocal(class_name); local
60 result += L".";
61 result += CFX_WideString::FromLocal(property_name);
63 result += L": ";
64 result += details;
65 return result;
/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();
/external/sfntly/cpp/src/test/
H A Dplatform_thread.cc45 DWORD result = WaitForSingleObject(thread_handle, INFINITE); local
46 assert(result == WAIT_OBJECT_0);
/external/skia/debugger/
H A Ddebuggermain.cpp69 int result = a.exec(); local
71 return result;
/external/skia/src/svg/parser/
H A DSkSVGGroup.cpp19 SkSVGElement* result = (*ptr)->getGradient(); local
20 if (result != NULL)
21 return result;
/external/skia/tests/
H A DInterpolatorTest.cpp22 SkInterpolator::Result result; local
27 result = inter.timeToValues(0, v);
28 REPORTER_ASSERT(reporter, result == SkInterpolator::kFreezeStart_Result);
31 result = inter.timeToValues(99, v);
32 REPORTER_ASSERT(reporter, result == SkInterpolator::kFreezeStart_Result);
35 result = inter.timeToValues(100, v);
36 REPORTER_ASSERT(reporter, result == SkInterpolator::kNormal_Result);
39 result = inter.timeToValues(200, v);
40 REPORTER_ASSERT(reporter, result == SkInterpolator::kNormal_Result);
43 result
[all...]
H A DPathOpsDLineTest.cpp41 double result = line.isLeft(pt); local
42 if ((result <= 0 && index >= 1) || (result < 0 && index == 0)) {
H A DTest.cpp24 SkString result = SkStringPrintf("%s:%d\t", this->fileName, this->lineNo); local
26 result.append(this->message);
28 result.append(": ");
31 result.append(this->condition);
32 return result;
/external/v8/src/compiler/
H A Dgraph.cc26 Node* result = Node::New(this, input_count, inputs); local
27 result->Initialize(op);
30 (*i)->Decorate(result);
32 return result;
/external/v8/src/libplatform/
H A Dtask-queue.cc35 Task* result = task_queue_.front(); local
37 return result;
/external/v8/test/cctest/
H A Dtest-platform.cc54 v8::Local<v8::Value> result = foo->Call(global_object, 0, NULL); local
55 CHECK_EQ(0, result->Uint32Value() % v8::base::OS::ActivationFrameAlignment());
/external/v8/test/mjsunit/
H A Darray-iteration.js86 var result = []; variable
87 a.forEach(function(n) { result.push(this.value); }, o);
88 assertArrayEquals([42,42], result);
161 var result = [1,2,3,4,5]; variable
162 assertArrayEquals(result, a.map(function(n) { return n + 1; }));
167 result = [42,43,44,45,46];
168 assertArrayEquals(result, a.map(function(n) { return this.delta + n; }, o));
172 result = [1,2,3,4,5];
173 assertArrayEquals(result, a.map(function(n, index, array) { array[index] = n + 1; return n + 1;}));
174 assertArrayEquals(result,
[all...]
H A Dregexp-global.js252 var result = subject.replace(/~/g, replacement); variable
253 for (var i = 0; i < 5; i++) result += result;
254 new RegExp(result);
/external/v8/test/mjsunit/harmony/
H A Dblock-for.js76 var result = ''; variable
77 for (let p in {a : [0], b : 1}) { result += p; }
78 assertEquals('ab', result);
80 var result = ''; variable
81 for (let p in {a : {v:1}, b : 1}) { result += p; }
82 assertEquals('ab', result);
84 var result = ''; variable
85 for (let p in { get a() {}, b : 1}) { result += p; }
86 assertEquals('ab', result);
88 var result variable
[all...]
/external/v8/test/webkit/
H A Dcomparison-operators.js31 var result = []; variable
33 result.push([new func("return " + expr + ";"), resultValue]);
34 result.push([new func("if (" + expr + ") return true; return false;"), resultValue]);
35 result.push([new func("var k = 0; while (" + expr + ") if (k++) return true; return false;"), resultValue]);
36 result.push([new func("var k = 0; for (; " + expr + "; ) if (k++) return true; return false;"), resultValue]);
37 return result;
H A Ddfg-dead-min-two-args.js49 var result = eval(empty + "foo(x, y)"); variable
52 shouldBe("result", "100");
65 var result = eval(empty + "bar(x, y)"); variable
68 shouldBe("result", "100");
/external/v8/test/webkit/fast/js/
H A DJSON-parse-reviver.js104 var result = JSON.parse('["a value", "another value", "and another value", "to delete", "extra value"]', arrayReviver); variable
108 shouldBe("result", "lastHolder['']");
111 shouldBeTrue("result.hasOwnProperty(3)");
174 var result = JSON.parse('{"a property" : "a value", "another property" : "another value", "and another property" : "and another value", "to delete" : "will be deleted"}', objectReviver); variable
178 shouldBeFalse("result.hasOwnProperty('a property')");
179 shouldBeTrue("result.hasOwnProperty('to delete')");
180 shouldBe("result", "lastHolder['']");
193 debug("Test behaviour of revivor that introduces a new array classed object (the result of a regex)");
/external/valgrind/drd/tests/
H A Dannotate_hb_race.c32 int result[2]; local
35 pthread_create(&tid[0], 0, thread_func, &result[0]);
36 pthread_create(&tid[1], 0, thread_func, &result[1]);
/external/valgrind/memcheck/tests/
H A Dinltemplate.cpp35 int result; local
36 result = X::temp_member_func_noinline(result);
/external/valgrind/none/tests/
H A Dpth_cancel1.c41 void *result; local
57 if (pthread_join(tid, &result) != 0)
63 printf("result is %s\n", result == PTHREAD_CANCELED ? "correct" : "incorrect");
/external/aac/libFDK/include/arm/
H A Dfixmul_arm.h112 INT result ; local
113 __asm__ ("smmul %0, %1, %2" : "=r" (result)
115 return result ;
120 INT discard, result ; local
121 __asm__ ("smull %0, %1, %2, %3" : "=&r" (discard), "=r" (result)
123 return result ;
131 INT result ; local
133 : "=r" (result)
135 return result ;
H A Dscale.h97 INT result; local
101 : "=&r"(result)
105 return result;
112 INT result; local
116 : "=&r"(result)
120 return result;
/external/aac/libFDK/include/mips/
H A Dcplx_mul.h110 INT result; local
114 "mfhi %[result];\n"
115 : [result]"=r"(result)
119 *c_Re = result;
123 "mfhi %[result];\n"
124 : [result]"=r"(result)
127 *c_Im = result;
139 INT result; local
[all...]

Completed in 759 milliseconds

<<11121314151617181920>>