Searched refs:file (Results 1 - 25 of 3153) sorted by relevance

1234567891011>>

/external/llvm/test/MC/AsmParser/
H A Ddirective_file-errors.s5 .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
/external/llvm/test/MC/ARM/
H A Dcoff-file.s7 .file "null-padded.asm"
8 // CHECK: (nx 1) {{0x[0-9]+}} .file
11 .file "eighteen-chars.asm"
13 // CHECK: (nx 1) {{0x[0-9]+}} .file
16 .file "multiple-auxiliary-entries.asm"
18 // CHECK: (nx 2) {{0x[0-9]+}} .file
23 // CHECK-SCN: Name: .file
31 // CHECK-SCN: Name: .file
39 // CHECK-SCN: Name: .file
/external/llvm/test/MC/COFF/
H A Dfile.s7 .file "null-padded.asm"
8 // CHECK: (nx 1) {{0x[0-9]+}} .file
11 .file "eighteen-chars.asm"
13 // CHECK: (nx 1) {{0x[0-9]+}} .file
16 .file "multiple-auxiliary-entries.asm"
18 // CHECK: (nx 2) {{0x[0-9]+}} .file
23 // CHECK-SCN: Name: .file
31 // CHECK-SCN: Name: .file
39 // CHECK-SCN: Name: .file
/external/llvm/test/MC/ELF/
H A Dfile.s5 .file "foo"
H A Dempty-dwarf-lines.s5 .file 1 "test.c"
/external/llvm/test/MC/MachO/
H A Dfile.s3 .file 1 "dir/foo"
H A Dloc.s3 .file 1 "foo"
/external/protobuf/vsprojects/
H A Dconvert2008to2005.sh9 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/src/tests/
H A Drun-get-files.sh3 # This file is part of elfutils.
6 # This file is free software; you can redistribute it and/or modify
26 file[0] = "???"
27 file[1] = "/home/drepper/gnu/new-bu/build/ttt/m.c"
30 file[0] = "???"
31 file[1] = "/home/drepper/gnu/new-bu/build/ttt/b.c"
32 file[2] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h"
33 file[3] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h"
34 file[4] = "/usr/include/bits/types.h"
35 file[
[all...]
/external/clang/test/Index/
H A Dcrash-recovery-code-complete.c3 // RUN: "-remap-file=%s,%S/Inputs/crash-recovery-code-complete-remap.c" \
12 // REQUIRES: can-remove-opened-file
14 #warning parsing original file
H A Dcrash-recovery-reparse.c3 // RUN: -remap-file="%s,%S/Inputs/crash-recovery-reparse-remap.c" \
11 #warning parsing original file
/external/clang/test/Preprocessor/
H A Dfile_to_include.h2 #warning file successfully included
/external/bison/lib/
H A Ddirname.h1 /* 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);
H A Ddirname-lgpl.c1 /* dirname.c -- return all but the last element in a file name
32 dir_len (char const *file) argument
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])
48 for (length = last_component (file) - file;
50 if (! ISSLASH (file[lengt
71 mdir_name(char const *file) argument
[all...]
H A Dstripslash.c1 /* stripslash.c -- remove redundant trailing slashes from a file name
24 was removed. This is useful when using file name completion from a
31 strip_trailing_slashes (char *file) argument
33 char *base = last_component (file);
37 /* last_component returns "" for file system roots, but we need to turn
40 base = file;
/external/zlib/src/
H A Dgzclose.c8 /* 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/sonic/
H A Dwave.c4 This file is part of the Sonic Library.
6 This file is licensed under the Apache 2.0 license.
10 This file supports read/write wave files.
28 /* Write a string to a file. */
30 waveFile file,
36 if(file->failed) {
39 bytesWritten = fwrite(bytes, sizeof(char), length, file->soundFile);
41 fprintf(stderr, "Unable to write to output file");
42 file->failed = 1;
44 file
29 writeBytes( waveFile file, void *bytes, int length) argument
48 writeString( waveFile file, char *string) argument
56 writeInt( waveFile file, int value) argument
71 writeShort( waveFile file, short value) argument
86 readBytes( waveFile file, void *bytes, int length) argument
98 readExactBytes( waveFile file, void *bytes, int length) argument
116 readInt( waveFile file) argument
131 readShort( waveFile file) argument
146 expectString( waveFile file, char *expectedString) argument
167 writeHeader( waveFile file, int sampleRate) argument
190 readHeader( waveFile file) argument
227 closeFile( waveFile file) argument
245 waveFile file; local
270 waveFile file; local
290 closeWaveFile( waveFile file) argument
325 readFromWaveFile( waveFile file, short *buffer, int maxSamples) argument
349 writeToWaveFile( waveFile file, short *buffer, int numSamples) argument
[all...]
/external/toybox/tests/
H A Dchmod.test22 touch file
31 if [ "$type" == file ]
37 type=file
48 rm -rf dir file && mkdir dir && touch file
49 testing "chmod 750 dir 640 file" \
50 "chmod 750 dir 640 file 2>/dev/null ||
51 ls -ld dir file | cut -d' ' -f 1 | cut -d. -f 1" "drwxr-x---\n-rwxr-x---\n" "" ""
53 rm -rf dir file && mkdir dir && touch file
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
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);
11 gzclose( gzFile file) argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
H A DFileSystem.java5 * you may not use this file except in compliance with the License.
27 * #SYSTEM} implementation, which uses the host machine's local file system. Alternate
31 * <p>All operations on a file system are racy. For example, guarding a call to {@link #source}
33 * The file may be moved between the two calls!
35 * <p>This interface is less ambitious than {@link java.nio.file.FileSystem} introduced in Java 7.
36 * It lacks important features like file watching, metadata, permissions, and disk space
41 /** The host machine's local file system. */
43 @Override public Source source(File file) throws FileNotFoundException {
44 return Okio.source(file);
47 @Override public Sink sink(File file) throw
106 source(File file) argument
112 sink(File file) argument
118 appendingSink(File file) argument
121 delete(File file) argument
124 exists(File file) argument
127 size(File file) argument
[all...]
/external/apache-http/android/src/com/android/internal/http/multipart/
H A DFilePartSource.java9 * 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
51 /** File part file. */
52 private File file = null; field in class:FilePartSource
54 /** File part file name. */
60 * @param file the FilePart source File.
62 * @throws FileNotFoundException if the file does not exist or
65 public FilePartSource(File file) throws FileNotFoundException { argument
66 this.file
87 FilePartSource(String fileName, File file) argument
[all...]
/external/vogar/src/vogar/tasks/
H A DRmTask.java5 * you may not use this file except in compliance with the License.
25 private final File file; field in class:RmTask
27 public RmTask(Rm rm, File file) { argument
28 super("rm " + file);
30 this.file = file;
34 rm.file(file);
/external/e2fsprogs/lib/ext2fs/
H A Dfileio.c2 * fileio.c --- Simple file I/O routines
7 * This file may be redistributed under the terms of the GNU Library
34 #define BMAP_BUFFER (file->buf + fs->blocksize)
40 ext2_file_t file; local
44 * Don't let caller create or open a file for writing if the
51 retval = ext2fs_get_mem(sizeof(struct ext2_file), &file);
55 memset(file, 0, sizeof(struct ext2_file));
56 file->magic = EXT2_ET_MAGIC_EXT2_FILE;
57 file->fs = fs;
58 file
92 ext2fs_file_get_fs(ext2_file_t file) argument
102 ext2fs_file_get_inode(ext2_file_t file) argument
110 ext2fs_file_get_inode_num(ext2_file_t file) argument
121 ext2fs_file_flush(ext2_file_t file) argument
158 sync_buffer_position(ext2_file_t file) argument
183 load_buffer(ext2_file_t file, int dontfill) argument
210 ext2fs_file_close(ext2_file_t file) argument
226 ext2fs_file_read(ext2_file_t file, void *buf, unsigned int wanted, unsigned int *got) argument
268 ext2fs_file_write(ext2_file_t file, const void *buf, unsigned int nbytes, unsigned int *written) argument
337 ext2fs_file_llseek(ext2_file_t file, __u64 offset, int whence, __u64 *ret_pos) argument
357 ext2fs_file_lseek(ext2_file_t file, ext2_off_t offset, int whence, ext2_off_t *ret_pos) argument
374 ext2fs_file_get_lsize(ext2_file_t file, __u64 *ret_size) argument
385 ext2fs_file_get_size(ext2_file_t file) argument
397 ext2fs_file_zero_past_offset(ext2_file_t file, ext2_off64_t offset) argument
447 ext2fs_file_set_size2(ext2_file_t file, ext2_off64_t size) argument
495 ext2fs_file_set_size(ext2_file_t file, ext2_off_t size) argument
[all...]
/external/toybox/kconfig/
H A Dutil.c11 /* file already present in list? If not add it */
12 struct file *file_lookup(const char *name)
14 struct file *file; local
16 for (file = file_list; file; file = file->next) {
17 if (!strcmp(name, file->name))
18 return file;
32 struct file *file; local
[all...]
/external/libmtp/examples/
H A Dfiles.c2 * \file files.c
26 static void dump_fileinfo(LIBMTP_file_t *file) argument
28 printf("File ID: %u\n", file->item_id);
29 if (file->filename != NULL)
30 printf(" Filename: %s\n", file->filename);
33 if (file->filesize == (uint32_t) -1) {
34 printf(" None. (abstract file, size = -1)\n");
37 printf(" File size %llu (0x%016I64X) bytes\n", file->filesize, file->filesize);
40 (long long unsigned int) file
105 LIBMTP_file_t *file, *tmp; local
[all...]

Completed in 1309 milliseconds

1234567891011>>