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

1 2

  /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/llvm/unittests/ADT/
StringRefTest.cpp 146 SmallVector<StringRef, 5> expected; local
148 expected.push_back("ab"); expected.push_back("c");
150 EXPECT_TRUE(parts == expected);
152 expected.clear(); parts.clear();
153 expected.push_back(""); expected.push_back("ab"); expected.push_back("");
154 expected.push_back("c"); expected.push_back("")
    [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/chromium/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/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/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate_test.js 238 assertTrue('Expected wrapper element to be in document',
241 assertTrue('Expected newly loaded template to be in document',
243 assertTrue('Expected wrapper to be grandparent of template',
251 assertTrue('Expected newly loaded template to be in document',
253 assertTrue('Expected wrapper to be grandparent of template',
283 assertTrue("Expected jstGetTemplate('template') to return a dom element",
289 assertFalse("Expected jstGetTemplate('zxcv') to return null",
  /external/chromium/testing/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>
142 tests that the XML output is expected.
149 tests that the XML output is expected.
157 Confirms that Google Test produces an XML output file with the expected
201 "the expected exit code %s.
    [all...]
  /external/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>
142 tests that the XML output is expected.
149 tests that the XML output is expected.
157 Confirms that Google Test produces an XML output file with the expected
201 "the expected exit code %s.
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 229 const char * const Begin; // beginning of expected content
230 const char * const End; // end of expected content (1-past)
240 /// ParseDirective - Go through the comment and see if it indicates expected
248 // search for token: expected
249 if (!PH.Search("expected"))
342 // expected errors and warnings.
353 // Return comments as tokens, this is how we find expected diagnostics.
365 // Find all expected errors/warnings/notes.
370 /// PrintProblem - This takes a diagnostic map of the delta between expected and
378 const char *Kind, bool Expected) {
    [all...]
ASTUnit.cpp     [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 284 * Consumes {@code expected}.
286 private void expect(JsonToken expected) throws IOException {
288 if (token != expected) {
289 throw new IllegalStateException("Expected " + expected + " but was " + peek());
316 "Expected JSON document to start with '[' or '{' but was " + token);
361 throw new IllegalStateException("Expected a name but was " + peek());
379 throw new IllegalStateException("Expected a string but was " + peek());
397 throw new IllegalStateException("Expected a boolean but was " + token);
415 throw new IllegalStateException("Expected null but was " + token)
    [all...]
  /external/chromium-trace/src/tracing/
test_utils.js 20 'Expected ' + _displayStringForValue(var1) + ' but was ' +
  /external/webkit/LayoutTests/fast/encoding/resources/
parser-tests.js 3 '<ul>Expected failures:' +
29 var want = frame.contentWindow.document.getElementById('expected').firstChild.data;
39 li.appendChild(document.createTextNode(': expected ' + want + '; used ' + have));
  /external/llvm/lib/TableGen/
TGLexer.cpp 297 PrintError(getLoc(), "Expected filename after include");
  /external/v8/test/mjsunit/regress/
regress-137.js 37 case 10: return "A"; // Expected result.
regress-925537.js 28 function assertClose(expected, actual) {
30 if (Math.abs(expected - actual) > delta) {
31 print('Failure: Expected <' + actual + '> to be close to <' +
32 expected + '>');
  /frameworks/base/core/java/android/util/
JsonReader.java 305 * Consumes {@code expected}.
307 private void expect(JsonToken expected) throws IOException {
309 if (token != expected) {
310 throw new IllegalStateException("Expected " + expected + " but was " + peek());
337 "Expected JSON document to start with '[' or '{' but was " + token);
356 throw syntaxError("Expected EOF");
390 throw new IllegalStateException("Expected a name but was " + peek());
408 throw new IllegalStateException("Expected a string but was " + peek());
426 throw new IllegalStateException("Expected a boolean but was " + token)
    [all...]
  /frameworks/compile/slang/
slang_rs_backend.cpp 329 const RSExportRecordType *Expected = EF->getParamPacketType();
330 if (Expected) {
331 fprintf(stderr, "Expected:\n");
332 Expected->getLLVMType()->dump();
  /external/protobuf/python/google/protobuf/
text_format.py 175 # Group names are expected to be capitalized as they appear in the
215 raise tokenizer.ParseErrorPreviousToken('Expected "%s".' % (end_token))
382 raise self._ParseError('Expected "%s".' % token)
406 raise self._ParseError('Expected identifier.')
517 raise self._ParseError('Expected "true" or "false".')
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 351 AddError("Expected hex digits for escape sequence.");
  /external/llvm/lib/Support/
YAMLParser.cpp 377 /// \a Expected. This updates \a Column.
378 bool consume(uint32_t Expected);
888 bool Scanner::consume(uint32_t Expected) {
889 if (Expected >= 0x80)
895 if (uint8_t(*Current) == Expected) {
936 setError( "Could not find expected : for simple key"
    [all...]
  /external/v8/test/mjsunit/
mjsunit.js 46 // Expected and found values the same objects, or the same primitive
51 // Expected and found values are identical primitive values or functions
58 // as the expected object. The expected object doesn't need to be an Array,
63 // expected object. The type of object isn't checked.
67 // the expected string. Only kept for backwards compatability, please
79 // please just use assertEquals(null, expected).
164 message += ": expected <" + expectedText +
223 assertSame = function assertSame(expected, found, name_opt) {
226 if (found === expected) {
    [all...]
  /ndk/build/tools/
prebuilt-common.sh 95 # echo "ERROR: reverse_path '$1' -> '$rr' (expected '$2')"
881 echo "Invalid toolchain specified. Expected (arm-linux-androideabi-*|x86-*|mips*)"
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.js 116 'Expected exactly one apps-page in the apps-page-list.');
122 'Expected exactly one dot in the dots-list.');
276 assert(appsPages.length == origPageCount + 1, 'expected new page');
357 assert(appElement, 'Expected app-template to have an app child');
359 'Expected every app to have an ID or empty string');
599 assert(draggingAppContainer, 'expected stored container');
615 'expected drag over container');
  /external/webkit/LayoutTests/http/tests/cookies/resources/
cookies-test-pre.js 197 testFailed("cookie was '" + cookie + "'. Expected '" + result + "'.");

Completed in 636 milliseconds

1 2