HomeSort by relevance Sort by last modified time
    Searched refs:datafile (Results 1 - 21 of 21) sorted by null

  /external/libvorbis/vq/
make_floor_books.pl 60 my($datafile,$range,$guard)=split(' ',$1);
62 $command="rm -f $datafile.tmp";
69 if (-e "$dir/$datafile.vqd"){
70 $command="cat $dir/$datafile.vqd >> $datafile.tmp";
77 my $command="huffbuild $datafile.tmp $range $guard";
82 $command="cat $datafile.vqh >> $globalname.vqh";
87 $command="rm $datafile.vqh";
92 $command="rm -f $datafile.tmp";
make_residue_books.pl 50 my($name,$datafile,$bookname,$interval,$range)=split(' ',$1);
53 if(-e $datafile){
54 my $command="cp $datafile $bookname.tmp";
81 my($name,$datafile)=split(' ',$namedata);
132 if(-e $datafile){
141 my $command="$restune $globalname$name.vqh $datafile 1 > temp$$.vqh";
146 my $command="$restune $globalname$name.vqh $datafile > temp$$.vqh";
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_jwt.py 44 def datafile(filename): function
67 private_key = datafile(private_key_file)
68 public_key = datafile('publickey.pem')
80 public_key = datafile('publickey.pem')
91 private_key = datafile('privatekey.%s' % self.format)
106 public_key = datafile('publickey.pem')
117 ({'status': '200'}, datafile('certs.json')),
129 ({'status': '404'}, datafile('certs.json')),
137 private_key = datafile('privatekey.%s' % self.format)
211 private_key = datafile('privatekey.%s' % self.format
    [all...]
test_crypt.py 31 def datafile(filename): function
42 private_key = private_key or datafile(private_key_file)
55 pkcs12_key_as_pem = datafile('pem_from_pkcs12.pem')
57 alternate_pem = datafile('pem_from_pkcs12_alternate.pem')
test_service_account.py 33 def datafile(filename): function
46 self.private_key = datafile('pem_from_pkcs12.pem')
59 datafile('publickey_openssl.pem'))
test_oauth2client.py 102 def datafile(filename): function
107 client_type, client_info = _loadfile(datafile(existing_file))
250 environment_variable_file = datafile(
257 nonexistent_file = datafile('nonexistent')
273 well_known_file = datafile(
298 credentials_file = datafile(
305 credential_file = datafile(
309 temp_credential_file = datafile(
321 credential_file = datafile(
333 credentials_file = datafile(
    [all...]
test_appengine.py 73 def datafile(filename): function
78 client_type, client_info = _loadfile(datafile(existing_file))
263 flow=flow_from_clientsecrets(datafile('client_secrets.json'), 'foo',
290 flow=flow_from_clientsecrets(datafile('client_secrets.json'), 'foo',
732 datafile('client_secrets.json'),
750 datafile('client_secrets.json'),
766 datafile('client_secrets.json'),
781 datafile('client_secrets.json'),
796 datafile('unfilled_client_secrets.json'),
805 datafile('unfilled_client_secrets.json')
    [all...]
  /external/vixl/src/vixl/a64/
instrument-a64.h 76 explicit Instrument(const char* datafile = NULL,
instrument-a64.cc 119 Instrument::Instrument(const char* datafile, uint64_t sample_period)
122 // Set up the output stream. If datafile is non-NULL, use that file. If it
123 // can't be opened, or datafile is NULL, use stdout.
124 if (datafile != NULL) {
125 output_stream_ = fopen(datafile, "w");
127 printf("Can't open output file %s. Using stdout.\n", datafile);
  /external/v8/tools/
gc-nvp-trace-processor.py 74 args = ['"%s"' % context.datafile,
107 def __init__(self, datafile, field_to_index):
108 self.datafile = datafile
144 with open(datafile_name, 'w') as datafile:
147 datafile.write('\t'.join(data_line))
148 datafile.write('\n')
150 def generate_script_and_datafile(plot, trace, datafile, output):
152 generate_datafile(datafile, trace, fields)
166 context = Context(datafile, field_to_index
    [all...]
draw_instruction_graph.sh 92 set datafile separator ','
test-server.py 108 datafile = os.path.join(data_dir, "mypubkey")
109 with open(datafile, "w") as f:
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
afblue.pl 26 die "usage: $prog datafile < infile > outfile\n" if $#ARGV != 0;
29 my $datafile = $ARGV[0];
31 my %diversions; # The extracted and massaged data from `datafile'.
88 warn "$datafile:$INPUT_LINE_NUMBER: warning: $message\n";
95 die "$datafile:$INPUT_LINE_NUMBER: error: $message\n";
231 open(DATA, $datafile) || die "$prog: can't open \`$datafile': $OS_ERROR\n";
534 my $s2 = "using data from file \`$datafile'.";
  /external/icu/icu4j/perf-tests/perldriver/
PerfFramework4j.pm 77 $locdata .= "<b>Datafile:</b> $data<br>";
102 my $datafile = shift;
108 if($datafile) {
109 $locAndData .= " -f $datafile";
  /external/v8/src/arm64/
instrument-arm64.h 55 explicit Instrument(const char* datafile = NULL,
instrument-arm64.cc 97 Instrument::Instrument(const char* datafile, uint64_t sample_period)
100 // Set up the output stream. If datafile is non-NULL, use that file. If it
101 // can't be opened, or datafile is NULL, use stderr.
102 if (datafile != NULL) {
103 output_stream_ = fopen(datafile, "w");
105 fprintf(stderr, "Can't open output file %s. Using stderr.\n", datafile);
  /external/icu/icu4c/source/test/perf/perldriver/
PerfFramework.pm 76 $locdata .= "<b>Datafile:</b> $data<br>";
97 my $datafile = shift;
102 if($datafile) {
103 $locAndData .= " -f $datafile";
  /system/extras/pagecache/
pagecache.py 256 def get_inode_data(datafile, dumpfile, adb_serial):
257 if datafile is not None and os.path.isfile(datafile):
258 print('Using cached inode data from ' + datafile)
259 f = open(datafile, 'r')
  /frameworks/base/tools/fonts/
fontchain_lint.py 357 with open(file_path) as datafile:
358 for line in datafile:
391 with open(file_path) as datafile:
392 for line in datafile:
  /external/opencv3/modules/calib3d/test/
test_cameracalibration.cpp 317 FILE* datafile = 0; local
342 datafile = fopen( filename.c_str(), "r" );
343 if( datafile == 0 )
350 values_read = fscanf(datafile,"%d",&numTests);
355 values_read = fscanf(datafile,"%s",i_dat_file);
651 if( datafile )
652 fclose(datafile);
    [all...]
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 441 milliseconds