HomeSort by relevance Sort by last modified time
    Searched full:file (Results 376 - 400 of 47728) sorted by null

<<11121314151617181920>>

  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempPath.java 3 * or more contributor license agreements. See the NOTICE file *
5 * regarding copyright ownership. The ASF licenses this file *
7 * "License"); you may not use this file except in compliance *
33 * Creates a new temporary file. Wheter it will be be created in memory
38 * @return the temporary file.
43 * Creates a new temporary file. Wheter it will be be created in memory
50 * @return the temporary file.
55 * Creates a new temporary file. Wheter it will be be created in memory
58 * the new file will be created on disk.
64 * @param allowInMemory if <code>true</code> the file MIGHT be created in
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/output/
DeferredFileOutputStream.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;
35 * not know in advance the size of the file being uploaded. If the file is small
36 * you want to store it in memory (for speed), but if the file is large you want
37 * to store it to file (to avoid memory issues).
67 * The file to which output will be directed if the threshold is exceeded.
69 private File outputFile;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectClassLoader.java 5 * you may not use this file except in compliance with the License.
30 import java.io.File;
64 File outFolder = new File(outRes.getLocation().toOSString());
69 File classFile = getFile(outFolder, segments, 0);
72 // if no file matching the class name was found, look in the 3rd party jars
79 // load the content of the file and create the class.
104 * Returns the File matching the a certain path from a root {@link File}.
105 * <p/>The methods checks that the file ends in .class even though the last segmen
    [all...]
  /external/apache-http/src/org/apache/http/entity/
FileEntity.java 8 * or more contributor license agreements. See the NOTICE file
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
34 import java.io.File;
41 * An entity whose content is retrieved from a file.
51 protected final File file; field in class:FileEntity
53 public FileEntity(final File file, final String contentType) {
55 if (file == null)
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureLibraries.java 5 * you may not use this file except in compliance with the License.
23 import java.io.File;
36 return fromFile(new File(path));
39 public static GestureLibrary fromFile(File path) {
52 private final File mPath;
54 public FileGestureLibrary(File path) {
66 final File file = mPath;
68 final File parentFile = file.getParentFile()
92 final File file = mPath; local
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
SizeFileFilter.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;
30 * File dir = new File(".");
49 * Constructs a new size file filter for files equal to or
60 * Constructs a new size file filter for files based on a certain size
78 * Checks to see if the size of the file is favorable.
81 * file <b>IS NOT</b> selected.
    [all...]
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePart.java 9 * contributor license agreements. See the NOTICE file distributed with
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
33 import java.io.File;
44 * consists of a file.
59 /** Default content encoding of file attachments. */
62 /** Default charset of file attachments. */
65 /** Default transfer encoding of file attachments. */
71 /** Attachment's file name */
74 /** Attachment's file name as a byte array *
    [all...]
  /system/core/libzipfile/
centraldir.c 17 // local file header
34 read_central_dir_values(Zipfile* file, const unsigned char* buf, int len)
37 // looks like ZIP file got truncated
43 file->disknum = read_le_short(&buf[0x04]);
44 file->diskWithCentralDir = read_le_short(&buf[0x06]);
45 file->entryCount = read_le_short(&buf[0x08]);
46 file->totalEntryCount = read_le_short(&buf[0x0a]);
47 file->centralDirSize = read_le_int(&buf[0x0c]);
48 file->centralDirOffest = read_le_int(&buf[0x10]);
49 file->commentLen = read_le_short(&buf[0x14]);
    [all...]
  /external/bluetooth/glib/docs/reference/gobject/
gobject-sections.txt 4 <FILE>gtype</FILE>
168 <FILE>gtypeplugin</FILE>
191 <FILE>gtypemodule</FILE>
218 <FILE>objects</FILE>
301 <FILE>enumerations_flags</FILE>
    [all...]
  /external/guava/src/com/google/common/io/
FileBackedOutputStream.java 5 * you may not use this file except in compliance with the License.
23 import java.io.File;
32 * switches to file buffering once the data reaches a configurable size.
47 private File file; field in class:FileBackedOutputStream
60 /** Returns the file holding the data (possibly null). */
61 @VisibleForTesting synchronized File getFile() {
62 return file;
66 * Creates a new instance that uses the given file threshold.
70 * switch to buffering to a file
    [all...]
  /external/zlib/
minigzip.c 9 * full-featured gzip. No attempt is made to deal with file systems
12 * real thing. On MSDOS, use only on file names without extension
35 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
37 # define SET_BINARY_MODE(file)
47 # define fileno(file) file->__file
75 void gz_compress OF((FILE *in, gzFile out));
77 int gz_compress_mmap OF((FILE *in, gzFile out));
79 void gz_uncompress OF((gzFile in, FILE *out))
274 gzFile file; local
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
78 * @param configVersion The version of the configuration file.
89 File dest = new File(dataPath);
115 return deleteTree(new File(directory), true);
118 private static boolean deleteTree(File base, boolean deleteBase) {
121 for (File child : base.listFiles()) {
131 private static boolean versionMatches(File dest, String expectedVersion) {
139 private static Config getLocalConfig(File destPath, String configFilename)
    [all...]
  /cts/tools/host/src/com/android/cts/
HostConfig.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
135 String[] subDirs = configPath.split("\\" + File.separator);
145 if (File.separatorChar == configPath.charAt(configPath.length() - 1)) {
153 configFile = mConfigRoot + File.separator + fileName;
156 .newDocumentBuilder().parse(new File(configFile));
173 String caseRoot = repositoryRoot + File.separator + caseCfg;
174 String planRoot = repositoryRoot + File.separator + planCfg;
175 String resRoot = repositoryRoot + File.separator + resCfg;
179 validCase = new File(caseRoot).mkdirs()
367 File file = new File(dest, name); local
943 File file = new File(filepath); local
    [all...]
  /build/tools/apriori/
prelinkmap.h 6 extern void pm_init(const char *file);
  /cts/tools/signature-tools/
TODO.txt 5 Add "plugin system" to enable different loader / differ / report engines. This can be simple as register the class name of the available loaders in a property file
  /dalvik/dx/tests/040-dex-constructor/
info.txt 3 file are not checked for correctness. This test is of a classfile with
  /dalvik/tests/071-dexfile/
info.txt 1 Exercise some Dalvik-specific DEX file features. This is not expected to
  /development/data/etc/
vold.conf 1 ## vold configuration file for the emulator/SDK
  /development/ide/intellij/
p4.sh 4 echo "$2 - file(s) not in client view." >&2
  /device/htc/passion-common/
AndroidBoardCommon.mk 4 # you may not use this file except in compliance with the License.
17 $(call add-radio-file,recovery/images/firmware_install.565)
18 $(call add-radio-file,recovery/images/firmware_error.565)
19 $(call add-radio-file,recovery/images/bitmap_size.txt)
  /device/sample/frameworks/PlatformLibrary/
com.example.android.platform_library.xml 4 file="/system/framework/com.example.android.platform_library.jar"/>
  /device/sample/sdk_addon/
hardware.ini 3 # Each skin can also override those values with its own hardware.ini file
  /external/bison/examples/
extexi 3 # This file is part of GNU Bison
24 # Usage: extexi input-file.texi ... -- [FILES to extract]
45 /^@comment file: / {
51 file = $3;
56 if (!file)
61 input = files_output[file] ? "\n" : "";
67 if (file ~ /\.[chy]*$/)
75 fatal("no contents: " file);
79 if (files_output[file])
80 # The parens around the output file seem to be require
    [all...]
  /external/bluetooth/bluez/input/
input.conf 1 # Configuration file for the input service
  /external/bluetooth/glib/gio/win32/
gwinhttpfileoutputstream.c 40 GWinHttpFile *file; member in struct:_GWinHttpFileOutputStream
67 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->connection);
90 * @file: the GWinHttpFile being read
97 _g_winhttp_file_output_stream_new (GWinHttpFile *file,
104 stream->file = file;
124 request = G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpOpenRequest
127 winhttp_stream->file->url.lpszUrlPath,
131 winhttp_stream->file->url.nScheme == INTERNET_SCHEME_HTTPS ? WINHTTP_FLAG_SECURE : 0);
145 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpSendReques
    [all...]

Completed in 292 milliseconds

<<11121314151617181920>>