| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SkBML_WXMLParser_DEFINED | 10 #ifndef SkBML_WXMLParser_DEFINED |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #ifdef SK_DEBUG | 33 #ifdef SK_DEBUG |
| 34 int fElemsCount, fElemsReused; | 34 int fElemsCount, fElemsReused; |
| 35 int fAttrsCount, fNamesReused, fValuesReused; | 35 int fAttrsCount, fNamesReused, fValuesReused; |
| 36 #endif | 36 #endif |
| 37 SkWStream& fWriter; | 37 SkWStream& fWriter; |
| 38 char* fElems[256]; | 38 char* fElems[256]; |
| 39 char* fAttrNames[256]; | 39 char* fAttrNames[256]; |
| 40 char* fAttrValues[256]; | 40 char* fAttrValues[256]; |
| 41 | 41 |
| 42 // important that these are U8, so we get automatic wrap-around | 42 // important that these are U8, so we get automatic wrap-around |
| 43 U8 fNextElem, fNextAttrName, fNextAttrValue; | 43 uint8_t fNextElem, fNextAttrName, fNextAttrValue; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 #endif // SkBML_WXMLParser_DEFINED | 46 #endif // SkBML_WXMLParser_DEFINED |
| OLD | NEW |