Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Side by Side Diff: runtime/bin/main.cc

Issue 1407393005: Get tools/test.py --noopt green. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | runtime/bin/secure_socket.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include <stdlib.h> 5 #include <stdlib.h>
6 #include <string.h> 6 #include <string.h>
7 #include <stdio.h> 7 #include <stdio.h>
8 8
9 #include "include/dart_api.h" 9 #include "include/dart_api.h"
10 #include "include/dart_tools_api.h" 10 #include "include/dart_tools_api.h"
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1231 { "dart:_builtin", "::", "_getPrintClosure" }, 1231 { "dart:_builtin", "::", "_getPrintClosure" },
1232 { "dart:_builtin", "::", "_getUriBaseClosure" }, 1232 { "dart:_builtin", "::", "_getUriBaseClosure" },
1233 { "dart:_builtin", "::", "_resolveUri" }, 1233 { "dart:_builtin", "::", "_resolveUri" },
1234 { "dart:_builtin", "::", "_setWorkingDirectory" }, 1234 { "dart:_builtin", "::", "_setWorkingDirectory" },
1235 { "dart:_builtin", "::", "_loadDataAsync" }, 1235 { "dart:_builtin", "::", "_loadDataAsync" },
1236 { "dart:io", "::", "_makeUint8ListView" }, 1236 { "dart:io", "::", "_makeUint8ListView" },
1237 { "dart:io", "::", "_makeDatagram" }, 1237 { "dart:io", "::", "_makeDatagram" },
1238 { "dart:io", "::", "_setupHooks" }, 1238 { "dart:io", "::", "_setupHooks" },
1239 { "dart:io", "CertificateException", "CertificateException." }, 1239 { "dart:io", "CertificateException", "CertificateException." },
1240 { "dart:io", "HandshakeException", "HandshakeException." }, 1240 { "dart:io", "HandshakeException", "HandshakeException." },
1241 { "dart:io", "OSError", "OSError." },
1241 { "dart:io", "TlsException", "TlsException." }, 1242 { "dart:io", "TlsException", "TlsException." },
1242 { "dart:io", "X509Certificate", "X509Certificate._" }, 1243 { "dart:io", "X509Certificate", "X509Certificate._" },
1243 { "dart:io", "_ExternalBuffer", "set:data" }, 1244 { "dart:io", "_ExternalBuffer", "set:data" },
1244 { "dart:io", "_Platform", "set:_nativeScript" }, 1245 { "dart:io", "_Platform", "set:_nativeScript" },
1245 { "dart:io", "_ProcessStartStatus", "set:_errorCode" }, 1246 { "dart:io", "_ProcessStartStatus", "set:_errorCode" },
1246 { "dart:io", "_ProcessStartStatus", "set:_errorMessage" }, 1247 { "dart:io", "_ProcessStartStatus", "set:_errorMessage" },
1247 { "dart:io", "_SecureFilterImpl", "get:ENCRYPTED_SIZE" }, 1248 { "dart:io", "_SecureFilterImpl", "get:ENCRYPTED_SIZE" },
1248 { "dart:io", "_SecureFilterImpl", "get:SIZE" }, 1249 { "dart:io", "_SecureFilterImpl", "get:SIZE" },
1249 { "dart:vmservice_io", "::", "_addResource" }, 1250 { "dart:vmservice_io", "::", "_addResource" },
1250 { "dart:vmservice_io", "::", "main" }, 1251 { "dart:vmservice_io", "::", "main" },
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
1489 exit(Process::GlobalExitCode()); 1490 exit(Process::GlobalExitCode());
1490 } 1491 }
1491 1492
1492 } // namespace bin 1493 } // namespace bin
1493 } // namespace dart 1494 } // namespace dart
1494 1495
1495 int main(int argc, char** argv) { 1496 int main(int argc, char** argv) {
1496 dart::bin::main(argc, argv); 1497 dart::bin::main(argc, argv);
1497 UNREACHABLE(); 1498 UNREACHABLE();
1498 } 1499 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/secure_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698