OLD | NEW |
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 #ifndef BIN_DARTUTILS_H_ | 5 #ifndef BIN_DARTUTILS_H_ |
6 #define BIN_DARTUTILS_H_ | 6 #define BIN_DARTUTILS_H_ |
7 | 7 |
8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
9 #include "include/dart_api.h" | 9 #include "include/dart_api.h" |
10 #include "platform/globals.h" | 10 #include "platform/globals.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 static bool GetBooleanValue(Dart_Handle bool_obj); | 61 static bool GetBooleanValue(Dart_Handle bool_obj); |
62 static void SetIntegerInstanceField(Dart_Handle handle, | 62 static void SetIntegerInstanceField(Dart_Handle handle, |
63 const char* name, | 63 const char* name, |
64 intptr_t val); | 64 intptr_t val); |
65 static intptr_t GetIntegerInstanceField(Dart_Handle handle, | 65 static intptr_t GetIntegerInstanceField(Dart_Handle handle, |
66 const char* name); | 66 const char* name); |
67 static void SetStringInstanceField(Dart_Handle handle, | 67 static void SetStringInstanceField(Dart_Handle handle, |
68 const char* name, | 68 const char* name, |
69 const char* val); | 69 const char* val); |
70 static bool IsDartSchemeURL(const char* url_name); | 70 static bool IsDartSchemeURL(const char* url_name); |
| 71 static bool IsDartExtensionSchemeURL(const char* url_name); |
71 static bool IsDartIOLibURL(const char* url_name); | 72 static bool IsDartIOLibURL(const char* url_name); |
72 static bool IsDartJsonLibURL(const char* url_name); | 73 static bool IsDartJsonLibURL(const char* url_name); |
73 static bool IsDartUriLibURL(const char* url_name); | 74 static bool IsDartUriLibURL(const char* url_name); |
74 static bool IsDartUtf8LibURL(const char* url_name); | 75 static bool IsDartUtf8LibURL(const char* url_name); |
75 static Dart_Handle CanonicalizeURL(CommandLineOptions* url_mapping, | 76 static Dart_Handle CanonicalizeURL(CommandLineOptions* url_mapping, |
76 Dart_Handle library, | 77 Dart_Handle library, |
77 const char* url_str); | 78 const char* url_str); |
78 static Dart_Handle ReadStringFromFile(const char* filename); | 79 static Dart_Handle ReadStringFromFile(const char* filename); |
79 static Dart_Handle LoadSource(CommandLineOptions* url_mapping, | 80 static Dart_Handle LoadSource(CommandLineOptions* url_mapping, |
80 Dart_Handle library, | 81 Dart_Handle library, |
81 Dart_Handle url, | 82 Dart_Handle url, |
82 Dart_LibraryTag tag, | 83 Dart_LibraryTag tag, |
83 const char* filename, | 84 const char* filename, |
84 Dart_Handle import_map); | 85 Dart_Handle import_map); |
85 static bool PostNull(Dart_Port port_id); | 86 static bool PostNull(Dart_Port port_id); |
86 static bool PostInt32(Dart_Port port_id, int32_t value); | 87 static bool PostInt32(Dart_Port port_id, int32_t value); |
87 | 88 |
88 static const char* kDartScheme; | 89 static const char* kDartScheme; |
| 90 static const char* kDartExtensionScheme; |
89 static const char* kBuiltinLibURL; | 91 static const char* kBuiltinLibURL; |
90 static const char* kCoreLibURL; | 92 static const char* kCoreLibURL; |
91 static const char* kCoreImplLibURL; | 93 static const char* kCoreImplLibURL; |
92 static const char* kIOLibURL; | 94 static const char* kIOLibURL; |
93 static const char* kJsonLibURL; | 95 static const char* kJsonLibURL; |
94 static const char* kUriLibURL; | 96 static const char* kUriLibURL; |
95 static const char* kUtf8LibURL; | 97 static const char* kUtf8LibURL; |
96 | 98 |
97 static const char* kIdFieldName; | 99 static const char* kIdFieldName; |
98 | 100 |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 | 270 |
269 class CObjectByteArray : public CObject { | 271 class CObjectByteArray : public CObject { |
270 public: | 272 public: |
271 DECLARE_COBJECT_CONSTRUCTORS(ByteArray) | 273 DECLARE_COBJECT_CONSTRUCTORS(ByteArray) |
272 | 274 |
273 int Length() const { return cobject_->value.as_byte_array.length; } | 275 int Length() const { return cobject_->value.as_byte_array.length; } |
274 uint8_t* Buffer() const { return cobject_->value.as_byte_array.values; } | 276 uint8_t* Buffer() const { return cobject_->value.as_byte_array.values; } |
275 }; | 277 }; |
276 | 278 |
277 #endif // BIN_DARTUTILS_H_ | 279 #endif // BIN_DARTUTILS_H_ |
OLD | NEW |