Searched defs:GetChars (Results 1 - 4 of 4) sorted by relevance

/external/v8/tools/
H A Dgrokdump.py682 def GetChars(self): member in class:String
689 return "\"%s\"" % self.GetChars()
701 def GetChars(self): member in class:SeqString
731 def GetChars(self): member in class:ExternalString
747 def GetChars(self): member in class:ConsString
748 return self.left.GetChars() + self.right.GetChars()
763 return "<%s>" % self.to_string.GetChars()
837 return script_source.GetChars()[start:end]
/external/chromium_org/v8/tools/
H A Dgrokdump.py1038 def GetChars(self): member in class:String
1045 return "\"%s\"" % self.GetChars()
1057 def GetChars(self): member in class:SeqString
1087 def GetChars(self): member in class:ExternalString
1103 def GetChars(self): member in class:ConsString
1105 return self.left.GetChars() + self.right.GetChars()
1141 return "Oddball(%08x, <%s>)" % (self.address, self.to_string.GetChars())
1337 return script_source.GetChars()[start:end]
/external/v8/src/
H A Dobjects-inl.h2305 char* SeqAsciiString::GetChars() { function in class:SeqAsciiString
2315 uc16* SeqTwoByteString::GetChars() { function in class:SeqTwoByteString
2415 const char* ExternalAsciiString::GetChars() { function in class:ExternalAsciiString
2422 return GetChars()[index];
2447 const uint16_t* ExternalTwoByteString::GetChars() { function in class:ExternalTwoByteString
2454 return GetChars()[index];
2460 return GetChars() + start;
/external/chromium_org/v8/src/
H A Dobjects-inl.h2742 SeqOneByteString::cast(string)->GetChars() + slice_offset,
2748 SeqTwoByteString::cast(string)->GetChars() + slice_offset,
2754 ExternalAsciiString::cast(string)->GetChars() + slice_offset,
2760 ExternalTwoByteString::cast(string)->GetChars() + slice_offset,
2833 uint8_t* SeqOneByteString::GetChars() { function in class:v8::internal::SeqOneByteString
2843 uc16* SeqTwoByteString::GetChars() { function in class:v8::internal::SeqTwoByteString
2944 const uint8_t* ExternalAsciiString::GetChars() { function in class:v8::internal::ExternalAsciiString
2951 return GetChars()[index];
2976 const uint16_t* ExternalTwoByteString::GetChars() { function in class:v8::internal::ExternalTwoByteString
2983 return GetChars()[inde
[all...]

Completed in 171 milliseconds