reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1992 while (!format.empty() && error.Success()) { 1993 const size_t non_special_chars = format.find_first_of("${}\\"); 1997 parent_entry.AppendText(format); 2004 parent_entry.AppendText(format.substr(0, non_special_chars)); 2005 format = format.drop_front(non_special_chars); 2005 format = format.drop_front(non_special_chars); 2008 switch (format[0]) { 2013 format = format.drop_front(); // Skip the '{' 2013 format = format.drop_front(); // Skip the '{' 2015 error = FormatEntity::ParseInternal(format, scope_entry, depth + 1); 2025 format = 2026 format 2031 format = format.drop_front(); // Skip the '\' character 2031 format = format.drop_front(); // Skip the '\' character 2032 if (format.empty()) { 2038 const char desens_char = format[0]; 2039 format = format.drop_front(); // Skip the desensitized char character 2039 format = format.drop_front(); // Skip the desensitized char character 2076 for (i = 0; (format[i] >= '0' && format[i] <= '7') && i < 4; ++i) 2076 for (i = 0; (format[i] >= '0' && format[i] <= '7') && i < 4; ++i) 2077 oct_str[i] = format[i]; 2082 format = format.drop_front(i); 2082 format = format.drop_front(i); 2095 if (isxdigit(format[0])) { 2099 hex_str[0] = format[0]; 2101 format = format.drop_front(); 2101 format = format.drop_front(); 2103 if (isxdigit(format[0])) { 2104 hex_str[1] = format[0]; 2105 format = format.drop_front(); 2105 format = format.drop_front(); 2129 if (format.size() == 1) { 2133 format = format.drop_front(); // Skip the '$' 2133 format = format.drop_front(); // Skip the '$' 2135 if (format[0] == '{') { 2136 format = format.drop_front(); // Skip the '{' 2136 format = format.drop_front(); // Skip the '{' 2139 error = FormatEntity::ExtractVariableInfo(format, variable,