HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 426 - 450 of 1907) sorted by null

<<11121314151617181920>>

  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 5 // This file is distributed under the University of Illinois Open Source
168 // For all relocation sections of each input file (in the tree),
169 // read out reloc entry info from the object file and accordingly
250 FileHandle file; local
252 if (!file.open(pPath,
259 MemoryArea* output = new MemoryArea(file);
264 file.close();
270 FileHandle file; local
271 file.delegate(pFileDescriptor);
272 MemoryArea* output = new MemoryArea(file);
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.cpp 6 * you may not use this file except in compliance with the License.
133 const char* file = "/sys/class/graphics/fb1/audio_data_block"; local
134 FILE* fpaudiocaps = fopen(file, "rb");
214 FILE* fpspkrfile = fopen(spkrfile, "rb");
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofBinaryToAscii.java 5 * you may not use this file except in compliance with the License.
23 import java.io.File;
45 * Reads single file from arguments and attempts to read it as
46 * either a binary hprof file or a version with a text header.
51 usage("binary hprof file argument expected");
54 File file = new File(args[0]); local
55 if (!file.exists()) {
56 usage("file " + file + " does not exist")
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.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
23 import java.io.File;
43 final static String SEP = File.separator;
73 File file = new File(TEMPPATH + SEP + "log"); local
74 file.mkdir();
171 File file = new File(TEMPPATH + SEP + "log") local
390 File file; local
424 File file = new File(TEMPPATH + SEP + "baddir" + SEP + "multi0"); local
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
NodeTest.java 5 * you may not use this file except in compliance with the License.
29 import java.io.File;
49 File file = Support_Resources.resourceToTempFile("/simple.xml"); local
50 Document document = builder.parse(file);
52 assertFileUriEquals(file, document.getBaseURI());
58 assertFileUriEquals(file, node.getBaseURI());
69 private void assertFileUriEquals(File expectedFile, String actual) {
71 actual.equals("file:" + expectedFile)
72 || actual.equals("file://" + expectedFile))
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.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
22 import java.io.File;
35 static Hashtable<String, File> cache = new Hashtable<String, File>(20);
37 public static File getLocalFile(String url) throws IOException,
40 File temp = cache.get(url);
43 temp = File.createTempFile("hyts_local", ".tmp", null);
58 public static File getExternalLocalFile(String url) throws IOException
96 File file = getLocalFile("hyts_att.jar"); local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
GNUmakefile 67 # $1: source file
68 # $2: object file
69 define build-c-file
78 $(eval $(call build-c-file,$(src),$(BUILD_DIR)/$(src:%.c=%.o)))\
89 $(eval $(call build-c-file,$(PROCTAB_C),$(PROCTAB_O)))
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
DirectoryWalker.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;
59 * public List clean(File startDirectory) {
65 * protected boolean handleDirectory(File directory, int depth, Collection results) {
76 * protected void handleFile(File file, int depth, Collection results) {
77 * // delete file and add to list of deleted
78 * file.delete();
572 private File file; field in class:DirectoryWalker.CancelException
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchLogDirectory.java 5 * you may not use this file except in compliance with the License.
22 import java.io.File;
41 private final File mFilesDir;
45 public boolean accept(final File pathname) {
64 private File getLoggingDirectory(final Context context) {
72 * A file is ready for uploading if it is marked as read-only.
76 public File[] getUploadableLogFiles() {
81 return new File[0];
87 for (final File file : mFilesDir.listFiles())
    [all...]
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
ThreadingTest.java 5 * you may not use this file except in compliance with the License.
87 final String file = d.first.getStringField(DownloadManager.COLUMN_LOCAL_FILENAME); local
88 if (!seenFiles.add(file)) {
89 fail("Another download already claimed " + file);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaUpgradeReceiver.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
60 File dbDir = context.getDatabasePath("foo").getParentFile();
64 String file = files[i]; local
65 if (MediaProvider.isMediaDatabaseName(file)) {
73 Slog.i(TAG, "---> Start upgrade of media database " + file);
77 context, file, MediaProvider.isInternalMediaDatabaseName(file),
81 Log.wtf(TAG, "Error during upgrade of media db " + file, t);
87 Slog.i(TAG, "<--- Finished upgrade of media database " + file
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
5 // This file is part of the GNU ISO C++ Library. This library is free
25 /** @file ext/stdio_sync_filebuf.h
26 * This file is a GNU extension to the Standard C++ Library.
58 // Underlying stdio FILE
72 * @return The underlying FILE*.
74 * This function can be used to access the underlying "C" file pointer.
76 * with the file, so be careful.
79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
6 // This file is part of the GNU ISO C++ Library. This library is free
26 /** @file ext/stdio_sync_filebuf.h
27 * This file is a GNU extension to the Standard C++ Library.
53 * C FILE*'s. It must be instantiated by the user with the type of
54 * character used in the file stream, e.g., stdio_filebuf<char>.
68 // Underlying stdio FILE
82 * @return The underlying FILE*.
84 * This function can be used to access the underlying C file pointer.
86 * with the file, so be careful
89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
6 // This file is part of the GNU ISO C++ Library. This library is free
26 /** @file ext/stdio_sync_filebuf.h
27 * This file is a GNU extension to the Standard C++ Library.
53 * C FILE*'s. It must be instantiated by the user with the type of
54 * character used in the file stream, e.g., stdio_filebuf<char>.
68 // Underlying stdio FILE
82 * @return The underlying FILE*.
84 * This function can be used to access the underlying C file pointer.
86 * with the file, so be careful
89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
5 // This file is part of the GNU ISO C++ Library. This library is free
25 /** @file ext/stdio_sync_filebuf.h
26 * This file is a GNU extension to the Standard C++ Library.
58 // Underlying stdio FILE
72 * @return The underlying FILE*.
74 * This function can be used to access the underlying "C" file pointer.
76 * with the file, so be careful.
79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
5 // This file is part of the GNU ISO C++ Library. This library is free
25 /** @file ext/stdio_sync_filebuf.h
26 * This file is a GNU extension to the Standard C++ Library.
58 // Underlying stdio FILE
72 * @return The underlying FILE*.
74 * This function can be used to access the underlying "C" file pointer.
76 * with the file, so be careful.
79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
5 // This file is part of the GNU ISO C++ Library. This library is free
25 /** @file ext/stdio_sync_filebuf.h
26 * This file is a GNU extension to the Standard C++ Library.
58 // Underlying stdio FILE
72 * @return The underlying FILE*.
74 * This function can be used to access the underlying "C" file pointer.
76 * with the file, so be careful.
79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
5 // This file is part of the GNU ISO C++ Library. This library is free
25 /** @file ext/stdio_sync_filebuf.h
26 * This file is a GNU extension to the Standard C++ Library.
58 // Underlying stdio FILE
72 * @return The underlying FILE*.
74 * This function can be used to access the underlying "C" file pointer.
76 * with the file, so be careful.
79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
6 // This file is part of the GNU ISO C++ Library. This library is free
26 /** @file ext/stdio_sync_filebuf.h
27 * This file is a GNU extension to the Standard C++ Library.
53 * C FILE*'s. It must be instantiated by the user with the type of
54 * character used in the file stream, e.g., stdio_filebuf<char>.
68 // Underlying stdio FILE
82 * @return The underlying FILE*.
84 * This function can be used to access the underlying C file pointer.
86 * with the file, so be careful
89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
6 // This file is part of the GNU ISO C++ Library. This library is free
26 /** @file ext/stdio_sync_filebuf.h
27 * This file is a GNU extension to the Standard C++ Library.
53 * C FILE*'s. It must be instantiated by the user with the type of
54 * character used in the file stream, e.g., stdio_filebuf<char>.
68 // Underlying stdio FILE
82 * @return The underlying FILE*.
84 * This function can be used to access the underlying C file pointer.
86 * with the file, so be careful
89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
6 // This file is part of the GNU ISO C++ Library. This library is free
26 /** @file ext/stdio_sync_filebuf.h
27 * This file is a GNU extension to the Standard C++ Library.
53 * C FILE*'s. It must be instantiated by the user with the type of
54 * character used in the file stream, e.g., stdio_filebuf<char>.
68 // Underlying stdio FILE
82 * @return The underlying FILE*.
84 * This function can be used to access the underlying C file pointer.
86 * with the file, so be careful
89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
6 // This file is part of the GNU ISO C++ Library. This library is free
26 /** @file ext/stdio_sync_filebuf.h
27 * This file is a GNU extension to the Standard C++ Library.
53 * C FILE*'s. It must be instantiated by the user with the type of
54 * character used in the file stream, e.g., stdio_filebuf<char>.
68 // Underlying stdio FILE
82 * @return The underlying FILE*.
84 * This function can be used to access the underlying C file pointer.
86 * with the file, so be careful
89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
stdio_sync_filebuf.h 1 // Iostreams wrapper for stdio FILE* -*- C++ -*-
5 // This file is part of the GNU ISO C++ Library. This library is free
25 /** @file ext/stdio_sync_filebuf.h
26 * This file is a GNU extension to the Standard C++ Library.
52 * C FILE*'s. It must be instantiated by the user with the type of
53 * character used in the file stream, e.g., stdio_filebuf<char>.
67 // Underlying stdio FILE
81 * @return The underlying FILE*.
83 * This function can be used to access the underlying C file pointer.
85 * with the file, so be careful
88 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 1 """Extended file operations available in POSIX.
7 will create a posixfile object from a builtin file object
9 f.file()
10 will return the original builtin file object
13 will return a new file object based on a new filedescriptor
16 will return a new file object based on the given filedescriptor
60 """File wrapper class that provides extra POSIX file routines."""
68 file = self._file_
70 (self.states[file.closed], file.name, file.mode,
96 def file(self): member in class:_posixfile_
    [all...]
shlex.py 75 print 'shlex: pushing to file %s' % (self.infile,)
131 self.token = '' # past end of file
135 self.state = None # end of file
168 if not nextchar: # end of file
187 if not nextchar: # end of file
201 self.state = None # end of file
285 file = sys.argv[1] variable
286 lexer = shlex(open(file), file)

Completed in 656 milliseconds

<<11121314151617181920>>