Home | History | Annotate | Download | only in lib

Lines Matching refs:json_text

637  $json_text   = $json->encode( $perl_scalar );
638 $perl_scalar = $json->decode( $json_text );
649 $json_text = to_json( $perl_scalar, { ascii => 1, pretty => 1 } );
650 $perl_scalar = from_json( $json_text, { utf8 => 1 } );
785 $json_text = encode_json $perl_scalar
791 $json_text = JSON->new->utf8->encode($perl_scalar)
795 $perl_scalar = decode_json $json_text
803 $perl_scalar = JSON->new->utf8->decode($json_text)
808 $json_text = to_json($perl_scalar)
814 $json_text = JSON->new->encode($perl_scalar)
818 $json_text = to_json($perl_scalar, $flag_hashref)
822 $json_text = to_json($perl_scalar, {utf8 => 1, pretty => 1})
826 $json_text = JSON->new->utf8(1)->pretty(1)->encode($perl_scalar)
833 $perl_scalar = from_json($json_text)
840 $perl_scalar = JSON->decode($json_text)
844 $perl_scalar = from_json($json_text, $flag_hashref)
848 $perl_scalar = from_json($json_text, {utf8 => 1})
852 $perl_scalar = JSON->new->utf8(1)->decode($json_text)
892 my $json_text = CGI->new->param( 'json_data' );
893 my $perl_scalar = $json->decode( $json_text );
898 $json_text = <$fh>;
899 $perl_scalar = decode_json( $json_text );
955 $json_text = encode_json( $perl_scalar );
1446 $json_text = $json->encode($perl_scalar)
1457 $perl_scalar = $json->decode($json_text)
1469 ($perl_scalar, $characters) = $json->decode_prefix($json_text)
2101 from_json($json_text);
2110 from_json($json_text, $flags);
2116 jsonToObj($json_text);
2130 $json->decode($json_text);
2165 $json->allow_barekey->decode($json_text)
2175 $json->allow_singlequote->decode($json_text)
2215 $json_text = $json->utf8(0)->encode($str);
2216 utf8::is_utf8($json_text);
2218 $json_text = $json->utf8(1)->encode($str);
2219 utf8::is_utf8($json_text);