HomeSort by relevance Sort by last modified time
    Searched defs:existed (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Support/
FileUtilities.h 54 bool existed; local
55 sys::fs::remove(Filename.str(), existed);
65 bool existed; local
66 sys::fs::remove(Filename.str(), existed);
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 38 bool existed; local
39 llvm::sys::fs::remove(infoFile, existed);
108 bool existed;
109 if (fs::create_directory(outputDir, existed) != llvm::errc::success)
  /external/clang/lib/Frontend/
CompilerInstance.cpp 424 bool existed; local
425 llvm::sys::fs::remove(it->TempFilename, existed);
437 bool existed; local
438 llvm::sys::fs::remove(it->TempFilename, existed);
763 bool Existed;
764 llvm::sys::fs::remove(LockFileName, Existed);
825 bool Existed;
826 llvm::sys::fs::remove(UniqueLockFileName.c_str(), Existed);
851 bool Existed;
852 llvm::sys::fs::remove(UniqueLockFileName.str(), Existed);
    [all...]
  /external/opencv/ml/src/
mlsvm.cpp 478 bool existed = row->data != 0;
481 if( existed || cache_size <= 0 )
483 CvSVMKernelRow* del_row = existed ? row : lru_list.prev;
504 if( !existed )
510 *_existed = existed;
516 float* CvSVMSolver::get_row_svc( int i, float* row, float*, bool existed )
518 if( !existed )
569 bool existed = false; local
570 float* row = get_row_base( i, &existed );
571 return (this->*get_row_func)( i, row, dst, existed );
    [all...]

Completed in 56 milliseconds