HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 1226 - 1250 of 2724) sorted by null

<<41424344454647484950>>

  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x-google/gcov-src/
gcov-io.c 0 /* File format for coverage information
6 This file is part of GCC.
27 /* Routines declared in gcov-io.h. This file should be #included by
28 another source file, after having #included gcov-io.h. */
44 FILE *file; member in struct:gcov_var
66 /* Save the current position in the gcov file. */
85 return gcov_var.file ? gcov_var.error : 1;
89 /* Move to beginning of file and initialize for writing. */
97 fseek (gcov_var.file, 0L, SEEK_SET)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x-google/gcov-src/
gcov-io.c 0 /* File format for coverage information
6 This file is part of GCC.
27 /* Routines declared in gcov-io.h. This file should be #included by
28 another source file, after having #included gcov-io.h. */
44 FILE *file; member in struct:gcov_var
66 /* Save the current position in the gcov file. */
85 return gcov_var.file ? gcov_var.error : 1;
89 /* Move to beginning of file and initialize for writing. */
97 fseek (gcov_var.file, 0L, SEEK_SET)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
line-map.h 1 /* Map logical line numbers to (source file, line number) pairs.
15 along with this program; see the file COPYING3. If not see
30 when including a new file, e.g. a #include directive in C.
31 LC_LEAVE is when reaching a file's end. LC_RENAME is when a file
62 Physical source file TO_FILE at line TO_LINE at column 0 is represented
67 means "entire file/line" or "unknown line/column" or "not applicable".)
75 the current one was included. File(s) at the bottom of the
79 /* SYSP is one for a system header, two for a C system header file
293 /* Depth of the include stack, including the current file. *
629 const char *file; member in struct:__anon33678
    [all...]
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9/gcov-src/
gcov-io.c 0 /* File format for coverage information
6 This file is part of GCC.
27 /* Routines declared in gcov-io.h. This file should be #included by
28 another source file, after having #included gcov-io.h. */
44 FILE *file; member in struct:gcov_var
66 /* Save the current position in the gcov file. */
85 return gcov_var.file ? gcov_var.error : 1;
89 /* Move to beginning of file and initialize for writing. */
97 fseek (gcov_var.file, 0L, SEEK_SET)
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/gcov-src/
gcov-io.c 0 /* File format for coverage information
6 This file is part of GCC.
27 /* Routines declared in gcov-io.h. This file should be #included by
28 another source file, after having #included gcov-io.h. */
44 FILE *file; member in struct:gcov_var
66 /* Save the current position in the gcov file. */
85 return gcov_var.file ? gcov_var.error : 1;
89 /* Move to beginning of file and initialize for writing. */
97 fseek (gcov_var.file, 0L, SEEK_SET)
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.5.0/
sdk-common-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.5.1/
sdk-common-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.5.3/
sdk-common-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.7.0/
sdk-common-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.7.1/
sdk-common-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.7.3/
sdk-common-22.7.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.8.0/
sdk-common-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/22.9.2/
sdk-common-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/23.0.1/
sdk-common-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/23.0.2/
sdk-common-23.0.2.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 69 logfp = None # File object to log to, if not None
72 """Write a log message, if there is a log file.
76 (initially), to dolog (once the log file has been opened), or to
82 will write "a: b" to the log file, followed by a newline.
84 If the global logfp is not None, it should be a file object to
88 giving a filename to open, in append mode. This file should be
89 world writable!!! If the file can't be opened, logging is
107 """Write a log message to the log file. See initlog() for docs."""
125 """Parse a query in the environment or from a file (default stdin)
129 fp : file pointer; default: sys.stdi
335 file = None variable in class:MiniFieldStorage
    [all...]
ftplib.py 3 Based on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds
92 To download a file, use ftp.retrlines('RETR ' + filename),
94 To upload a file, use ftp.storlines() or ftp.storbinary(),
95 which have an open file as argument (see their definitions
105 file = None variable in class:FTP
134 self.file = self.sock.makefile('rb')
183 line = self.file.readline()
230 '''Abort a file transfer. Uses out-of-band data.
449 """Store a file in binary mode. A new port is created for you.
453 fp: A file-like object with a read(num_bytes) method
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Standard_Suite.py 51 Keyword argument saving_in: the file or alias in which to save the object
406 Keyword argument in_: the file or alias in which to save the object
407 Keyword argument as: the file type of the document in which to save the data
473 """alias - a file on a disk or server. The file must exist when you check the syntax of your script. """
476 """POSIX path - the POSIX path of the file """
583 class file(aetools.ComponentItem): class in inherits:aetools.ComponentItem
584 """file - a file on a disk or server """
585 want = 'file'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgi.py 69 logfp = None # File object to log to, if not None
72 """Write a log message, if there is a log file.
76 (initially), to dolog (once the log file has been opened), or to
82 will write "a: b" to the log file, followed by a newline.
84 If the global logfp is not None, it should be a file object to
88 giving a filename to open, in append mode. This file should be
89 world writable!!! If the file can't be opened, logging is
107 """Write a log message to the log file. See initlog() for docs."""
125 """Parse a query in the environment or from a file (default stdin)
129 fp : file pointer; default: sys.stdi
335 file = None variable in class:MiniFieldStorage
    [all...]
ftplib.py 3 Based on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds
92 To download a file, use ftp.retrlines('RETR ' + filename),
94 To upload a file, use ftp.storlines() or ftp.storbinary(),
95 which have an open file as argument (see their definitions
105 file = None variable in class:FTP
134 self.file = self.sock.makefile('rb')
183 line = self.file.readline()
230 '''Abort a file transfer. Uses out-of-band data.
449 """Store a file in binary mode. A new port is created for you.
453 fp: A file-like object with a read(num_bytes) method
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.3.2/
httpmime-4.3.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-api/1.5/
gmaven-runtime-api-1.5.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 5 * you may not use this file except in compliance with the License.
113 import java.io.File;
267 // Listen on resource file edits for updates to file inclusion
418 * Returns a Url file path to the javaDoc folder.
442 * Returns an image descriptor for the image file at the given
455 * @param file the file to be read
456 * @return the String read from the file, or null if there was an error
460 public static String readFile(@NonNull IFile file) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonXmlEditor.java 5 * you may not use this file except in compliance with the License.
109 IFile file = fileInput.getFile(); local
111 // Adjust the default file editor ID
113 IEditorDescriptor file_desc = IDE.getDefaultEditor(file);
129 IDE.setDefaultEditor(file, ID);
133 file.getFullPath());
136 // Now find the delegate for the file.
138 ResourceFolder resFolder = ResourceManager.getInstance().getResourceFolder(file);
142 // We lack any real resource information about that file.
161 "No valid Android XML Editor Delegate found for file %1$s [Res %2$s, type %3$s]"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 5 * you may not use this file except in compliance with the License.
259 private AttrsXmlParser getParser(ResourceFile file) {
264 AttrsXmlParser parser = mParserCache.get(file);
267 file.getFile().getOsLocation(),
270 mParserCache.put(file, parser);
295 for (ResourceFile file : resourceFiles) {
296 AttrsXmlParser attrsXmlParser = getParser(file);
310 timestamps.put(file, file.getFile().getModificationStamp());
350 * attrs.xml file in the same project
574 ResourceFile file = entry.getKey(); local
    [all...]

Completed in 772 milliseconds

<<41424344454647484950>>