reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
128 const char *Prev = Str; 129 for (;; ++Str) { 130 char c = *Str; 133 if (Prev != Str) { 134 char *Value = new char[Str - Prev + 1]; 135 memcpy(Value, Prev, Str - Prev); 136 Value[Str - Prev] = '\0'; 143 Prev = Str + 1;