Lines Matching refs:int

37     public static function initialize(int $flags, int $parsedLineNumber = null, string $parsedFilename = null)
54 * @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
61 public static function parse(string $value = null, int $flags = 0, array &$references = [])
71 if (2 /* MB_OVERLOAD_STRING */ & (int) \ini_get('mbstring.func_overload')) {
113 * @param int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
117 public static function dump($value, int $flags = 0): string
229 * @param int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
231 private static function dumpArray(array $value, int $flags): string
252 private static function dumpNull(int $flags): string
268 public static function parseScalar(string $scalar, int $flags = 0, array $delimiters = null, int &$i = 0, bool $evaluate = true, array &$references = [], bool &$isQuoted = null)
322 private static function parseQuotedScalar(string $scalar, int &$i = 0): string
347 private static function parseSequence(string $sequence, int $flags, int &$i = 0, array &$references = []): array
415 private static function parseMapping(string $mapping, int $flags, int &$i = 0, array &$references = [])
561 private static function evaluateScalar(string $scalar, int $flags, array &$references = [], bool &$isQuotedString = null)
673 $cast = (int) $scalar;
683 $cast = (int) $scalar;
721 private static function parseTag(string $value, int &$i, int $flags): ?string