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

1 2 3 45 6 7 8 91011>>

  /system/wlan/ti/wilink_6_1/config/
wpa_supplicant.conf 1 ##### wpa_supplicant configuration file template #####
  /external/elfutils/tests/
run-get-files.sh 16 # Don't fail if we cannot decompress the file.
19 # Don't fail if we cannot decompress the file.
26 file[0] = "???"
27 file[1] = "/home/drepper/gnu/new-bu/build/ttt/m.c"
29 file[0] = "???"
30 file[1] = "/home/drepper/gnu/new-bu/build/ttt/b.c"
31 file[2] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h"
32 file[3] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h"
33 file[4] = "/usr/include/bits/types.h"
34 file[5] = "/usr/include/bits/sched.h
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
MainFrame.java 5 * you may not use this file except in compliance with the License.
33 import java.io.File;
54 File file = new File(path); local
55 BufferedImage img = GraphicsUtilities.loadCompatibleImage(file.toURI().toURL());
56 showImageEditor(img, file.getAbsolutePath());
74 JMenu fileMenu = new JMenu("File");
102 public SwingWorker<?, ?> open(File file) {
131 File file = imageEditor.chooseSaveFile(); local
136 private final File file; field in class:MainFrame.SaveTask
144 ImageIO.write(imageEditor.getImage(), "PNG", file); local
153 private final File file; field in class:MainFrame.OpenTask
    [all...]
  /build/target/board/emulator/
AndroidBoard.mk 3 file := $(TARGET_OUT_KEYLAYOUT)/tuttle2.kl macro
4 ALL_PREBUILT += $(file)
5 $(file) : $(LOCAL_PATH)/tuttle2.kl | $(ACP)
  /build/target/board/generic/
AndroidBoard.mk 3 file := $(TARGET_OUT_KEYLAYOUT)/tuttle2.kl macro
4 ALL_PREBUILT += $(file)
5 $(file) : $(LOCAL_PATH)/tuttle2.kl | $(ACP)
  /development/samples/JetBoy/
default.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/jpeg/
jversion.h 5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file contains software version identification.
jconfig.vms 26 #define BMP_SUPPORTED /* BMP image file format */
27 #define GIF_SUPPORTED /* GIF image file format */
28 #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
29 #undef RLE_SUPPORTED /* Utah RLE image file format */
30 #define TARGA_SUPPORTED /* Targa image file format */
  /ndk/samples/bitmap-plasma/
default.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.
  /ndk/samples/hello-gl2/
default.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.
  /ndk/samples/hello-jni/
default.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.
  /ndk/samples/hello-jni/tests/
default.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.
  /ndk/samples/hello-neon/
default.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.
  /ndk/samples/san-angeles/
default.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.
  /ndk/samples/two-libs/
default.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.
  /ndk/samples/two-libs/tests/
default.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/kernel-headers/original/linux/
file.h 37 struct file ** fd; /* current fd array */
46 * Open file table structure
62 struct file * fd_array[NR_OPEN_DEFAULT];
67 extern void FASTCALL(__fput(struct file *));
68 extern void FASTCALL(fput(struct file *));
70 static inline void fput_light(struct file *file, int fput_needed)
73 fput(file);
76 extern struct file * FASTCALL(fget(unsigned int fd));
77 extern struct file * FASTCALL(fget_light(unsigned int fd, int *fput_needed))
96 struct file * file = NULL; local
    [all...]
android_pmem.h 24 /* This ioctl will allocate pmem space, backing the file, it will fail
25 * if the file already has an allocation, pass it the len as the argument
28 /* This will connect a one pmem file to another, pass the file that is already
61 int is_pmem_file(struct file *file);
63 unsigned long *end, struct file **filp);
64 int get_pmem_user_addr(struct file *file, unsigned long *start,
66 void put_pmem_file(struct file* file)
    [all...]
  /external/icu4c/io/
ufile.c 9 * File ufile.c
46 u_finit(FILE *f,
116 FILE *systemFile = fopen(filename, perm);
183 u_fflush(UFILE *file)
185 ufile_flush_translit(file);
186 if (file->fFile) {
187 fflush(file->fFile);
189 else if (file->str.fPos < file->str.fLimit) {
190 *(file->str.fPos++) = 0
    [all...]
  /dalvik/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...]
  /external/icu4c/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...]
  /packages/apps/Email/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...]
  /external/webkit/WebKit/gtk/docs/
webkitgtk-sections.txt 2 <FILE>webkitwebsettings</FILE>
24 <FILE>webkitwebbackforwardlist</FILE>
58 <FILE>webkitwebhistoryitem</FILE>
85 <FILE>webkitwebframe</FILE>
128 <FILE>webkitdownload</FILE>
    [all...]
  /external/oprofile/libop/
op_sample_file.h 2 * @file op_sample_file.h
3 * Sample file format
6 * @remark Read the file COPYING
28 // for cg file the from_cg_is_kernel
33 /* spu_profile=1 says sample file contains Cell BE SPU profile data */

Completed in 130 milliseconds

1 2 3 45 6 7 8 91011>>