OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:jsondata
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_serializer.pm
68
my $
jsonData
= shift;
70
if (ref $
jsonData
eq "ARRAY") {
71
return [map(jsonToPerl($_), @$
jsonData
)];
74
if (ref $
jsonData
eq "HASH") {
75
my @keys = keys %$
jsonData
;
79
return jsonHashToPerlObject($
jsonData
, $class) if $class;
84
$hashRef->{$key} = jsonToPerl($
jsonData
->{$key});
89
die "Unexpected reference type: " . ref $
jsonData
. "\n" if ref $
jsonData
;
91
return $
jsonData
;
[
all
...]
/external/chromium_org/tools/perf_expectations/
make_expectations.py
53
jsondata
= json.loads(string)
57
return
jsondata
112
jsondata
= []
121
jsondata
.append('"%s": {%s}' % (key, ', '.join(rowdata)))
122
jsondata
.append('"load": true')
123
jsontext = '{%s\n}' % ',\n '.join(
jsondata
)
243
jsondata
= ConvertJsonIntoDict(line)
244
if int(
jsondata
['rev']) <= revb:
246
if int(
jsondata
['rev']) < reva:
253
if trace not in
jsondata
['traces']
[
all
...]
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
profiler.js
9
var Profiler = function(
jsonData
, template) {
10
this.jsonData_ =
jsonData
;
13
(
jsonData
.default_template &&
14
jsonData
.templates[
jsonData
.default_template]) ||
15
jsonData
.templates['l2'];
Completed in 274 milliseconds