HomeSort by relevance Sort by last modified time
    Searched refs:file (Results 1 - 25 of 7280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/AsmParser/
directive_file-errors.s 5 .file "hello"
6 .file 1 "world"
8 // CHECK: .file "hello"
9 // CHECK-ERRORS:6:9: error: input can't have .file dwarf directives when -g is used to generate dwarf debug info for assembly code
directive_file.s 3 .file "hello"
4 .file 1 "world"
5 .file 2 "directory" "file"
7 # CHECK: .file "hello"
8 # CHECK: .file 1 "world"
9 # CHECK: .file 2 "directory" "file"
  /external/llvm/test/MC/ELF/
file.s 5 .file "foo"
empty-dwarf-lines.s 5 .file 1 "test.c"
  /external/llvm/test/MC/MachO/
file.s 3 .file 1 "dir/foo"
loc.s 3 .file 1 "foo"
  /external/protobuf/vsprojects/
convert2008to2005.sh 9 for file in *.sln; do
10 echo "downgrading $file..."
12 s/Visual Studio 2008/Visual Studio 2005/g;' $file
15 for file in *.vcproj; do
16 echo "downgrading $file..."
17 sed -i -re 's/Version="9.00"/Version="8.00"/g;' $file
  /external/elfutils/tests/
run-get-files.sh 3 # This file is part of Red Hat elfutils.
34 file[0] = "???"
35 file[1] = "/home/drepper/gnu/new-bu/build/ttt/m.c"
38 file[0] = "???"
39 file[1] = "/home/drepper/gnu/new-bu/build/ttt/b.c"
40 file[2] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h"
41 file[3] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h"
42 file[4] = "/usr/include/bits/types.h"
43 file[5] = "/usr/include/bits/sched.h"
44 file[6] = "/usr/include/bits/pthreadtypes.h
    [all...]
  /external/clang/test/Index/
crash-recovery-code-complete.c 3 // RUN: "-remap-file=%s;%S/Inputs/crash-recovery-code-complete-remap.c" \
11 #warning parsing original file
crash-recovery-reparse.c 3 // RUN: -remap-file="%s;%S/Inputs/crash-recovery-reparse-remap.c" \
11 #warning parsing original file
  /external/clang/test/Preprocessor/
file_to_include.h 2 #warning file successfully included
  /external/bison/lib/
dirname.h 1 /* Take file names apart into directory and base names.
35 char *base_name (char const *file);
36 char *dir_name (char const *file);
39 char *mdir_name (char const *file);
40 size_t base_len (char const *file) _GL_ATTRIBUTE_PURE;
41 size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
42 char *last_component (char const *file) _GL_ATTRIBUTE_PURE;
44 bool strip_trailing_slashes (char *file);
dirname-lgpl.c 1 /* dirname.c -- return all but the last element in a file name
26 /* Return the length of the prefix of FILE that will be used by
27 dir_name. If FILE is in the working directory, this returns zero
28 even though 'dir_name (FILE)' will return ".". Works properly even
32 dir_len (char const *file)
34 size_t prefix_length = FILE_SYSTEM_PREFIX_LEN (file);
40 && ISSLASH (file[prefix_length]))
41 : (ISSLASH (file[0])
43 && ISSLASH (file[1]) && ! ISSLASH (file[2]
    [all...]
  /external/zlib/src/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
  /external/kernel-headers/original/linux/
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...]
  /bionic/libc/bionic/
assert.cpp 35 void __assert(const char* file, int line, const char* failed_expression) {
36 __libc_fatal("%s:%d: assertion \"%s\" failed", file, line, failed_expression);
40 void __assert2(const char* file, int line, const char* function, const char* failed_expression) {
41 __libc_fatal("%s:%d: %s: assertion \"%s\" failed", file, line, function, failed_expression);
  /external/webkit/Source/WebKit/mac/Misc/
OldWebAssertions.c 29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion)
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...)
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/exports/
gendef.pl 7 while ( ($file = shift(@ARGV)) ) {
8 if ( ! defined(open(FILE, $file)) ) {
9 warn "Couldn't open $file: $!\n";
13 $file =~ s,.*/,,;
14 while (<FILE>) {
21 close(FILE);
  /external/webkit/LayoutTests/http/tests/appcache/resources/
versioned-manifest.php 6 function getCount($file)
8 if (!file_exists($file)) {
9 file_put_contents($file, "0");
12 return file_get_contents($file);
15 function stepCounter($file)
17 if (file_exists($file)) {
18 $value = getCount($file);
19 file_put_contents($file, ++$value);
counter.php 6 function stepCounter($file)
8 if (!file_exists($file)) {
9 file_put_contents($file, "0");
12 $value = file_get_contents($file);
13 file_put_contents($file, ++$value);
  /ndk/sources/host-tools/sed-4.2.1/lib/
dirname.c 1 /* dirname.c -- return all but the last element in a file name
26 /* Return the length of the prefix of FILE that will be used by
27 dir_name. If FILE is in the working directory, this returns zero
28 even though `dir_name (FILE)' will return ".". Works properly even
32 dir_len (char const *file)
34 size_t prefix_length = FILE_SYSTEM_PREFIX_LEN (file);
40 && ISSLASH (file[prefix_length]))
41 : (ISSLASH (file[0])
43 && ISSLASH (file[1]) && ! ISSLASH (file[2]
    [all...]
  /cts/tools/cfassembler/src/dxconvext/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 * File I/O utilities.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName non-null; name of the file to read
39 * @return non-null; contents of the file
42 File file = new File(fileName); local
43 return readFile(file);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 * File I/O utilities.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName {@code non-null;} name of the file to read
39 * @return {@code non-null;} contents of the file
42 File file = new File(fileName); local
43 return readFile(file);
    [all...]
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePartSource.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
34 import java.io.File;
41 * A PartSource that reads from a File.
51 /** File part file. */
52 private File file = null; field in class:FilePartSource
54 /** File part file name. *
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
SharedBufferQt.cpp 38 QFile file(fileName);
39 if (!file.exists() || !file.open(QFile::ReadOnly))
42 Vector<char> buffer(file.size());
43 file.read(buffer.data(), buffer.size());

Completed in 623 milliseconds

1 2 3 4 5 6 7 8 91011>>