Revision: 5537
Author: [email protected]
Date: Mon Sep 27 10:17:32 2010
Log: [Isolates] Make lint happy.

TBR=yurys

Review URL: http://codereview.chromium.org/3473020
http://code.google.com/p/v8/source/detail?r=5537

Modified:
 /branches/experimental/isolates/src/arm/macro-assembler-arm.cc
 /branches/experimental/isolates/src/ic.h
 /branches/experimental/isolates/src/runtime.cc
 /branches/experimental/isolates/src/spaces-inl.h
 /branches/experimental/isolates/src/string-search.h
 /branches/experimental/isolates/src/stub-cache.h

=======================================
--- /branches/experimental/isolates/src/arm/macro-assembler-arm.cc Fri Sep 24 17:27:22 2010 +++ /branches/experimental/isolates/src/arm/macro-assembler-arm.cc Mon Sep 27 10:17:32 2010
@@ -1903,7 +1903,6 @@
                       ExternalReference::the_hole_value_location(),
                       scratch,
                       num_arguments);
-
 }


=======================================
--- /branches/experimental/isolates/src/ic.h    Fri Sep 24 17:27:22 2010
+++ /branches/experimental/isolates/src/ic.h    Mon Sep 27 10:17:32 2010
@@ -237,7 +237,8 @@

 class KeyedCallIC: public CallICBase {
  public:
- explicit KeyedCallIC(Isolate* isolate) : CallICBase(Code::KEYED_CALL_IC, isolate) {
+  explicit KeyedCallIC(Isolate* isolate)
+      : CallICBase(Code::KEYED_CALL_IC, isolate) {
     ASSERT(target()->is_keyed_call_stub());
   }

=======================================
--- /branches/experimental/isolates/src/runtime.cc      Fri Sep 24 17:27:22 2010
+++ /branches/experimental/isolates/src/runtime.cc      Mon Sep 27 10:17:32 2010
@@ -703,7 +703,7 @@
             // This is an accessor property with getter and/or setter.
             FixedArray* callbacks =
                 FixedArray::cast(dictionary->ValueAt(entry));
-            elms->set(IS_ACCESSOR_INDEX,heap->true_value());
+            elms->set(IS_ACCESSOR_INDEX, heap->true_value());
             elms->set(GETTER_INDEX, callbacks->get(0));
             elms->set(SETTER_INDEX, callbacks->get(1));
             break;
=======================================
--- /branches/experimental/isolates/src/spaces-inl.h Thu Sep 16 17:50:24 2010 +++ /branches/experimental/isolates/src/spaces-inl.h Mon Sep 27 10:17:32 2010
@@ -238,7 +238,8 @@
   } else {
     flags_ =
         (flags_ & ~(1 << WATERMARK_INVALIDATED)) |
- (heap_->page_watermark_invalidated_mark_ ^ (1 << WATERMARK_INVALIDATED));
+        (heap_->page_watermark_invalidated_mark_ ^
+         (1 << WATERMARK_INVALIDATED));
   }

   ASSERT(IsWatermarkValid() == !value);
=======================================
--- /branches/experimental/isolates/src/string-search.h Fri Sep 24 17:27:22 2010 +++ /branches/experimental/isolates/src/string-search.h Mon Sep 27 10:17:32 2010
@@ -185,15 +185,16 @@
   }
   for (int i = start; i < pattern.length() - 1; i++) {
     PatternChar c = pattern[i];
- int bucket = (sizeof(PatternChar) ==1) ? c : c % RuntimeState::kBMAlphabetSize;
+    int bucket = (sizeof(PatternChar) ==1)
+        ? c : c % RuntimeState::kBMAlphabetSize;
     bad_char_occurrence[bucket] = i;
   }
 }


 template <typename PatternChar>
-static void BoyerMoorePopulateGoodSuffixTable(RuntimeState* state,
- Vector<const PatternChar> pattern) {
+static void BoyerMoorePopulateGoodSuffixTable(
+    RuntimeState* state, Vector<const PatternChar> pattern) {
   RuntimeState::BMGoodSuffixBuffers& bmgs_buffers = *state->bmgs_buffers();
   int m = pattern.length();
int start = m < RuntimeState::kBMMaxShift ? 0 : m - RuntimeState::kBMMaxShift;
=======================================
--- /branches/experimental/isolates/src/stub-cache.h Fri Sep 24 17:27:22 2010 +++ /branches/experimental/isolates/src/stub-cache.h Mon Sep 27 10:17:32 2010
@@ -271,7 +271,7 @@


  private:
-  explicit StubCache(Isolate*);
+  explicit StubCache(Isolate* isolate);

   friend class Isolate;
   friend class SCTableReference;

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to