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

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sspsidl.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
stdexcpt.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
txctx.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
utime.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
wbemidl.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
wpftpmsg.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  /sdk/apps/DeviceConfig/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/testSensors/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /external/libpng/projects/visualc71/
zlib.vcproj 186 <File
188 </File>
189 <File
191 </File>
192 <File
194 </File>
195 <File
197 </File>
198 <File
200 </File>
    [all...]
  /external/lzma/C/Util/7z/
7z.dsp 1 # Microsoft Developer Studio Project File - Name="7z" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
89 # Begin Source File
92 # End Source File
93 # Begin Source File
96 # End Source File
97 # Begin Source File
100 # End Source File
101 # Begin Source File
104 # End Source File
    [all...]
  /external/clang/test/Analysis/
simple-stream-checks.c 6 FILE *F = fopen("myfile.txt", "w");
13 fclose(F); // expected-warning {{Closing a previously closed file stream}}
18 FILE *F = fopen("myfile.txt", "w");
23 if (Data) // expected-warning {{Opened file is never closed; potential resource leak}}
30 FILE *F = fopen("myfile.txt", "w");
40 FILE *F = fopen("myfile.txt", "w");
47 FILE *F = fopen("myfile.txt", "w");
48 } // expected-warning {{Opened file is never closed; potential resource leak}}
51 FILE *F = fopen("myfile.txt", "w");
52 return; // expected-warning {{Opened file is never closed; potential resource leak}
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/
DefaultFileComparator.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
24 * Compare two files using the <b>default</b> {@link File#compareTo(File)} method.
27 * by using the default file comparison.
32 * List&lt;File&gt; list = ...
39 * File[] array = ...
47 public class DefaultFileComparator implements Comparator<File>, Serializable
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldFileTest.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
20 import java.io.File;
36 File tempDir = new File(System.getProperty("java.io.tmpdir"));
39 File f = new File(tempDir, files[i]);
45 new File(tempDir, files[i]).delete();
49 private void deleteTempFolder(File dir)
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
filestrm.c 9 * File FILESTRM.C
34 FILE *file = fopen(filename, mode); local
35 return (FileStream*)file;
47 FILE* result = _wfopen(filename, mode);
52 FILE *result;
76 fclose((FILE*)fileStream);
82 FILE* temp = fopen(filename, "r");
97 FILE* file = tmpfile()
    [all...]
  /libcore/luni/src/main/java/java/io/
FileWriter.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
21 * A specialized {@link Writer} that writes to a file in the file system.
34 * Creates a FileWriter using the File {@code file}.
36 * @param file
37 * the non-null File to write bytes to.
39 * if {@code file} cannot be opened for writing
    [all...]
  /libcore/tzdata/tools/src/main/libcore/tzdata/update/tools/
CreateTzDataBundle.java 5 * you may not use this file except in compliance with the License.
18 import java.io.File;
33 * tzdata.properties file - the file describing the bundle (see template file in tzdata/tools)
34 * output file - the name of the file to be generated
45 File f = new File(args[0]);
47 System.err.println("Properties file " + f + " not found")
94 File file = new File(fileName); local
    [all...]
  /frameworks/rs/api/
GenerateDocumentation.cpp 5 * you may not use this file except in compliance with the License.
36 static void writeHeader(GeneratedFile* file, bool forVerification, const string& title) {
38 *file << "<!DOCTYPE html>\n";
39 *file << "<!-- " << AUTO_GENERATED_WARNING << "-->\n";
40 *file << "<html><head>\n"
52 *file << "<h1>" << title << "</h1>\n";
54 *file << "page.title=RenderScript " << title << "\n\n";
55 *file << "@jd:body\n\n";
57 *file << "<div class='renderscript'>\n";
60 static void writeFooter(GeneratedFile* file, bool forVerification)
418 GeneratedFile file; local
438 GeneratedFile file; local
607 GeneratedFile file; local
680 GeneratedFile file; local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
FileWriterWithEncoding.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
38 * By default, the file will be overwritten, but this may be changed to append.
58 * Constructs a FileWriterWithEncoding with a file encoding.
60 * @param filename the name of the file to write to, not null
62 * @throws NullPointerException if the file name or encoding is null
66 this(new File(filename), encoding, false);
70 * Constructs a FileWriterWithEncoding with a file encoding
    [all...]
LockableFileWriter.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
32 * cross thread file lock handling.
35 * that will use a lock file to prevent duplicate writes.
37 * By default, the file will be overwritten, but this may be changed to append.
54 /** The extension for the lock file. */
59 /** The lock file. */
60 private final File lockFile
    [all...]
  /development/samples/devbytes/telephony/SmsSampleProject/app/
app.iml 22 <option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/src/main/res" />
28 <output url="file://$MODULE_DIR$/build/intermediates/classes/debug" />
29 <output-test url="file://$MODULE_DIR$/build/intermediates/classes/androidTest/debug" />
31 <content url="file://$MODULE_DIR$">
32 <sourceFolder url="file://$MODULE_DIR$/build/generated/source/r/debug" isTestSource="false" generated="true" />
33 <sourceFolder url="file://$MODULE_DIR$/build/generated/source/aidl/debug" isTestSource="false" generated="true" />
34 <sourceFolder url="file://$MODULE_DIR$/build/generated/source/buildConfig/debug" isTestSource="false" generated="true" />
35 <sourceFolder url="file://$MODULE_DIR$/build/generated/source/rs/debug" isTestSource="false" generated="true" />
36 <sourceFolder url="file://$MODULE_DIR$/build/generated/res/rs/debug" type="java-resource" />
37 <sourceFolder url="file://$MODULE_DIR$/build/generated/res/generated/debug" type="java-resource" /
    [all...]
  /external/libvpx/libvpx/
video_reader.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
23 FILE *file; member in struct:VpxVideoReaderStruct
32 FILE *const file = fopen(filename, "rb"); local
33 if (!file)
34 return NULL; // Can't open file
36 if (fread(header, 1, 32, file) != 32
    [all...]
  /external/selinux/policycoreutils/sestatus/
sestatus.conf.5 1 .TH "sestatus.conf" "5" "26-Nov-2011" "Security Enhanced Linux" "sestatus configuration file"
4 sestatus.conf \- The \fBsestatus\fR(8) configuration file.
7 The \fIsestatus.conf\fR file is used by the \fBsestatus\fR(8) command with the \fB\-v\fR option to determine what file and process security contexts should be displayed.
9 The fully qualified path name of the configuration file is:
15 The file consists of two optional sections as described in the \fBFILE FORMAT\fR section. Whether these exist or not, the following will always be displayed:
21 The controlling terminal file context
24 .SH "FILE FORMAT"
48 The start of the file list block.
52 One or more fully qualified file names, each on a new line will that will have its context displayed. If the file does not exist, t (…)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
video_reader.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
23 FILE *file; member in struct:VpxVideoReaderStruct
32 FILE *const file = fopen(filename, "rb"); local
33 if (!file)
34 return NULL; // Can't open file
36 if (fread(header, 1, 32, file) != 32
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
MmsFileProvider.java 5 * you may not use this file except in compliance with the License.
26 import java.io.File;
39 * Returns a uri that can be used to access a raw mms file.
41 * @return the URI for an raw mms file
45 final File file = getFile(uri.getPath()); local
46 if (!ensureFileExists(file)) {
47 LogUtil.e(TAG, "Failed to create temp file " + file.getAbsolutePath());
53 File getFile(final String path, final String extension)
    [all...]
  /external/clang/test/CoverageMapping/
macroception.c 1 // RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name macroception.c %s | FileCheck %s
9 // CHECK-NEXT: Expansion,File 0, [[@LINE+2]]:12 -> [[@LINE+2]]:14 = #0
10 // CHECK-NEXT: File 0, [[@LINE+1]]:14 -> [[@LINE+3]]:2 = #0
14 // CHECK-NEXT: File 1, 4:12 -> 4:14 = #0
15 // CHECK-NEXT: Expansion,File 1, 4:12 -> 4:14 = #0
16 // CHECK-NEXT: File 2, 3:12 -> 3:13 = #0
19 // CHECK-NEXT: File 0, [[@LINE+2]]:14 -> [[@LINE+4]]:4 = #0
20 // CHECK-NEXT: Expansion,File 0, [[@LINE+3]]:1 -> [[@LINE+3]]:4 = #0
24 // CHECK-NEXT: File 1, 6:13 -> 6:16 = #0
25 // CHECK-NEXT: Expansion,File 1, 6:13 -> 6:16 = #
    [all...]

Completed in 572 milliseconds

<<11121314151617181920>>