HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 1 - 25 of 4330) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
hash_in_var.mk 2 file = $(shell echo tmp/test\#.ext) macro
6 test1: $(file)
9 $(file):
10 touch $(file)
  /external/curl/tests/
nroff-scan.pl 11 # This software is licensed as described in the file COPYING, which
17 # furnished to do so, under the terms of the COPYING file.
55 sub file { subroutine
58 die "no file";
101 file($f);
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidFileTest.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
23 * Checks creation and deletion of a file.
28 File file = File.createTempFile(String.valueOf(System.currentTimeMillis()), null, null); local
30 assertTrue(file.exists());
31 assertTrue(file.delete());
32 assertFalse(file.exists());
  /build/core/combo/
HOST_linux-x86.mk 5 # you may not use this file except in compliance with the License.
63 # $(1): The file to check
64 define get-file-size
  /external/elfutils/libdwfl/
dwfl_lineinfo.c 3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
49 if (unlikely (info->file >= info->files->nfiles))
55 struct Dwarf_Fileinfo_s *file = &info->files->info[info->file]; local
57 *mtime = file->mtime;
59 *length = file->length;
60 return file->name;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_debug.c 39 static const char *file[] = { local
61 if (hwreg.file == BRW_GENERAL_REGISTER_FILE &&
71 else if (hwreg.file == BRW_GENERAL_REGISTER_FILE &&
79 else if (hwreg.file == BRW_IMMEDIATE_VALUE) {
84 file[hwreg.file],
  /external/v8/tools/gyp/test/rules-use-built-dependencies/src/
main.cc 3 // found in the LICENSE file.
10 FILE* file; local
11 file = fopen(argv[1], "wb");
13 fwrite(output, 1, sizeof(output) - 1, file);
14 fclose(file);
  /frameworks/base/tools/aapt/
SourcePos.h 12 String8 file; member in class:SourcePos
27 static void printErrors(FILE* to);
  /external/jcommander/src/test/java/com/beust/jcommander/
ArgsRequiredWrongMain.java 5 public String[] file; field in class:ArgsRequiredWrongMain
  /external/nanopb-c/tests/basic_stream/
encode_stream.c 12 FILE *file = (FILE*) stream->state; local
13 return fwrite(buf, 1, count, file) == count;
  /external/skia/tools/flags/
SkCommonFlags.cpp 5 * found in the LICENSE file.
78 SkString file; local
79 while (it.next(&file)) {
81 output->push_back() = SkOSPath::Join(flag, file.c_str());
  /external/v8/tools/gyp/test/standalone/
gyptest-standalone.py 5 # found in the LICENSE file.
20 # of them reference the gyp file.
22 for file in files:
24 if os.path.splitext(__file__)[0] in file:
26 file = os.path.join(root, file) variable
27 contents = open(file).read()
29 print 'gyp file referenced in generated output: %s' % file
  /external/vogar/src/vogar/commands/
Rm.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
32 public void file(File file) { method in class:Rm
33 new Command(log, "rm", "-rf", file.getPath()).execute();
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
FileWriter.java 5 * use this file except in compliance with the License. You may obtain a copy of
21 private final RandomAccessFile file; field in class:FileWriter
24 this.file = new RandomAccessFile(new File(name), "rw");
28 file.close();
32 file.flush();
37 file.write(s.charAt(i));
  /frameworks/base/services/tests/servicestests/src/com/android/server/
EntropyMixerTest.java 5 * you may not use this file except in compliance with the License.
23 import java.io.File;
31 File dir = getContext().getDir("testInitialWrite", Context.MODE_PRIVATE);
32 File file = File.createTempFile("testInitialWrite", "dat", dir); local
33 file.deleteOnExit();
34 assertEquals(0, FileUtils.readTextFile(file, 0, null).length());
36 // The constructor has the side effect of writing to file
37 new EntropyMixer(getContext(), "/dev/null", file.getCanonicalPath(), "/dev/null")
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
VpnServiceTest.java 5 * you may not use this file except in compliance with the License.
23 import java.io.File;
112 File file = new File("/dev/tun"); local
113 assertTrue(file.exists());
114 assertFalse(file.isFile());
115 assertFalse(file.isDirectory());
116 assertFalse(file.canExecute());
117 assertFalse(file.canRead())
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
Rm.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
26 public void file(File file) { method in class:Rm
27 new Command("rm", "-f", file.getPath()).execute();
30 public void directoryTree(File directory) {
  /external/autotest/client/profilers/powertop/src/
xrandr.c 4 * This file is part of PowerTOP
6 * This program file is free software; you can redistribute it and/or modify it
16 * along with this program in a file named COPYING; if not, write to the
45 FILE *file; local
54 file = popen("xrandr 2> /dev/null", "r");
55 if (!file || feof(file)) {
59 while (!feof(file)) {
60 if (fgets(line, 1024, file)==NULL
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
24 import java.io.File;
35 * Opens file at {@code path} to output. If any directories on {@code path} do
36 * not exist, they will be created. The file will be readable and writable to
41 File file = getAbsoluteFile(path); local
43 Logs.log(Log.INFO, "opening file " + file.getAbsolutePath());
44 BufferedOutputStream stream = new BufferedOutputStream(new FileOutputStream(file));
46 file.setReadable(true /* readable */, false/* ownerOnly */)
60 File file = new File(path); local
    [all...]
  /external/elfutils/tests/
debuglink.c 3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
36 error (EXIT_FAILURE, 0, "No input file given");
42 const char *file = argv[i]; local
43 int fd = open (file, O_RDONLY);
45 error (EXIT_FAILURE, errno, "couldn't open file '%s'", file);
50 file, elf_errmsg (-1));
55 printf ("%s: <no gnu_debuglink file>\n", file);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
FileResource.java 1 package com.bumptech.glide.load.resource.file;
5 import java.io.File;
8 * A simple {@link com.bumptech.glide.load.engine.Resource} that wraps a {@link File}.
10 public class FileResource extends SimpleResource<File> {
11 public FileResource(File file) {
12 super(file);
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
AgentTaskTest.java 14 import java.io.File;
26 final File file = new File("src/org/jacoco/ant/AgentTaskTest.xml"); local
27 return new AntUnitSuite(file, AgentTaskTest.class);
CoverageTaskTest.java 14 import java.io.File;
28 final File file = new File("src/org/jacoco/ant/CoverageTaskTest.xml"); local
29 return new AntUnitSuite(file, CoverageTaskTest.class);
DumpTaskTest.java 14 import java.io.File;
26 final File file = new File("src/org/jacoco/ant/DumpTaskTest.xml"); local
27 return new AntUnitSuite(file, DumpTaskTest.class);
DumpTaskWithServerTest.java 14 import java.io.File;
28 final File file = new File( local
30 return new AntUnitSuite(file, DumpTaskWithServerTest.class);

Completed in 3942 milliseconds

1 2 3 4 5 6 7 8 91011>>