HomeSort by relevance Sort by last modified time
    Searched full:infile (Results 1 - 25 of 710) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/vulkan-validation-layers/layers/
vu_csv_stats.sh 10 INFILE="./vk_validation_error_database.txt"
12 if [ ! -r "$INFILE" ]
14 echo "ERROR: \"$INFILE\" is not readable." >&2
23 echo "\"\",\"Total\",$($COUNT '^VALIDATION_ERROR_' $INFILE)"
24 echo "\"\",\"Done (Y)\",$($COUNT '~^~Y~^~' $INFILE)"
25 echo "\"\",\"Not done (N)\",$($COUNT '~^~N~^~' $INFILE)"
26 echo "\"\",\"Unknown (U)\",$($COUNT '~^~U~^~' $INFILE)"
29 echo "\"\",\"Total\",$($COUNT 'implicit' $INFILE)"
30 echo "\"\",\"Done (Y)\",$(grep 'implicit' $INFILE | $COUNT '~^~Y~^~')"
31 echo "\"\",\"Not done (N)\",$(grep 'implicit' $INFILE | $COUNT '~^~N~^~')
    [all...]
  /external/pdfium/testing/tools/
make_expected.sh 11 INFILE="$1"
12 echo $INFILE | grep -qs ' ' && echo space in filename detected && exit 1
13 out/Debug/pdfium_test --png $INFILE
14 RESULTS="$INFILE.*.png"
  /external/bzip2/
format.pl 24 my $infile = shift;
25 # check infile exists
26 die "Can't find file \"$infile\""
27 unless -f $infile;
28 # check we can read infile
29 if (! -r $infile) {
30 die "Can't read input $infile\n";
32 # check we can open infile
33 open( INFILE,"<$infile" ) or
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
sha.c 16 FILE *inFile;
26 inFile = fopen(filename, "rb");
27 if (inFile == NULL) {
33 while ((bytes = fread(data, 1, BUFFER_SIZE, inFile)) != 0) {
38 fclose(inFile);
  /external/libpcap/msdos/
bin2c.c 17 FILE *inFile;
25 if ((inFile = fopen(argv[1],"rb")) == NULL)
34 while ((ch = fgetc(inFile)) != EOF)
41 fclose (inFile);
  /external/toybox/tests/
more.test 5 #testing "name" "command" "result" "infile" "stdin"
top.test 5 #testing "name" "command" "result" "infile" "stdin"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /external/python/cpython2/Lib/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /external/elfutils/tests/
run-strip-groups.sh 45 infile=testfile58
46 outfile=$infile.stripped
47 dbgfile=$infile.debug
49 testfiles $infile
52 testrun ${abs_top_builddir}/src/strip -o $outfile -f $dbgfile $infile
53 testrun ${abs_top_builddir}/src/elflint -q $infile
  /external/python/cpython2/Lib/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /external/xmlrpcpp/test/
TestBase64Server.cpp 29 std::ifstream infile("pngnow.png", std::ios::binary);
30 if (infile.fail())
31 infile.open("../pngnow.png", std::ios::binary);
32 if (infile.fail())
39 char c = infile.get();
40 if (infile.eof()) break;
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /external/python/cpython3/Lib/test/test_json/
test_tool.py 72 infile = support.TESTFN
73 with open(infile, "w") as fp:
74 self.addCleanup(os.remove, infile)
76 return infile
79 infile = self._create_infile()
80 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
86 infile = self._create_infile()
88 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
103 infile = self._create_infile()
104 rc, out, err = assert_python_ok('-m', 'json.tool', '--sort-keys', infile)
    [all...]
  /external/python/cpython3/Lib/json/
tool.py 24 parser.add_argument('infile', nargs='?', type=argparse.FileType(),
27 help='write the output of infile to outfile')
32 infile = options.infile or sys.stdin
35 with infile:
38 obj = json.load(infile)
40 obj = json.load(infile,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
29 obj = json.load(infile)
  /external/selinux/libselinux/src/
matchmediacon.c 17 FILE *infile; local
21 if ((infile = fopen(path, "re")) == NULL)
23 while (!feof_unlocked(infile)) {
24 if (!fgets_unlocked(current_line, sizeof(current_line), infile)) {
50 fclose(infile);
  /external/libjpeg-turbo/
rdcolmap.c 80 read_gif_map (j_decompress_ptr cinfo, FILE *infile)
89 if ((header[i] = getc(infile)) == EOF)
105 R = getc(infile);
106 G = getc(infile);
107 B = getc(infile);
122 pbm_getc (FILE *infile)
128 ch = getc(infile);
131 ch = getc(infile);
139 read_pbm_integer (j_decompress_ptr cinfo, FILE *infile)
150 ch = pbm_getc(infile);
    [all...]
  /external/vboot_reference/futility/
cmd_vbutil_key.c 49 " --key <infile> RSA key file (.keyb or .pem)\n"
62 "Usage: " MYNAME " %s --unpack <infile>\n"
70 static int Pack(const char *infile, const char *outfile, uint64_t algorithm,
76 if (!infile || !outfile) {
81 pubkey = PublicKeyReadKeyb(infile, algorithm, version);
91 privkey = PrivateKeyReadPem(infile, algorithm);
101 VbExError("Unable to parse either .keyb or .pem from %s\n", infile);
106 static int Unpack(const char *infile, const char *outfile)
111 if (!infile) {
116 pubkey = PublicKeyRead(infile);
167 char *infile = NULL; local
    [all...]

Completed in 2062 milliseconds

1 2 3 4 5 6 7 8 91011>>