| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 4 * | 3 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 | 7 |
| 9 | 8 |
| 10 #include "SkAtomics.h" | 9 #include "SkAtomics.h" |
| 11 #include "SkFixed.h" | 10 #include "SkFixed.h" |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 str += strspn(str, delimiters); | 665 str += strspn(str, delimiters); |
| 667 } else { | 666 } else { |
| 668 // Skip one delimiter. | 667 // Skip one delimiter. |
| 669 str += 1; | 668 str += 1; |
| 670 } | 669 } |
| 671 } | 670 } |
| 672 } | 671 } |
| 673 | 672 |
| 674 #undef VSNPRINTF | 673 #undef VSNPRINTF |
| 675 #undef SNPRINTF | 674 #undef SNPRINTF |
| OLD | NEW |