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

  /external/lzma/CPP/Common/
MyString.cpp 213 const char *s1 = _chars;
228 const wchar_t *s1 = _chars;
384 // MY_STRING_REALLOC(_chars, char, newLimit + 1, _len + 1);
386 memcpy(newBuf, _chars, (size_t)(_len + 1));
387 MY_STRING_DELETE(_chars);
388 _chars = newBuf;
395 // MY_STRING_REALLOC(_chars, char, newLimit + 1, 0);
398 MY_STRING_DELETE(_chars);
399 _chars = newBuf;
405 _chars = 0;
    [all...]
MyString.h 247 char *_chars; member in class:AString
253 memmove(_chars + dest, _chars + src, (size_t)(_len - src + 1) * sizeof(char));
296 ~AString() { MY_STRING_DELETE(_chars); }
300 void Empty() { _len = 0; _chars[0] = 0; }
302 operator const char *() const { return _chars; }
303 const char *Ptr() const { return _chars; }
304 const char *Ptr(unsigned pos) const { return _chars + pos; }
305 const char *RightPtr(unsigned num) const { return _chars + _len - num; }
306 char Back() const { return _chars[(size_t)_len - 1]; }
481 wchar_t *_chars; member in class:UString
734 wchar_t *_chars; member in class:UString2
    [all...]
  /external/fonttools/Lib/fontTools/
afmLib.py 102 self._chars = {}
143 self._chars[charname] = charnum, width, (l, b, r, t)
222 lines.append("StartCharMetrics " + repr(len(self._chars)))
223 items = [(charnum, (charname, width, box)) for charname, (charnum, width, box) in self._chars.items()]
268 return char in self._chars
271 return list(self._chars.keys())
314 return self._chars[key]
322 self._chars[key] = value
330 del self._chars[key]
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 

Completed in 387 milliseconds