/frameworks/base/awt/org/apache/harmony/x/imageio/spi/ |
FileIISSpi.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 27 import java.io.File; 37 super(vendor, ver, File.class); 42 File cacheDir) throws IOException { 43 if (File.class.isInstance(input)) { 44 return new FileImageInputStream((File) input); 46 throw new IllegalArgumentException("input is not an instance of java.io.File"); 51 return "File IIS Spi" [all...] |
FileIOSSpi.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 26 import java.io.File; 36 super(vendor, ver, File.class); 41 File cacheDir) throws IOException { 42 if (output instanceof File) { 43 return new FileImageOutputStream((File) output); 45 throw new IllegalArgumentException("output is not instance of File"); 50 return "File IOS Spi" [all...] |
/frameworks/base/core/java/android/widget/ |
package.html | 10 <li><b>Java implementation file</b> - This is the file that implements the 13 values from the layout XML file.</li> 14 <li><b>XML definition file</b> - An XML file in res/values/ that defines 18 <li><b>Layout XML</b> [<em>optional</em>]- An optional XML file inside 20 this in code in your Java file.</li> 26 <li><strong>LabelView.java</strong> - The implentation file</li> 27 <li><strong>res/values/attrs.xml</strong> - Definition file</li> 29 file</li [all...] |
/packages/apps/Email/src/org/apache/commons/io/filefilter/ |
FalseFileFilter.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;
23 * A file filter that always returns false.
54 * @param file the file to check
57 public boolean accept(File file) {
68 public boolean accept(File dir, String name) { [all...] |
TrueFileFilter.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;
23 * A file filter that always returns true.
54 * @param file the file to check
57 public boolean accept(File file) {
68 public boolean accept(File dir, String name) { [all...] |
/external/bluetooth/glib/tests/ |
uri-test.c | 22 * file for a list of people on the GLib Team. See the ChangeLog 47 { "/etc", NULL, "file:///etc"}, 48 { "/etc", "", "file:///etc"}, 49 { "/etc", "otherhost", "file://otherhost/etc"}, 51 { "/etc", "localhost", "file:///etc"}, 52 { "c:\\windows", NULL, "file:///c:/windows"}, 53 { "c:\\windows", "localhost", "file:///c:/windows"}, 54 { "c:\\windows", "otherhost", "file://otherhost/c:/windows"}, 55 { "\\\\server\\share\\dir", NULL, "file:////server/share/dir"}, 56 { "\\\\server\\share\\dir", "localhost", "file:////server/share/dir"} [all...] |
/dalvik/libcore/luni/src/main/java/java/io/ |
RandomAccessFile.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 30 * Allows reading from and writing to a file in a random-access manner. This is 32 * {@link FileInputStream} or {@link FileOutputStream} provides. If the file is 45 // The unique file channel associated with this FileInputStream (lazily 63 * Constructs a new {@code RandomAccessFile} based on {@code file} and opens 70 * <td>The file is opened in read-only mode. An {@code IOException} is 75 * <td>The file is opened for reading and writing. If the file does no [all...] |
/external/bluetooth/glib/gio/win32/ |
gwinhttpfile.c | 53 GWinHttpFile *file; local 55 file = G_WINHTTP_FILE (object); 57 g_free (file->url.lpszScheme); 58 g_free (file->url.lpszHostName); 59 g_free (file->url.lpszUserName); 60 g_free (file->url.lpszPassword); 61 g_free (file->url.lpszUrlPath); 62 g_free (file->url.lpszExtraInfo); 64 g_object_unref (file->vfs); 94 GWinHttpFile *file; local [all...] |
/external/bluetooth/glib/gio/ |
gfileicon.c | 38 * @short_description: Icons pointing to an image file 42 * #GFileIcon specifies an icon by pointing to an image file 59 GFile *file; member in struct:_GFileIcon 90 g_value_set_object (value, icon->file); 109 icon->file = G_FILE (g_value_dup_object (value)); 124 g_object_unref (icon->file); 139 * GFileIcon:file: 141 * The file containing the icon. 144 g_param_spec_object ("file", 145 _("file"), 228 GFile *file; local [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
HeaderItem.java | 5 * you may not use this file except in compliance with the License. 17 package com.android.dx.dex.file; 24 * File header section of a {@code .dex} file. 28 * {@code non-null;} the file format magic number, represented as the 60 public void addContents(DexFile file) { 66 public void writeTo(DexFile file, AnnotatedOutput out) { 67 int mapOff = file.getMap().getFileOffset(); 68 Section firstDataSection = file.getFirstDataSection(); 69 Section lastDataSection = file.getLastDataSection() [all...] |
/external/stlport/src/ |
_stdio_file.h | 22 /* This file provides a low-level interface between the internal 23 * representation of struct FILE, from the C stdio library, and 41 inline int _FILE_fd(const FILE *__f) { 42 /* Check if FILE is one of the three standard streams 57 return (int)::_fileno((FILE*)__f); 62 inline int _FILE_fd(const FILE *__f) { return __f->__file; } 66 inline int _FILE_fd(const FILE *__f) { return (int) __f->__pad[2]; } 72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); } 76 inline int _FILE_fd(const FILE *__f) { return __f->_fileno; [all...] |
/external/webkit/WebCore/platform/graphics/android/ |
LayerAndroid.cpp | 421 // Debug tools : dump the layers tree in a file. 446 void lwrite(FILE* file, const char* str) 448 fwrite(str, sizeof(char), strlen(str), file); 451 void writeIndent(FILE* file, int indentLevel) 454 fprintf(file, "%*s", indentLevel*2, " "); 457 void writeln(FILE* file, int indentLevel, const char* str) 459 writeIndent(file, indentLevel) 554 FILE* file = fopen("\/data\/data\/com.android.browser\/layertmp", "w"); local [all...] |
/packages/apps/Email/src/org/apache/commons/io/comparator/ |
NameFileComparator.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;
26 * Compare the <b>names</b> of two files for order (see {@link File#getName()}).
34 * Example of a <i>case-sensitive</i> file name sort using the
37 * List<File> list = ...
41 * Example of a <i>reverse case-insensitive</i> file name sort using the
44 * File[] array = ...
76 * Construct a case sensitive file name comparator instance. [all...] |
PathFileComparator.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;
26 * Compare the <b>path</b> of two files for order (see {@link File#getPath()}).
34 * Example of a <i>case-sensitive</i> file path sort using the
37 * List<File> list = ...
41 * Example of a <i>reverse case-insensitive</i> file path sort using the
44 * File[] array = ...
76 * Construct a case sensitive file path comparator instance. [all...] |
/system/core/libzipfile/ |
zipfile.c | 14 Zipfile *file = malloc(sizeof(Zipfile)); local 15 if (file == NULL) return NULL; 16 memset(file, 0, sizeof(Zipfile)); 17 file->buf = data; 18 file->bufsize = size; 20 err = read_central_dir(file); 23 return file; 25 free(file); 32 Zipfile* file = (Zipfile*)f; local 33 Zipentry* entry = file->entries 45 Zipfile* file = (Zipfile*)f; local [all...] |
/build/tools/droiddoc/src/ |
SourcePositionInfo.java | 5 * you may not use this file except in compliance with the License. 20 this.file = "<unknown>"; 25 public SourcePositionInfo(String file, int line, int column) 27 this.file = file; 34 this.file = that.file; 59 return new SourcePositionInfo(that.file, line, 0); 76 return new SourcePositionInfo(that.file, line, 0); 82 return file + ':' + line 92 public String file; field in class:SourcePositionInfo [all...] |
/development/host/windows/usb/ |
readme.txt | 1 android_winusb.inf file contained in this folder must be used to install
7 * File android_winusb.inf - Installation file
8 * File androidwinusb86.cat - Signed catalog for 32-bit package
9 * File androidwinusba64.cat - Signed catalog for AMD 64-bit package
19 File contained in i386 and amd64 subfolders are Microsoft distributives needed
24 android_winusb.inf file can be modified in order to provide support for the
27 file to add descriptions for new devices and interfaces. Note that when .inf
28 file is modified, .cat files must be rebuilt and resigned in order to keep
33 As an alternative to modification, android_winusb.inf file can be used as a [all...] |
/external/oprofile/libutil/ |
op_file.h | 2 * @file op_file.h 3 * Useful file management helpers 6 * @remark Read the file COPYING 22 * op_file_readable - is a file readable 23 * @param file file name 25 * Return true if the given file is readable and regular. 29 int op_file_readable(char const * file); 32 * op_get_mtime - get mtime of file 33 * @param file file nam [all...] |
/external/icu4c/test/letest/ |
cletest.vcproj | 340 <File 343 </File> 344 <File 347 </File> 348 <File 351 </File> 352 <File 355 </File> 356 <File 359 </File> [all...] |
/external/icu4c/tools/toolutil/ |
unewdata.c | 8 * file name: unewdata.c 27 FileStream *file; member in struct:UNewDataMemory 83 /* open the output file */ 99 pData->file=T_FileStream_open(filename, "wb"); 100 if(pData->file==NULL) { 119 T_FileStream_write(pData->file, &pData->headerSize, 4); 122 T_FileStream_write(pData->file, pInfo, pInfo->size); 126 T_FileStream_write(pData->file, comment, commentLength); 134 T_FileStream_write(pData->file, bytes, headerSize); 149 if(pData->file!=NULL) [all...] |
/frameworks/base/services/java/com/android/server/am/ |
DeviceMonitor.java | 5 * you may not use this file except in compliance with the License. 77 private static final File PROC = new File("/proc"); 78 private static final File BASE = new File("/data/anr/"); 85 private static final File[] PATHS = { 86 new File(PROC, "zoneinfo"), 87 new File(PROC, "interrupts"), 88 new File(PROC, "meminfo"), 89 new File(PROC, "slabinfo") [all...] |
/frameworks/base/tools/aidl/ |
AST.h | 31 void WriteModifiers(FILE* to, int mod, int mask); 39 virtual void Write(FILE* to) = 0; 45 virtual void Write(FILE* to) = 0; 54 virtual void Write(FILE* to); 69 void WriteDeclaration(FILE* to); 70 void Write(FILE* to); 83 void Write(FILE* to); 98 virtual void Write(FILE* to); 104 virtual void Write(FILE* to) = 0; 113 virtual void Write(FILE* to) [all...] |
/external/opencore/engines/player/test/src/ |
test_pv_player_engine.cpp | 5 * you may not use this file except in compliance with the License. 154 #error // The default source file needs to be defined in config file 158 #error // The format type for default source file needs to be defined in config file 166 FILE *file; variable 171 Let us read the logging settings from the file instead of hard coding them over here 172 The name of the config file is pvlogger.ini 174 First entry will decide if the file appender has to be used or error appender will be used [all...] |
/dalvik/libcore/dalvik/src/main/java/dalvik/system/ |
DexFile.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 30 * Note we don't directly open and read the DEX file here. They're memory-mapped 40 * Opens a DEX file from a given File object. This will usually be a ZIP/JAR 41 * file with a "classes.dex" inside. 43 * The VM will generate the name of the coresponding file in 46 * a file in /data/dalvik-cache, as the named file is expected to be 49 * @param file [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
ClassPathOpener.java | 5 * you may not use this file except in compliance with the License. 21 import java.io.File; 56 * Provides the file name and byte array for a class path element. 61 * @param bytes {@code non-null;} file data 77 * Informs consumer that processing of an archive file has begun. 79 * @param file {@code non-null;} archive file being processed 81 void onProcessArchiveStart(File file); 106 File file = new File(pathname) local [all...] |