HomeSort by relevance Sort by last modified time
    Searched refs:Expected (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/llvm/unittests/MC/
StringTableBuilderTest.cpp 27 std::string Expected;
28 Expected += '\x00';
29 Expected += "foobar";
30 Expected += '\x00';
31 Expected += "foo";
32 Expected += '\x00';
34 EXPECT_EQ(Expected, B.data());
  /external/clang/unittests/Tooling/
RefactoringCallbacksTest.cpp 23 const std::string &Expected,
36 EXPECT_EQ(Expected, Context.getRewrittenText(ID));
41 std::string Expected = "void f() { ; }";
43 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
48 std::string Expected = "#define A void f() { ; }\nA";
50 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
55 std::string Expected = "#define A void f() { int i = 1; }";
57 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
62 std::string Expected = "void f() { int i = 2; }";
64 expectRewritten(Code, Expected, id("id", expr(integerLiteral()))
    [all...]
CompilationDatabaseTest.cpp 27 << "Expected an error because of: " << Explanation.str();
499 std::vector<std::string> Expected;
500 Expected.push_back("clang-tool");
501 Expected.push_back("-c");
502 Expected.push_back("-DDEF3");
503 Expected.push_back("source");
504 ASSERT_EQ(Expected, Result[0].CommandLine);
518 std::vector<std::string> Expected;
519 Expected.push_back("clang-tool");
520 Expected.push_back("source")
    [all...]
  /external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.isbind/
is_bind_expression.pass.cpp 16 template <bool Expected, class T>
20 static_assert(std::is_bind_expression<T>::value == Expected, "");
is_placeholder.pass.cpp 16 template <int Expected, class T>
20 static_assert(std::is_placeholder<T>::value == Expected, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.isbind/
is_bind_expression.pass.cpp 16 template <bool Expected, class T>
20 static_assert(std::is_bind_expression<T>::value == Expected, "");
is_placeholder.pass.cpp 16 template <int Expected, class T>
20 static_assert(std::is_placeholder<T>::value == Expected, "");
  /external/valgrind/main/gdbserver_tests/
mcwatchpoints.stderr.exp 7 u: Expected value at 0
8 f: Expected value at 4
9 d: Expected value at 8
  /external/chromium_org/native_client_sdk/src/tools/tests/
chrome_mock.py 29 parser.error('Expected URL to load.')
44 PrintAndFlush('Done sleeping. Expected to be killed.')
  /external/llvm/test/MC/ARM/
directive-fpu-softvfp.s 5 @ Expected result: The integrated-as should be able to assemble this file
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
unittestresults_unittest.py 61 <failure message="Value of: scale&#x0A; Actual: 4&#x0A;Expected: 1" type=""><![CDATA[../../Source/WebKit/chromium/tests/WebFrameTest.cpp:191
64 Expected: 1]]></failure>
68 expected = ["WebFrameTest.FAILS_DivAutoZoomParamsTest"]
69 self.assertEqual(expected, UnitTestResults.results_from_string(one_failure_xml))
76 <failure message="Value of: pi&#x0A; Actual: 3&#x0A;Expected: 3.14" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassOneTest.cpp:42
79 Expected: 3.14]]></failure>
82 <failure message="Value of: e&#x0A; Actual: 2&#x0A;Expected: 2.71" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:30
85 Expected: 2.71]]></failure>
86 <failure message="Value of: tau&#x0A; Actual: 6&#x0A;Expected: 6.28" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:55
89 Expected: 6.28]]></failure
    [all...]
  /libcore/json/src/main/java/org/json/
JSONTokener.java 285 throw syntaxError("Expected literal value");
379 throw syntaxError("Expected ':' after " + name);
492 throw syntaxError("Expected " + c + " but was " + result);
  /external/llvm/unittests/ADT/
StringRefTest.cpp 152 SmallVector<StringRef, 5> expected; local
154 expected.push_back("ab"); expected.push_back("c");
156 EXPECT_TRUE(parts == expected);
158 expected.clear(); parts.clear();
159 expected.push_back(""); expected.push_back("ab"); expected.push_back("");
160 expected.push_back("c"); expected.push_back("")
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
XML.java 169 throw x.syntaxError("Expected 'CDATA['");
  /external/chromium-libpac/test/js-unittest/
dns_fail.js 2 // failing. It tests that functions return the expected values.
23 function expectEq(expected, actual) {
24 if (expected != actual)
25 throw "Expected " + expected + " but was " + actual;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
assert_additions.js 11 throw new Error('Assertion failed: expected undefined');
39 throw new Error('Expected to throw ' + error + ' but threw ' + e.name +
45 throw new Error('Expected to throw exception ' + error + ' - ' + msg);
50 * @param {Array.<string>} array1 The expected array.
64 throw new Error('Expected ' + JSON.stringify(array1) +
71 * @param {Object} expected The expected object.
75 function assertEqualsJSON(expected, actual, opt_message) {
76 if (JSON.stringify(actual) !== JSON.stringify(expected)) {
78 'Expected ' + JSON.stringify(expected) + '\n'
    [all...]
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
dns_fail.js 2 // failing. It tests that functions return the expected values.
23 function expectEq(expected, actual) {
24 if (expected != actual)
25 throw "Expected " + expected + " but was " + actual;
  /external/chromium_org/v8/test/mjsunit/es6/
debug-stepin-collections-foreach.js 19 // Check whether we break at the expected line.
21 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
31 print("element " + num); // Expected to step to this point.
36 print("key " + key + ", value " + val); // Expected to step to this point.
81 // Check whether we break at the expected line.
82 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 63 <failure message="Value of: 2&#x0A;Expected: 1" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
65 Expected: 1%(stack)s]]></failure>
71 <failure message="Value of: 2&#x0A;Expected: 1" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
73 Expected: 1%(stack)s]]></failure>
74 <failure message="Value of: 3&#x0A;Expected: 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
76 Expected: 2%(stack)s]]></failure>
124 tests that the XML output is expected.
131 tests that the XML output is expected.
139 Confirms that Google Test produces an XML output file with the expected
183 "the expected exit code %s.
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
test.js 22 test.fail('Expected to find "' + expectedMessage + '" in the output,' +
  /prebuilts/misc/common/swig/include/2.0.11/php/
phppointers.i 13 SWIG_PHP_Error( E_ERROR, SWIG_PHP_Arg_Error_Msg($argnum, Expected a reference) );
  /external/chromium_org/tools/gn/
scope_per_file_provider_unittest.cc 13 TEST(ScopePerFileProvider, Expected) {
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafety.h 95 /// \param Expected -- the kind of lock expected.
99 LockKind Expected, LockKind Received,
  /external/chromium_org/v8/test/mjsunit/
debug-stepin-builtin-callback.js 44 // Check whether we break at the expected line.
46 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
56 print("element " + num); // Expected to step to this point.
61 print("element " + num); // Expected to step to this point.
66 print("elements " + a + " and " + b); // Expected to step to this point.
131 // Check whether we break at the expected line.
132 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 95 << "Expected \"" << ExpectedPrinted.str() << "\", "
673 SmallString<128> Expected;
674 Expected.append("void operator");
675 Expected.append(OperatorNames[i]);
676 Expected.append("(Z z)");
682 Expected));
697 SmallString<128> Expected;
698 Expected.append("void operator");
699 Expected.append(OperatorNames[i]);
700 Expected.append("()")
    [all...]

Completed in 686 milliseconds

1 2 3 4