HomeSort by relevance Sort by last modified time
    Searched refs:file (Results 276 - 300 of 27862) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACfault.txt 23 file=wb_contspeech.pcm
28 $ISAC 32000 -F $testnr $INDIR/"$file" $OUTDIR/ft$testnr"$file" >> $LOGFILE
32 $ISAC 32000 -F 10 $INDIR/"$file" $OUTDIR/ft10_"$file" >> $LOGFILE
33 $ISAC 32000 -F 10 -PL 10 $INDIR/"$file" $OUTDIR/ft10plc_"$file" >> $LOGFILE
34 $ISAC 32000 -F 10 -NB 1 $INDIR/"$file" $OUTDIR/ft10nb1_"$file" >> $LOGFILE
35 $ISAC 32000 -F 10 -NB 2 -PL 10 $INDIR/"$file" $OUTDIR/ft10nb2_"$file" >> $LOGFIL
    [all...]
  /art/runtime/base/unix_file/
fd_file_test.cc 5 * you may not use this file except in compliance with the License.
44 FdFile file; local
45 EXPECT_EQ(-1, file.Fd());
46 EXPECT_FALSE(file.IsOpened());
47 EXPECT_TRUE(file.GetPath().empty());
51 std::string good_path(GetTmpPath("some-file.txt"));
52 FdFile file(good_path, O_CREAT | O_WRONLY, true);
53 ASSERT_TRUE(file.IsOpened());
54 EXPECT_GE(file.Fd(), 0);
55 EXPECT_TRUE(file.IsOpened())
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
TypeItem.java 5 * you may not use this file except in compliance with the License.
25 public void read(DexRandomAccessFile file) throws IOException {
26 typeIdx = file.readUShort();
30 public void write(DexRandomAccessFile file) throws IOException {
31 file.writeUShort(typeIdx);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialOutputFactory.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
27 * should not be deleted then call {@link #persistFile(File)} to ensure that they survive.
31 /** A simple tuple of a {@link File} and a {@link PrintWriter} for writing to that file. */
33 final File file; field in class:TrialOutputFactory.FileAndWriter
36 FileAndWriter(File file, PrintWriter writer) {
37 this.file = file
    [all...]
  /external/clang/test/Index/Inputs/
crash-recovery-reparse-remap.c 2 #warning parsing remapped file
  /external/clang/tools/scan-build-py/tests/functional/exec/
main.c 4 // This file is distributed under the University of Illinois Open Source
38 static FILE *fd = NULL;
61 void expected_out(const char *file) {
69 fprintf(fd, " \"command\": \"cc -c %s\",\n", file);
70 fprintf(fd, " \"file\": \"%s/%s\"\n", cwd, file);
74 void create_source(char *file) {
75 FILE *fd = fopen(file, "w");
115 char *const file = "execv.c" local
128 char *const file = "execve.c"; local
142 char *const file = "execvp.c"; local
155 char *const file = "execv_p.c"; local
168 char *const file = "execvpe.c"; local
182 char *const file = "exect.c"; local
196 char *const file = "execl.c"; local
208 char *const file = "execlp.c"; local
220 char *const file = "execle.c"; local
233 char *const file = "posix_spawn.c"; local
251 char *const file = "posix_spawnp.c"; local
    [all...]
  /external/curl/lib/
checksrc.pl 11 # This software is licensed as described in the file COPYING, which
17 # furnished to do so, under the terms of the COPYING file.
30 my $file;
55 'COPYRIGHT' => 'file missing a copyright statement',
58 'OPENCOMMENT' => 'file ended with a /* comment still "open"'
72 my ($name, $num, $col, $file, $line, $msg, $error) = @_;
92 enable_warn($name, $line, $file, $l);
115 print "$file:$num:$col: $w: $msg ($name)\n";
124 $file = shift @ARGV;
128 if($file =~ /-D(.*)/)
    [all...]
  /external/deqp/execserver/
xsDefs.cpp 8 * you may not use this file except in compliance with the License.
20 * \file
31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
37 msg << " at " << file << ":" << line;
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/deqp/executor/
xeDefs.cpp 8 * you may not use this file except in compliance with the License.
20 * \file
31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
37 msg << " at " << file << ":" << line;
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/icu/icu4c/as_is/os400/
fixup-icu.sh 35 for file in `find ./icu/source/data/unidata \( -name \*.txt -print \)`; do
36 bom8=`od -t x1 -N 3 $file|\
40 echo "file $file bom /${bom8}/"
43 file="`echo $file | cut -d / -f2-`"
44 echo "converting ${file}"
48 binary_files="$binary_files $file";
54 binary_files="$file";
  /external/ltp/lib/
tst_dir_is_empty.c 35 const char *file = entry->d_name; local
37 if (!strcmp(file, "..") || !strcmp(file, "."))
41 tst_resm(TINFO, "found a file: %s", file);
  /external/selinux/libsepol/tests/policies/test-deps/
modreq-bool-opt.conf 4 class file {read write};
20 allow a_t b_t : file { read write };
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliFileTypeTest.java 43 PsiFile file = myFixture.addFileToProject("my/pkg/blah.smali", ".class public Lmy/pkg/blah; .super Ljava/lang/Object;"); local
44 Assert.assertEquals(SmaliFileType.INSTANCE, file.getVirtualFile().getFileType());
45 Assert.assertEquals(SmaliFileType.INSTANCE, file.getFileType());
46 Assert.assertEquals(SmaliLanguage.INSTANCE, file.getLanguage());
  /external/strace/tests/
xstatfs.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
31 printf("%s(" SYSCALL_ARG_FMT ", ", SYSCALL_NAME, SYSCALL_ARG(file, desc))
xstatfs64.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), size, ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
32 SYSCALL_ARG(file, desc), (unsigned) size)
  /external/strace/tests-m32/
xstatfs.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
31 printf("%s(" SYSCALL_ARG_FMT ", ", SYSCALL_NAME, SYSCALL_ARG(file, desc))
xstatfs64.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), size, ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
32 SYSCALL_ARG(file, desc), (unsigned) size)
  /external/strace/tests-mx32/
xstatfs.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
31 printf("%s(" SYSCALL_ARG_FMT ", ", SYSCALL_NAME, SYSCALL_ARG(file, desc))
xstatfs64.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), size, ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
32 SYSCALL_ARG(file, desc), (unsigned) size)
  /external/swiftshader/third_party/LLVM/test/MC/MachO/
empty-dwarf-lines.s 8 .file 1 "test.c"
  /external/toybox/tests/
diff.test 20 expected='--- tree1/file
21 +++ tree2/file
27 echo foo > tree1/file
28 echo food > tree2/file
ln.test 11 echo file1 > file
12 testing "create_hardlink" "ln file hlink && [ file -ef hlink ] &&
14 testing "create_softlink" "ln -s file slink && [ -L slink ] &&
15 readlink slink" "file\n" "" ""
19 testing "force_create_hardlink" "ln -f file hlink &&
20 [ file -ef hlink ] && cat hlink 2>/dev/null" "file1\n" "" ""
23 testing "force_create_softlink" "ln -f -s file slink &&
24 [ -L slink ] && readlink slink" "file\n" "" ""
29 testing "preserves_hardlinks" "ln file hlink 2>/dev/null || echo 'yes'"
    [all...]
  /external/vboot_reference/scripts/image_signing/
ensure_no_nonrelease_files.sh 5 # found in the LICENSE file.
31 # with a .config file extension, ie ensure_no_nonrelease_files.config.
43 for file in ${RELEASE_FILE_BLACKLIST[@]}; do
44 if [ -e "$rootfs/$file" ]; then
45 echo "FAIL: $file exists in this image!"
46 ls -al "$rootfs/$file"
  /hardware/intel/common/libva/
style_unify 2 file=$(find . -name "*.[ch]" -o -name "*.cpp")
3 for i in $file
  /libcore/ojluni/src/main/java/java/io/
FileWriter.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
35 * <p>Whether or not a file is available or may be created depends upon the
36 * underlying platform. Some platforms, in particular, allow a file to be
37 * opened for writing by only one <tt>FileWriter</tt> (or other file-writing
39 * will fail if the file involved is already open.
55 * Constructs a FileWriter object given a file name.
58 * @throws IOException if the named file exists but is a directory rathe
    [all...]

Completed in 277 milliseconds

<<11121314151617181920>>