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

Unified Diff: src/vm/vector.h

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/vm/unicode.cc ('k') | src/vm/vector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm/vector.h
diff --git a/src/vm/vector.h b/src/vm/vector.h
index c1b3f26b2177aa16215083dc2d81360327bd9ddf..2228c697d41edd77624ddfefe737d0ea8b222966 100644
--- a/src/vm/vector.h
+++ b/src/vm/vector.h
@@ -9,7 +9,7 @@
#include "src/vm/sort.h"
-namespace fletch {
+namespace dartino {
extern uint8* DoubleSize(size_t capacity, uint8* backing);
@@ -55,20 +55,20 @@ class Vector {
const T* Data() const { return backing_; }
void Sort(typename SortType<T>::Compare compare) {
- fletch::Sort<T>(backing_, size_, compare);
+ dartino::Sort<T>(backing_, size_, compare);
}
void Sort(typename SortType<T>::PointerCompare compare) {
- fletch::Sort<T>(backing_, size_, compare);
+ dartino::Sort<T>(backing_, size_, compare);
}
void Sort(typename SortType<T>::Compare compare, size_t start, size_t end) {
- fletch::Sort<T>(backing_ + start, end, compare);
+ dartino::Sort<T>(backing_ + start, end, compare);
}
void Sort(typename SortType<T>::PointerCompare compare, size_t start,
size_t end) {
- fletch::Sort<T>(backing_ + start, end, compare);
+ dartino::Sort<T>(backing_ + start, end, compare);
}
void Swap(Vector& other) {
@@ -151,6 +151,6 @@ class Vector {
size_t capacity_;
};
-} // namespace fletch
+} // namespace dartino
#endif // SRC_VM_VECTOR_H_
« no previous file with comments | « src/vm/unicode.cc ('k') | src/vm/vector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698