Lines Matching defs:modules
303 /* The width and height of this QR Code, measured in modules, between
315 // Private grids of modules/pixels, with dimensions of size*size:
317 // The modules of this QR Code (false = light, true = dark).
319 private: std::vector<std::vector<bool> > modules;
321 // Indicates function modules that are not subjected to masking. Discarded when constructor finishes.
373 /*---- Private helper methods for constructor: Drawing function modules ----*/
375 // Reads this object's version field, and draws and marks all function modules.
395 // at (x, y). All modules must be in bounds.
416 // data area of this QR Code. Function modules need to be marked off before this is called.
420 // XORs the codeword modules in this QR Code with the given mask pattern.
421 // The function modules must be marked and the codeword bits must be drawn
428 // Calculates and returns the penalty score based on state of this QR Code's current modules.
443 // all function modules are excluded. This includes remainder bits, so it might not be a multiple of 8.
473 // Must be called at the end of a line (row or column) of modules. A helper function for getPenaltyScore().