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

  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBSlice.h 39 : m_begin(begin)
42 ASSERT(m_end >= m_begin);
46 : m_begin(v.data())
47 , m_end(m_begin + v.size())
49 ASSERT(m_end >= m_begin);
56 const char* begin() const { return m_begin; }
60 const char* m_begin; member in class:WebCore::LevelDBSlice
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLComponent.h 37 URLComponent() : m_begin(0), m_length(-1) { }
38 URLComponent(int begin, int length) : m_begin(begin), m_length(length) { }
56 m_begin = 0;
60 bool operator==(const URLComponent& other) const { return m_begin == other.m_begin && m_length == other.m_length; }
62 int begin() const { return m_begin; }
63 void setBegin(int begin) { m_begin = begin; }
68 int end() const { return m_begin + m_length; }
71 int m_begin; // Byte offset in the string of this component. member in class:WTF::URLComponent

Completed in 171 milliseconds