Searched defs:file (Results 26 - 50 of 1831) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/safe_browsing/
H A Ddownload_protection_util.cc3 // found in the LICENSE file.
13 bool IsArchiveFile(const base::FilePath& file) { argument
15 return file.MatchesExtension(FILE_PATH_LITERAL(".zip"));
18 bool IsBinaryFile(const base::FilePath& file) { argument
21 file.MatchesExtension(FILE_PATH_LITERAL(".bas")) ||
22 file.MatchesExtension(FILE_PATH_LITERAL(".bat")) ||
23 file.MatchesExtension(FILE_PATH_LITERAL(".cab")) ||
24 file.MatchesExtension(FILE_PATH_LITERAL(".cmd")) ||
25 file.MatchesExtension(FILE_PATH_LITERAL(".com")) ||
26 file
46 GetDownloadType( const base::FilePath& file) argument
[all...]
/external/chromium_org/skia/ext/
H A Dgoogle_logging.cc3 // found in the LICENSE file.
5 // This file provides integration with Google-style "base/logging.h" assertions
6 // for Skia SkASSERT. If you don't want this, you can link with another file
13 void SkDebugf_FileLine(const char* file, int line, bool fatal, argument
22 logging::LogMessage(file, line,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8FileCustom.cpp81 RefPtrWillBeRawPtr<File> file = File::create(fileName, properties.lastModified(), BlobDataHandle::create(blobData.release(), fileSize)); local
82 v8SetReturnValue(info, file.release());
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDOMFileSystemBaseTest.cpp3 // found in the LICENSE file.
36 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypeExternal, "DOMFileSystemBaseTest.cpp"); local
37 EXPECT_TRUE(file);
38 EXPECT_TRUE(file->hasBackingFile());
39 EXPECT_EQ(File::IsUserVisible, file->userVisibility());
40 EXPECT_EQ("DOMFileSystemBaseTest.cpp", file->name());
41 EXPECT_EQ(m_filePath, file->path());
48 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypeTemporary, "UserVisibleName.txt"); local
49 EXPECT_TRUE(file);
50 EXPECT_TRUE(file
60 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypePersistent, "UserVisibleName.txt"); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCommon.cpp38 void failedAssertion(const char* file, int line, const char* function, const char* assertion) argument
40 WTFReportAssertionFailure(file, line, function, assertion);
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_d2.c81 int X509_STORE_load_locations(X509_STORE *ctx, const char *file, argument
86 if (file != NULL)
90 if (X509_LOOKUP_load_file(lookup,file,X509_FILETYPE_PEM) != 1)
100 if ((path == NULL) && (file == NULL))
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxstats.h5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
28 FILE *file; member in struct:__anon13230
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkHRESULT.cpp5 * found in the LICENSE file.
12 void SkTraceHR(const char* file, unsigned long line, HRESULT hr, const char* msg) { argument
16 SkDebugf("%s(%lu) : error 0x%x: ", file, line, hr);
/external/chromium_org/third_party/webrtc/base/
H A Dplatform_file.cc5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
24 FILE* FdopenPlatformFileForWriting(PlatformFile file) { argument
25 if (file == kInvalidPlatformFileValue)
27 int fd = _open_osfhandle(reinterpret_cast<intptr_t>(file), 0);
34 bool ClosePlatformFile(PlatformFile file) { argument
35 return CloseHandle(file) != 0;
40 FILE* FdopenPlatformFileForWriting(PlatformFile file) {
41 return fdopen(file, "
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeDefs.cpp8 * you may not use this file except in compliance with the License.
20 * \file
32 void throwRuntimeError (const char* message, const char* expr, const char* file, int line) argument
38 msg << " at " << file << ":" << line;
/external/libvpx/libvpx/
H A Dvpxstats.h5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
28 FILE *file; member in struct:__anon24999
/external/nanopb-c/tests/basic_stream/
H A Dencode_stream.c12 FILE *file = (FILE*) stream->state; local
13 return fwrite(buf, 1, count, file) == count;
/external/openssl/crypto/x509/
H A Dx509_d2.c83 int X509_STORE_load_locations(X509_STORE *ctx, const char *file, argument
88 if (file != NULL)
92 if (X509_LOOKUP_load_file(lookup,file,X509_FILETYPE_PEM) != 1)
102 if ((path == NULL) && (file == NULL))
/external/oprofile/libutil/
H A Dop_lockfile.c2 * @file op_lockfile.c
6 * @remark Read the file COPYING
22 static pid_t op_read_lock_file(char const * file) argument
27 fp = fopen(file, "r");
42 int op_write_lock_file(char const * file) argument
46 if (op_file_readable(file)) {
47 pid_t pid = op_read_lock_file(file);
51 int err = unlink(file);
52 fprintf(stderr, "Removing stale lock file %s\n",
53 file);
[all...]
/external/skia/src/utils/win/
H A DSkHRESULT.cpp5 * found in the LICENSE file.
12 void SkTraceHR(const char* file, unsigned long line, HRESULT hr, const char* msg) { argument
16 SkDebugf("%s(%lu) : error 0x%x: ", file, line, hr);
/external/srec/portable/src/
H A DpLastError.c7 * you may not use this file except in compliance with the License. *
23 void printGetLastErrorInternal(const LCHAR* text, char* file, int line) argument
48 pfprintf(PSTDERR, L("[%s:%d] %s: %s\n"), file, line, text, msg);
58 pfprintf(PSTDERR, "[%s:%d] %s, errno = %x\n", file, line, text, err);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
57 public void addContents(DexFile file) { argument
58 MixedItemSection wordData = file.getWordData();
71 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
H A DFieldIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a field reference inside a Dalvik file.
42 public void addContents(DexFile file) { argument
43 super.addContents(file);
45 TypeIdsSection typeIds = file.getTypeIds();
60 protected int getTypoidIdx(DexFile file) { argument
61 TypeIdsSection typeIds = file.getTypeIds();
H A DHeaderItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * File header section of a {@code .dex} file.
50 public void addContents(DexFile file) { argument
56 public void writeTo(DexFile file, AnnotatedOutput out) { argument
57 int mapOff = file.getMap().getFileOffset();
58 Section firstDataSection = file.getFirstDataSection();
59 Section lastDataSection = file.getLastDataSection();
64 String magic = file.getDexOptions().getMagic();
71 Hex.u4(file
[all...]
H A DHeaderSection.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * File header section of a {@code .dex} file.
33 * Constructs an instance. The file offset is initially unknown.
35 * @param file {@code non-null;} file that this instance is part of
37 public HeaderSection(DexFile file) { argument
38 super(null, file, 4);
H A DItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
23 * repeated piece of a Dalvik file.
59 * This will <i>not</i> add an item to the file for this instance itself
65 * @param file {@code non-null;} the file to populate
67 public abstract void addContents(DexFile file); argument
76 * @param file {@code non-null;} the file to use for reference
79 public abstract void writeTo(DexFile file, AnnotatedOutpu argument
[all...]
H A DMemberIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
27 * Dalvik file.
52 public void addContents(DexFile file) { argument
53 super.addContents(file);
55 StringIdsSection stringIds = file.getStringIds();
61 public final void writeTo(DexFile file, AnnotatedOutput out) { argument
62 TypeIdsSection typeIds = file.getTypeIds();
63 StringIdsSection stringIds = file.getStringIds();
67 int typoidIdx = getTypoidIdx(file);
90 getTypoidIdx(DexFile file) argument
[all...]
H A DMethodIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a method reference inside a Dalvik file.
42 public void addContents(DexFile file) { argument
43 super.addContents(file);
45 ProtoIdsSection protoIds = file.getProtoIds();
60 protected int getTypoidIdx(DexFile file) { argument
61 ProtoIdsSection protoIds = file.getProtoIds();
H A DStringDataItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Representation of string data for a particular string, in a Dalvik file.
65 public void addContents(DexFile file) { argument
71 public void writeTo0(DexFile file, AnnotatedOutput out) { argument
H A DTypeIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Representation of a type reference inside a Dalvik file.
52 public void addContents(DexFile file) { argument
53 file.getStringIds().intern(getDefiningClass().getDescriptor());
58 public void writeTo(DexFile file, AnnotatedOutput out) { argument
61 int idx = file.getStringIds().indexOf(descriptor);

Completed in 5059 milliseconds

1234567891011>>