reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clangd/SemanticHighlighting.cpp
  315   for (I = 0; I + 2 < Bytes.size(); I += 3) {
  316     uint32_t X = (Bytes[I] << 16) + (Bytes[I + 1] << 8) + Bytes[I + 2];
  316     uint32_t X = (Bytes[I] << 16) + (Bytes[I + 1] << 8) + Bytes[I + 2];
  316     uint32_t X = (Bytes[I] << 16) + (Bytes[I + 1] << 8) + Bytes[I + 2];
  322   if (I + 1 == Bytes.size()) {
  323     uint32_t X = (Bytes[I] << 16);
  327   } else if (I + 2 == Bytes.size()) {
  328     uint32_t X = (Bytes[I] << 16) + (Bytes[I + 1] << 8);
  328     uint32_t X = (Bytes[I] << 16) + (Bytes[I + 1] << 8);