HomeSort by relevance Sort by last modified time
    Searched refs:filename (Results 151 - 175 of 8141) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libxml2/os400/dlfcn/
dlfcn.h 27 extern void * dlopen(const char * filename, int flag);
  /external/llvm/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
  /external/mesa3d/src/mesa/main/
debug.h 62 _mesa_dump_color_buffer(const char *filename);
65 _mesa_dump_depth_buffer(const char *filename);
68 _mesa_dump_stencil_buffer(const char *filename);
71 _mesa_dump_image(const char *filename, const void *image, GLuint w, GLuint h,
  /external/opencv/otherlibs/highgui/
grfmt_bmp.h 61 GrFmtBmpReader( const char* filename );
83 GrFmtBmpWriter( const char* filename );
102 GrFmtReader* NewReader( const char* filename );
103 GrFmtWriter* NewWriter( const char* filename );
grfmt_png.h 56 GrFmtPngReader( const char* filename );
78 GrFmtPngWriter( const char* filename );
96 GrFmtReader* NewReader( const char* filename );
97 GrFmtWriter* NewWriter( const char* filename );
grfmt_pxm.h 53 GrFmtPxMReader( const char* filename );
76 GrFmtPxMWriter( const char* filename );
97 GrFmtReader* NewReader( const char* filename );
98 GrFmtWriter* NewWriter( const char* filename );
  /external/perf_data_converter/src/quipper/
file_utils.h 17 bool FileToBuffer(const string& filename, std::vector<char>* contents);
22 bool BufferToFile(const string& filename, const CharContainer& contents) {
23 FILE* fp = fopen(filename.c_str(), "wb");
37 bool FileExists(const string& filename);
  /external/python/cpython2/Demo/scripts/
update.py 4 # The input file contains lines of the form <filename>:<lineno>:<text>,
17 def __init__(self, filename):
18 self.filename = filename
21 self.lines = open(filename, 'r').readlines()
23 print '*** Can\'t open "%s":' % filename, msg
26 print 'diffing', self.filename
30 print 'no changes to', self.filename
33 os.rename(self.filename, self.filename + '~'
    [all...]
  /external/python/cpython2/PC/os2emx/
dlfcn.h 40 void *dlopen(char *filename, int flags);
  /external/python/cpython2/Tools/scripts/
untabify.py 23 for filename in args:
24 process(filename, tabsize)
26 def process(filename, tabsize, verbose=True):
28 f = open(filename)
32 print "%r: I/O error: %s" % (filename, msg)
37 backup = filename + "~"
43 os.rename(filename, backup)
46 with open(filename, "w") as f:
49 print filename
  /external/python/cpython3/Tools/scripts/
untabify.py 24 for filename in args:
25 process(filename, tabsize)
28 def process(filename, tabsize, verbose=True):
30 with tokenize.open(filename) as f:
34 print("%r: I/O error: %s" % (filename, msg))
39 backup = filename + "~"
45 os.rename(filename, backup)
48 with open(filename, "w", encoding=encoding) as f:
51 print(filename)
  /external/skia/tests/
OSPathTest.cpp 14 * Will use SkOSPath::Join to append filename to dir, test that it works correctly,
19 * @param filename String representing the basename of a file. Must NOT
23 SkString filename) {
24 // If filename contains SkOSPath::SEPARATOR, the tests will fail.
25 SkASSERT(!filename.contains(SkOSPath::SEPARATOR));
30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str());
34 size_t expectedSize = dir.size() + filename.size();
43 // basename should be the same as filename
44 REPORTER_ASSERT(reporter, basename.equals(filename));
60 // Now take the basename of filename, which should be the same as filename
    [all...]
  /external/skqp/tests/
OSPathTest.cpp 14 * Will use SkOSPath::Join to append filename to dir, test that it works correctly,
19 * @param filename String representing the basename of a file. Must NOT
23 SkString filename) {
24 // If filename contains SkOSPath::SEPARATOR, the tests will fail.
25 SkASSERT(!filename.contains(SkOSPath::SEPARATOR));
30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str());
34 size_t expectedSize = dir.size() + filename.size();
43 // basename should be the same as filename
44 REPORTER_ASSERT(reporter, basename.equals(filename));
60 // Now take the basename of filename, which should be the same as filename
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
  /external/webrtc/webrtc/base/
winfirewall.h 38 bool QueryAuthorized(const char* filename, bool* authorized) const;
39 bool QueryAuthorizedW(const wchar_t* filename, bool* authorized) const;
41 bool AddApplication(const char* filename, const char* friendly_name,
43 bool AddApplicationW(const wchar_t* filename, const wchar_t* friendly_name,
  /frameworks/base/tools/streaming_proto/
Errors.h 15 Error(const string& filename, int lineno, const char* message);
17 string filename; member in struct:android::stream_proto::Error
29 void Add(const string& filename, int lineno, const char* format, ...);
39 void AddImpl(const string& filename, int lineno, const char* format, va_list ap);
  /packages/apps/Messaging/build/
process_style_output.py 31 filename = match.group("file"); variable
33 filename = filename.replace(args.omit, "") variable
37 print " " + filename + ':' + match.group("line") + (match.group("column") if match.group("column") else "")
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
jsoncheckertest.cpp 21 static char* ReadFile(const char* filename, size_t& length) {
32 sprintf(buffer, paths[i], filename);
52 char filename[256]; local
61 sprintf(filename, "fail%d.json", i);
63 char* json = ReadFile(filename, length);
65 printf("jsonchecker file %s not found", filename);
82 sprintf(filename, "pass%d.json", i);
84 char* json = ReadFile(filename, length);
86 printf("jsonchecker file %s not found", filename);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AssetFileAddress.java 34 public AssetFileAddress(final String filename, final long offset, final long length) {
35 mFilename = filename;
45 public static AssetFileAddress makeFromFileName(final String filename) {
46 if (null == filename) return null;
47 return makeFromFile(new File(filename));
50 public static AssetFileAddress makeFromFileNameAndOffset(final String filename,
52 if (null == filename) return null;
53 final File f = new File(filename);
55 return new AssetFileAddress(filename, offset, length);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]

Completed in 2203 milliseconds

1 2 3 4 5 67 8 91011>>