/usr/include/ptlib/contain.inl is in libpt-dev 2.10.11~dfsg-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | /*
* contain.inl
*
* Container Class Inline Function Definitions
*
* Portable Windows Library
*
* Copyright (c) 1993-1998 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Portions are Copyright (C) 1993 Free Software Foundation, Inc.
* All Rights Reserved.
*
* Contributor(s): ______________________________________.
*
* $Id: contain.inl 19266 2008-01-16 03:51:00Z rjongbloed $
*/
///////////////////////////////////////////////////////////////////////////////
PINLINE PContainer & PContainer::operator=(const PContainer & cont)
{ AssignContents(cont); return *this; }
PINLINE void PContainer::CloneContents(const PContainer *)
{ }
PINLINE void PContainer::CopyContents(const PContainer &)
{ }
PINLINE PINDEX PContainer::GetSize() const
{ return PAssertNULL(reference)->size; }
PINLINE PBoolean PContainer::IsEmpty() const
{ return GetSize() == 0; }
PINLINE PBoolean PContainer::IsUnique() const
{ return PAssertNULL(reference)->count <= 1; }
///////////////////////////////////////////////////////////////////////////////
PINLINE PString::PString()
: PCharArray(1) { }
PINLINE PString::PString(const PString & str)
: PCharArray(str) { }
PINLINE PString::PString(int, const PString * str)
: PCharArray(*str) { }
PINLINE PString::PString(const std::string & str)
: PCharArray(PString(str.c_str())) { }
PINLINE PString::PString(char c)
: PCharArray(2) { SetAt(0, c); }
PINLINE PString PString::Empty()
{ return PString(); }
PINLINE PString & PString::operator=(const PString & str)
{ AssignContents(str); return *this; }
PINLINE PString & PString::operator=(const char * cstr)
{ AssignContents(PString(cstr)); return *this; }
PINLINE PString & PString::operator=(char ch)
{ AssignContents(PString(ch)); return *this; }
PINLINE PBoolean PString::MakeMinimumSize()
{ return SetSize(GetLength()+1); }
PINLINE PINDEX PString::GetLength() const
{ return strlen(theArray); }
PINLINE bool PString::operator!() const
{ return !IsEmpty(); }
PINLINE PString PString::operator+(const PString & str) const
{ return operator+((const char *)str); }
PINLINE PString operator+(const char * cstr, const PString & str)
{ return PString(cstr) + str; }
PINLINE PString operator+(char c, const PString & str)
{ return PString(c) + str; }
PINLINE PString & PString::operator+=(const PString & str)
{ return operator+=((const char *)str); }
PINLINE PString PString::operator&(const PString & str) const
{ return operator&((const char *)str); }
PINLINE PString operator&(const char * cstr, const PString & str)
{ return PString(cstr) & str; }
PINLINE PString operator&(char c, const PString & str)
{ return PString(c) & str; }
PINLINE PString & PString::operator&=(const PString & str)
{ return operator&=((const char *)str); }
PINLINE bool PString::operator==(const PObject & obj) const
{ return PObject::operator==(obj); }
PINLINE bool PString::operator!=(const PObject & obj) const
{ return PObject::operator!=(obj); }
PINLINE bool PString::operator<(const PObject & obj) const
{ return PObject::operator<(obj); }
PINLINE bool PString::operator>(const PObject & obj) const
{ return PObject::operator>(obj); }
PINLINE bool PString::operator<=(const PObject & obj) const
{ return PObject::operator<=(obj); }
PINLINE bool PString::operator>=(const PObject & obj) const
{ return PObject::operator>=(obj); }
PINLINE bool PString::operator*=(const PString & str) const
{ return operator*=((const char *)str); }
PINLINE bool PString::operator==(const char * cstr) const
{ return InternalCompare(0, P_MAX_INDEX, cstr) == EqualTo; }
PINLINE bool PString::operator!=(const char * cstr) const
{ return InternalCompare(0, P_MAX_INDEX, cstr) != EqualTo; }
PINLINE bool PString::operator<(const char * cstr) const
{ return InternalCompare(0, P_MAX_INDEX, cstr) == LessThan; }
PINLINE bool PString::operator>(const char * cstr) const
{ return InternalCompare(0, P_MAX_INDEX, cstr) == GreaterThan; }
PINLINE bool PString::operator<=(const char * cstr) const
{ return InternalCompare(0, P_MAX_INDEX, cstr) != GreaterThan; }
PINLINE bool PString::operator>=(const char * cstr) const
{ return InternalCompare(0, P_MAX_INDEX, cstr) != LessThan; }
PINLINE PINDEX PString::Find(const PString & str, PINDEX offset) const
{ return Find((const char *)str, offset); }
PINLINE PINDEX PString::FindLast(const PString & str, PINDEX offset) const
{ return FindLast((const char *)str, offset); }
PINLINE PINDEX PString::FindOneOf(const PString & str, PINDEX offset) const
{ return FindOneOf((const char *)str, offset); }
PINLINE PINDEX PString::FindSpan(const PString & str, PINDEX offset) const
{ return FindSpan((const char *)str, offset); }
PINLINE void PString::Splice(const PString & str, PINDEX pos, PINDEX len)
{ Splice((const char *)str, pos, len); }
PINLINE PStringArray
PString::Tokenise(const PString & separators, PBoolean onePerSeparator) const
{ return Tokenise((const char *)separators, onePerSeparator); }
PINLINE PString::operator const unsigned char *() const
{ return (const unsigned char *)theArray; }
PINLINE PString & PString::vsprintf(const PString & fmt, va_list args)
{ return vsprintf((const char *)fmt, args); }
PINLINE PString pvsprintf(const PString & fmt, va_list args)
{ return pvsprintf((const char *)fmt, args); }
///////////////////////////////////////////////////////////////////////////////
PINLINE PCaselessString::PCaselessString()
: PString() { }
PINLINE PCaselessString::PCaselessString(const char * cstr)
: PString(cstr) { }
PINLINE PCaselessString::PCaselessString(const PString & str)
: PString(str) { }
PINLINE PCaselessString::PCaselessString(int dummy,const PCaselessString * str)
: PString(dummy, str) { }
PINLINE PCaselessString & PCaselessString::operator=(const PString & str)
{ AssignContents(str); return *this; }
PINLINE PCaselessString & PCaselessString::operator=(const char * cstr)
{ AssignContents(PString(cstr)); return *this; }
PINLINE PCaselessString & PCaselessString::operator=(char ch)
{ AssignContents(PString(ch)); return *this; }
///////////////////////////////////////////////////////////////////////////////
PINLINE PStringStream::Buffer::Buffer(const Buffer & b)
: string(b.string) { }
PINLINE PStringStream::Buffer& PStringStream::Buffer::operator=(const Buffer&b)
{ string = b.string; return *this; }
PINLINE PStringStream & PStringStream::operator=(const PStringStream & strm)
{ AssignContents(strm); return *this; }
PINLINE PStringStream & PStringStream::operator=(const PString & str)
{ AssignContents(str); return *this; }
PINLINE PStringStream & PStringStream::operator=(const char * cstr)
{ AssignContents(PString(cstr)); return *this; }
PINLINE PStringStream & PStringStream::operator=(char ch)
{ AssignContents(PString(ch)); return *this; }
///////////////////////////////////////////////////////////////////////////////
PINLINE PCollection::PCollection(PINDEX initialSize)
: PContainer(initialSize) { }
PINLINE PCollection::PCollection(int dummy, const PCollection * c)
: PContainer(dummy, c) { }
PINLINE void PCollection::AllowDeleteObjects(PBoolean yes)
{ reference->deleteObjects = yes; }
PINLINE void PCollection::DisallowDeleteObjects()
{ AllowDeleteObjects(PFalse); }
///////////////////////////////////////////////////////////////////////////////
PINLINE PArrayObjects::PArrayObjects(PINDEX initialSize)
: theArray(PNEW PBaseArray<PObject *>(initialSize)) { }
///////////////////////////////////////////////////////////////////////////////
PINLINE PINDEX PStringArray::AppendString(const PString & str)
{ return Append(str.Clone()); }
PINLINE PStringArray & PStringArray::operator += (const PString & str)
{ Append(str.Clone()); return *this; }
PINLINE PStringArray PStringArray::operator + (const PStringArray & v)
{ PStringArray arr = *this; arr += v; return arr; }
PINLINE PStringArray PStringArray::operator + (const PString & v)
{ PStringArray arr = *this; arr += v; return arr; }
PINLINE PINDEX PStringArray::GetStringsIndex(const PString & str) const
{ return GetValuesIndex(str); }
///////////////////////////////////////////////////////////////////////////////
PINLINE PAbstractList::PAbstractList()
: info(new PListInfo) { PAssert(info != NULL, POutOfMemory); }
PINLINE PObject & PAbstractList::GetReferenceAt(PINDEX index) const
{ PObject * obj = GetAt(index);
PAssert(obj != NULL, PInvalidArrayIndex); return *obj; }
///////////////////////////////////////////////////////////////////////////////
PINLINE PINDEX PStringList::AppendString(const PString & str)
{ return Append(str.Clone()); }
PINLINE PINDEX PStringList::InsertString(
const PString & before, const PString & str)
{ return Insert(before, str.Clone()); }
PINLINE PStringList & PStringList::operator += (const PString & str)
{ Append(str.Clone()); return *this; }
PINLINE PStringList PStringList::operator + (const PStringList & v)
{ PStringList arr = *this; arr += v; return arr; }
PINLINE PStringList PStringList::operator + (const PString & v)
{ PStringList arr = *this; arr += v; return arr; }
PINLINE PINDEX PStringList::GetStringsIndex(const PString & str) const
{ return GetValuesIndex(str); }
///////////////////////////////////////////////////////////////////////////////
PINLINE PINDEX PSortedStringList::AppendString(const PString & str)
{ return Append(str.Clone()); }
PINLINE PINDEX PSortedStringList::GetStringsIndex(const PString & str) const
{ return GetValuesIndex(str); }
///////////////////////////////////////////////////////////////////////////////
PINLINE POrdinalKey::POrdinalKey(PINDEX newKey)
: theKey(newKey) { }
PINLINE POrdinalKey & POrdinalKey::operator=(PINDEX newKey)
{ theKey = newKey; return *this; }
PINLINE POrdinalKey::operator PINDEX() const
{ return theKey; }
PINLINE PINDEX POrdinalKey::operator++()
{ return ++theKey; }
PINLINE PINDEX POrdinalKey::operator++(int)
{ return theKey++; }
PINLINE PINDEX POrdinalKey::operator--()
{ return --theKey; }
PINLINE PINDEX POrdinalKey::operator--(int)
{ return theKey--; }
PINLINE POrdinalKey & POrdinalKey::operator+=(PINDEX add)
{ theKey += add; return *this; }
PINLINE POrdinalKey & POrdinalKey::operator-=(PINDEX minus)
{ theKey -= minus; return *this; }
///////////////////////////////////////////////////////////////////////////////
PINLINE PBoolean PHashTable::AbstractContains(const PObject & key) const
{ return hashTable->GetElementAt(key) != NULL; }
///////////////////////////////////////////////////////////////////////////////
PINLINE PAbstractSet::PAbstractSet()
{ hashTable->deleteKeys = reference->deleteObjects; }
PINLINE void PStringSet::Include(const PString & str)
{ PAbstractSet::Append(str.Clone()); }
PINLINE PStringSet & PStringSet::operator+=(const PString & str)
{ PAbstractSet::Append(str.Clone()); return *this; }
PINLINE void PStringSet::Exclude(const PString & str)
{ PAbstractSet::Remove(&str); }
PINLINE PStringSet & PStringSet::operator-=(const PString & str)
{ PAbstractSet::Remove(&str); return *this; }
///////////////////////////////////////////////////////////////////////////////
PINLINE PAbstractDictionary::PAbstractDictionary()
{ hashTable->deleteKeys = PTrue; }
PINLINE PAbstractDictionary::PAbstractDictionary(int dummy,
const PAbstractDictionary * c)
: PHashTable(dummy, c) { }
// End Of File ///////////////////////////////////////////////////////////////
|