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

  /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/gtest/test/
gtest_xml_output_unittest.py 57 <failure message="Value of: 2&#x0A;Expected: 1" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
59 Expected: 1]]></failure>
65 <failure message="Value of: 2&#x0A;Expected: 1" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
67 Expected: 1]]></failure>
68 <failure message="Value of: 3&#x0A;Expected: 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
70 Expected: 2]]></failure>
104 tests that the XML output is expected.
112 tests that the XML output is expected.
120 Confirms that Google Test produces an XML output file with the expected
163 "the expected exit code %s.
    [all...]
  /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/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 225 const char * const Begin; // beginning of expected content
226 const char * const End; // end of expected content (1-past)
236 /// ParseDirective - Go through the comment and see if it indicates expected
244 // search for token: expected
245 if (!PH.Search("expected"))
334 // expected errors and warnings.
345 // Return comments as tokens, this is how we find expected diagnostics.
357 // Find all expected errors/warnings/notes.
362 /// PrintProblem - This takes a diagnostic map of the delta between expected and
370 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/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));
  /frameworks/compile/slang/
slang_rs_backend.cpp 321 const RSExportRecordType *Expected = EF->getParamPacketType();
322 if (Expected) {
323 fprintf(stderr, "Expected:\n");
324 Expected->getLLVMType()->dump();
  /external/llvm/lib/TableGen/
TGLexer.cpp 294 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...]
  /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.");
  /ndk/build/tools/
prebuilt-common.sh 95 # echo "ERROR: reverse_path '$1' -> '$rr' (expected '$2')"
772 echo "Invalid toolchain specified. Expected (arm-linux-androideabi-*|x86-*)"
  /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 + "'.");
  /external/clang/lib/Lex/
Lexer.cpp 705 /// token where it expected something different that it received. If
742 assert(loc.isValid() && loc.isMacroID() && "Expected a valid macro loc");
763 assert(loc.isValid() && loc.isMacroID() && "Expected a valid macro loc");
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 281 assert(apps.length == appIds.length, 'Expected all apps in reorderApps');
  /external/icu4c/test/intltest/
tzrulets.cpp 309 errln(UnicodeString("FAIL: Invalid time zone offset: ") + offset + " /expected: 0");
323 errln(UnicodeString("FAIL: Invalid time zone raw offset: ") + offset + " /expected: -3600000");
326 errln(UnicodeString("FAIL: Invalid DST amount: ") + dstSavings + " /expected: 3600000");
348 errln((UnicodeString)"FAIL: Invalid time zone offset: " + offset + " /expected: -3600000");
362 errln((UnicodeString)"FAIL: Invalid time zone raw offset: " + offset + " /expected: -3600000");
365 errln((UnicodeString)"FAIL: Invalid DST amount: " + dstSavings + " /expected: 0");
372 + offset + " /expected: -3600000");
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
new_tab.js 114 'Expected exactly one dot in the dots-list.');
267 assert(appsPages.length == origPageCount + 1, 'expected new page');
489 assert(draggingAppContainer, 'expected stored container');
505 'expected drag over container');
  /external/clang/lib/Sema/
SemaDecl.cpp 227 // will produce the ambiguity, or will complain that it expected
    [all...]

Completed in 981 milliseconds