HomeSort by relevance Sort by last modified time
    Searched full:file (Results 101 - 125 of 168772) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium-libpac/test/
jstocstring.pl 5 open(FILE, "> $ARGV[1]");
6 print FILE "// This file is auto generated using the following command.\n";
7 print FILE "// Do not modify.\n";
8 print FILE "// \t./jstocstring.pl $ARGV[0] $ARGV[1]\n";
9 print FILE "#ifndef PROXY_TEST_SCRIPT_H_\n";
10 print FILE "#define PROXY_TEST_SCRIPT_H_\n\n";
17 print FILE "#define $upper \\\n";
21 print FILE " \"",$_,"\\n\" \\\n";
24 print FILE "\n
    [all...]
  /external/clang/test/CodeGen/
2002-06-25-FWriteInterfaceFailure.c 3 typedef struct _IO_FILE FILE;
4 extern FILE *stderr;
5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
  /external/nanopb-c/tests/common/
test_helpers.h 9 #define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
12 #define SET_BINARY_MODE(file)
  /external/selinux/libsepol/include/sepol/
module_to_cil.h 6 int sepol_module_policydb_to_cil(FILE *fp, struct policydb *pdb, int linked);
7 int sepol_module_package_to_cil(FILE *fp, struct sepol_module_package *mod_pkg);
8 int sepol_ppfile_to_module_package(FILE *fp, struct sepol_module_package **mod_pkg);
  /external/skia/experimental/LightSymbolsUtil/lightsymbols/
helper.h 5 FILE* file; member in class:SkFile
12 file = NULL;
21 if (file) {
22 fclose(file);
31 if (file == NULL) {
34 file = fopen(sz, "a");
35 if (file == NULL) {
38 fprintf(file, "\n\n\nNEW SESSION, just coliding ids ... should generate a new file ideally ... \n\n\n")
    [all...]
  /external/valgrind/memcheck/tests/
file_locking.stderr.exp 1 parent: about to lock file for writing.
2 parent: file locking attempt succeeded.
3 child: about to lock file for writing.
  /external/valgrind/none/tests/
threadederrno.stdout.exp 1 f = 0, errno = 2 (No such file or directory)
2 f = 0, errno = 2 (No such file or directory)
3 f = 0, errno = 2 (No such file or directory)
fdleak_dup.stderr.exp 3 FILE DESCRIPTORS: 5 open at exit.
4 Open file descriptor ...: /dev/null
7 Open file descriptor ...: /dev/null
10 Open file descriptor ...: ...
13 Open file descriptor ...: ...
16 Open file descriptor ...: /dev/null
fdleak_fcntl.stderr.exp 3 FILE DESCRIPTORS: 5 open at exit.
4 Open file descriptor ...: /dev/null
7 Open file descriptor ...: /dev/null
10 Open file descriptor ...: ...
13 Open file descriptor ...: ...
16 Open file descriptor ...: /dev/null
fdleak_pipe.stderr.exp 3 FILE DESCRIPTORS: 5 open at exit.
4 Open file descriptor ...:
7 Open file descriptor ...:
10 Open file descriptor ...: ...
13 Open file descriptor ...: ...
16 Open file descriptor ...: /dev/null
  /external/androidplot/.idea/
encodings.xml 4 <file url="file://$PROJECT_DIR$" charset="UTF-8" />
5 <file url="file://$PROJECT_DIR$/AndroidPlot-Core" charset="UTF-8" />
6 <file url="file://$PROJECT_DIR$/Examples/DemoApp" charset="UTF-8" />
  /external/sepolicy/
dex2oat.te 5 allow dex2oat dalvikcache_data_file:file write;
10 # Read already open asec_apk_file file descriptors passed by installd.
13 allow dex2oat asec_apk_file:file read;
14 allow dex2oat unlabeled:file read;
15 allow dex2oat oemfs:file read;
16 allow dex2oat apk_tmp_file:file read;
  /development/ndk/platforms/android-21/samples/native-codec/
README.txt 1 This sample app requires a video file to be placed in /sdcard/testfile.mp4
2 For demonstration purposes we have supplied such a file.
  /device/asus/fugu/sepolicy/
shell.te 2 allow shell efs_file:file r_file_perms;
4 allow shell bluetooth_efs_file:file r_file_perms;
system_app.te 1 allow system_app sysfs_thermal_writable:file rw_file_perms;
2 allow system_app sysfs_coretemp:file rw_file_perms;
  /device/moto/shamu/sepolicy/
ueventd.te 2 allow ueventd { firmware_file }:file r_file_perms;
3 allow ueventd sysfs_mmi_touch:file w_file_perms;
  /external/google-breakpad/src/processor/testdata/
module4_bad.out 2 FILE 1 file4_1.cc
3 FILE 2 file4_2.cc
  /external/junit/src/org/junit/rules/
TemporaryFolder.java 3 import java.io.File;
20 * File createdFile= folder.newFile(&quot;myfile.txt&quot;);
21 * File createdFolder= folder.newFolder(&quot;subfolder&quot;);
28 private File folder;
49 * Returns a new fresh file with the given name under the temporary folder.
51 public File newFile(String fileName) throws IOException {
52 File file= new File(getRoot(), fileName); local
53 file.createNewFile()
68 File file = getRoot(); local
    [all...]
  /external/llvm/test/tools/llvm-cov/Inputs/
test_no_output.output 0 File 'test.cpp'
4 File './test.h'
  /external/selinux/libsepol/tests/policies/test-deps/
modreq-bool-global.conf 5 class file { read write };
14 allow a_t b_t : file { read write };
modreq-type-global.conf 5 class file { read write };
12 allow test_t type_req_t : file { read write };
modreq-type-opt.conf 5 class file { read write };
15 allow type_req_t file_t : file { read write };
  /external/smali/smali-integration-tests/src/assemble/
junit-tests.xml 8 <file>
11 </file>
  /external/v8/src/
OWNERS 1 per-file i18n.*=cira@chromium.org
2 per-file i18n.*=mnita@google.com
  /external/vogar/src/vogar/
ActionFinder.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
37 public void findActions(File file) {
38 findActionsRecursive(file, 0);
41 private void findActionsRecursive(File file, int depth) {
42 if (file.isDirectory()) {
44 for (File child : file.listFiles())
    [all...]

Completed in 771 milliseconds

1 2 3 45 6 7 8 91011>>