• Home
  • Raw
  • Download

Lines Matching refs:Validator

112   function Validator(message) {  class
121 Object.defineProperty(Validator.prototype, "handleIndexLimit", {
125 Object.defineProperty(Validator.prototype, "associatedHandleIndexLimit", {
133 Validator.prototype.isValidRange = function(start, numBytes) { class
148 Validator.prototype.claimRange = function(start, numBytes) {
156 Validator.prototype.claimHandle = function(index) {
168 Validator.prototype.claimAssociatedEndpointHandle = function(index) {
183 Validator.prototype.validateEnum = function(offset, enumClass) {
190 Validator.prototype.validateHandle = function(offset, nullable) {
203 Validator.prototype.validateAssociatedEndpointHandle = function(offset,
219 Validator.prototype.validateInterface = function(offset, nullable) {
223 Validator.prototype.validateInterfaceRequest = function(offset, nullable) {
227 Validator.prototype.validateAssociatedInterface = function(offset,
232 Validator.prototype.validateAssociatedInterfaceRequest = function(
237 Validator.prototype.validateStructHeader = function(offset, minNumBytes) {
255 Validator.prototype.validateStructVersion = function(offset, versionSizes) {
275 Validator.prototype.isFieldInStructVersion = function(offset, fieldVersion) {
280 Validator.prototype.validateMessageHeader = function() {
342 Validator.prototype.validateMessageIsRequestWithoutResponse = function() {
349 Validator.prototype.validateMessageIsRequestExpectingResponse = function() {
356 Validator.prototype.validateMessageIsResponse = function() {
366 Validator.prototype.decodePointer = function(offset) {
374 Validator.prototype.decodeUnionSize = function(offset) {
378 Validator.prototype.decodeUnionTag = function(offset) {
382 Validator.prototype.validateArrayPointer = function(
397 Validator.prototype.validateStructPointer = function(
410 Validator.prototype.validateUnion = function(
421 Validator.prototype.validateNestedUnion = function(
437 Validator.prototype.arrayLength = function(arrayPointerOffset) {
442 Validator.prototype.validateMapPointer = function(
491 Validator.prototype.validateStringPointer = function(offset, nullable) {
499 Validator.prototype.validateArray =
567 Validator.prototype.validateHandleElements =
579 Validator.prototype.validateInterfaceElements =
591 Validator.prototype.validateInterfaceRequestElements =
603 Validator.prototype.validateAssociatedInterfaceElements =
616 Validator.prototype.validateAssociatedInterfaceRequestElements =
631 Validator.prototype.validateArrayElements =
646 Validator.prototype.validateStructElements =
659 Validator.prototype.validateEnumElements =
672 internal.Validator = Validator;