/external/webrtc/webrtc/tools/rtcbot/ |
test.js | 11 var fs = require('fs'); variable 139 fs.exists("test/reports/", function (exists) { 143 fs.mkdir("test/reports/", 0777, writeFile.bind(this)); 148 fs.writeFile("test/reports/" + this.outputFileName_ + "_" +
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pipe_aaline.c | 107 struct aaline_fragment_shader *fs; member in struct:aaline_stage 353 const struct pipe_shader_state *orig_fs = &aaline->fs->state; 384 aaline->fs->sampler_unit = transform.freeSampler; 386 aaline->fs->aaline_fs = aaline->driver_create_fs_state(pipe, &aaline_fs); 387 if (aaline->fs->aaline_fs == NULL) 390 aaline->fs->generic_attrib = transform.maxGeneric + 1; 531 if (!aaline->fs->aaline_fs && 536 aaline->driver_bind_fs_state(pipe, aaline->fs->aaline_fs); 703 aaline->fs->generic_attrib); 708 num_samplers = MAX2(num_samplers, aaline->fs->sampler_unit + 1) [all...] |
draw_pipe_clip.c | 575 const struct draw_fragment_shader *fs = stage->draw->fs.fragment_shader; local 582 * outputs and the FS inputs to get to the interpolation mode. 601 if (fs) { 602 for (i = 0; i < fs->info.num_inputs; i++) { 603 if (fs->info.input_semantic_name[i] == TGSI_SEMANTIC_COLOR) { 604 if (fs->info.input_interpolate[i] != TGSI_INTERPOLATE_COLOR) 605 indexed_interp[fs->info.input_semantic_index[i]] = fs->info.input_interpolate[i]; 630 /* Otherwise, search in the FS inputs, with a decent defaul [all...] |
/external/valgrind/tests/ |
vg_regtest.in | 227 my @fs; 251 push(@fs, $arg); 273 @fs = (); 275 push(@fs, $f) if (-d $f); 279 (0 != @fs) or die "No test files or directories specified\n"; 281 return @fs; 630 my @fs = glob "*"; 631 my $found_tests = (0 != (grep { $_ =~ /\.vgtest$/ } @fs)); 636 foreach my $f (@fs) { 697 my @fs = process_command_line() [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/ |
test_utils.js | 1 var fs = require('fs'), variable 70 var testSetFileDirs = fs.readdirSync(dataDirPath), 76 src = fs.readFileSync(srcFilePath).toString(), 77 expected = fs.readFileSync(expectedFilePath).toString(); 94 var testSetFileNames = fs.readdirSync(dataDirPath), 99 testSet = fs.readFileSync(filePath).toString(),
|
/prebuilts/go/darwin-x86/src/os/ |
stat_windows.go | 80 fs := &fileStat{name: basename(name)} 85 e = syscall.GetFileAttributesEx(namep, syscall.GetFileExInfoStandard, (*byte)(unsafe.Pointer(&fs.sys))) 89 fs.path = name 90 if !isAbs(fs.path) { 91 fs.path, e = syscall.FullPath(fs.path) 96 return fs, nil
|
/prebuilts/go/linux-x86/src/os/ |
stat_windows.go | 80 fs := &fileStat{name: basename(name)} 85 e = syscall.GetFileAttributesEx(namep, syscall.GetFileExInfoStandard, (*byte)(unsafe.Pointer(&fs.sys))) 89 fs.path = name 90 if !isAbs(fs.path) { 91 fs.path, e = syscall.FullPath(fs.path) 96 return fs, nil
|
/external/clang/unittests/Basic/ |
VirtualFileSystemTest.cpp | 20 using llvm::sys::fs::UniqueID; 116 void addRegularFile(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { 118 1024, sys::fs::file_type::regular_file, Perms); 122 void addDirectory(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { 124 0, sys::fs::file_type::directory_file, Perms); 130 0, sys::fs::file_type::symlink_file, sys::fs::all_all); 266 Lower->addDirectory("/both", sys::fs::owner_read) [all...] |
/external/opencv/ml/include/ |
ml.h | 538 virtual void write_params( CvFileStorage* fs ); 539 virtual void read_params( CvFileStorage* fs, CvFileNode* node ); 761 virtual void write_params( CvFileStorage* fs ); 762 virtual void read_params( CvFileStorage* fs, CvFileNode* node ); 850 virtual void read( CvFileStorage* fs, CvFileNode* node ); 851 virtual void write( CvFileStorage* fs, const char* name ); 854 virtual void read( CvFileStorage* fs, CvFileNode* node, 856 virtual void write( CvFileStorage* fs ); 888 virtual void write_node( CvFileStorage* fs, CvDTreeNode* node ); 889 virtual void write_split( CvFileStorage* fs, CvDTreeSplit* split ) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
gen_bitmap64.c | 89 errcode_t ext2fs_alloc_generic_bmap(ext2_filsys fs, errcode_t magic, 111 retval = ext2fs_get_num_dirs(fs, &num_dirs); 112 if (retval || num_dirs > (fs->super->s_inodes_count / 320)) 138 bitmap->fs = fs; 150 bitmap->cluster_bits = fs->cluster_ratio_bits; 165 retval = bitmap->bitmap_ops->new_bmap(fs, bitmap); 311 new_bmap->fs = src->fs; 756 errcode_t ext2fs_convert_subcluster_bitmap(ext2_filsys fs, [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
NamespaceMappings.java | 459 Stack fs = (Stack) m_namespaces.get(prefix); local 460 return fs; 469 Stack fs = new Stack(); local 470 m_namespaces.put(prefix, fs); 471 return fs;
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
android_browser_finder_unittest.py | 72 self.fs.CreateFile(self.expected_reference_build) 85 self.fs.CreateFile( 87 self.fs.CreateFile(self.expected_reference_build) 100 self.fs.CreateFile( 120 self.fs.CreateFile(
|
/external/clang/lib/Driver/ |
Compilation.cpp | 79 // llvm::sys::fs::remove into a removeFile and a removeDir and avoid the 85 if (!llvm::sys::fs::can_write(File) || !llvm::sys::fs::is_regular_file(File)) 88 if (std::error_code EC = llvm::sys::fs::remove(File)) { 90 // for it being regular before, and llvm::sys::fs::remove ignores ENOENT, 137 llvm::sys::fs::F_Append | 138 llvm::sys::fs::F_Text);
|
/external/icu/icu4c/source/test/iotest/ |
stream.cpp | 252 fstream fs(STANDARD_TEST_FILE, fstream::in | fstream::out | fstream::trunc); 259 fs << "EXAMPLE"; 260 fs.seekg(0); 263 if (!(fs >> dest)) { 276 fs.close();
|
/external/llvm/tools/dsymutil/ |
dsymutil.cpp | 104 llvm::raw_fd_ostream PL(InfoPlist, EC, llvm::sys::fs::F_Text); 156 llvm::sys::fs::perms::all_all)) { 172 return llvm::sys::fs::createUniqueFile(Model, ResultPath); 173 return llvm::sys::fs::createUniqueFile(Model, ResultFD, ResultPath); 242 std::string SDKPath = llvm::sys::fs::getMainExecutable(argv[0], MainAddr);
|
/frameworks/compile/mclinker/lib/Script/ |
InputCmd.cpp | 106 sys::fs::Path path; 117 if (!sys::fs::exists(path)) { 119 sys::fs::Path* p = 126 if (!sys::fs::exists(path)) 134 const sys::fs::Path* path = NULL;
|
/external/opencv3/modules/ml/src/ |
tree.cpp | [all...] |
lr.cpp | 101 virtual void write(FileStorage& fs) const; 571 void LogisticRegressionImpl::write(FileStorage& fs) const 574 if(fs.isOpened() == 0) 579 fs<<"classifier"<<desc.c_str(); 580 fs<<"alpha"<<this->params.alpha; 581 fs<<"iterations"<<this->params.num_iters; 582 fs<<"norm"<<this->params.norm; 583 fs<<"train_method"<<this->params.train_method; 586 fs<<"mini_batch_size"<<this->params.mini_batch_size; 588 fs<<"learnt_thetas"<<this->learnt_thetas [all...] |
/external/chromium-trace/catapult/catapult_base/catapult_base/ |
binary_manager_unittest.py | 150 self.fs.CreateFile(base_config_path, contents=json.dumps(fake_config)) 160 self.fs.CreateFile(self.expected_dep2_linux_file) 161 self.fs.CreateFile(self.expected_dep2_android_file)
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
uploader_unittest.py | 17 self.fs.CreateFile(self.local_path) 29 self.fs.RemoveObject(self.local_path) 63 self.fs.CreateFile(new_local_path)
|
/external/fsck_msdos/ |
fat.c | 74 checkdirty(int fs, struct bootblock *boot) 92 if (lseek(fs, off, SEEK_SET) != off) { 97 if (read(fs, buffer, boot->BytesPerSec) != boot->BytesPerSec) { 169 _readfat(int fs, struct bootblock *boot, int no, u_char **buffer) 185 if (lseek(fs, off, SEEK_SET) != off) { 190 if (read(fs, *buffer, boot->FATsecs * boot->BytesPerSec) 207 readfat(int fs, struct bootblock *boot, int no, struct fatEntry **fp) 216 if (!_readfat(fs, boot, no, &buffer)) 553 writefat(int fs, struct bootblock *boot, struct fatEntry *fat, int correct_fat) 603 if (!_readfat(fs, boot, boot->ValidFat >= 0 ? boot->ValidFat :0 [all...] |
/external/llvm/lib/Support/ |
Signals.cpp | 82 std::string MainExecutableName = sys::fs::getMainExecutable(nullptr, nullptr); 96 sys::fs::createTemporaryFile("symbolizer-input", "", InputFD, InputFile); 97 sys::fs::createTemporaryFile("symbolizer-output", "", OutputFile);
|
/hardware/intel/bootstub/ |
e820_bios.S | 98 movl %ecx, %fs 121 movl %eax, %fs 182 movl %ebx, %fs
|
/external/javassist/src/main/javassist/tools/reflect/ |
Reflection.java | 225 CtField[] fs = clazz.getDeclaredFields(); local 226 for (int i = 0; i < fs.length; ++i) { 227 CtField f = fs[i]; 357 CtField[] fs = clazz.getDeclaredFields(); local 358 for (int i = 0; i < fs.length; ++i) { 359 CtField f = fs[i];
|
/external/llvm/lib/Object/ |
IRObjectFile.cpp | 283 sys::fs::file_magic Type = sys::fs::identify_magic(Object.getBuffer()); 285 case sys::fs::file_magic::bitcode: 287 case sys::fs::file_magic::elf_relocatable: 288 case sys::fs::file_magic::macho_object: 289 case sys::fs::file_magic::coff_object: {
|