Searched refs:file (Results 76 - 100 of 9296) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Ddo-webcore-rename80 my $file = $_;
83 if ($directoriesToIgnore{$file} or $file =~ /^\../ or $file =~ /^ChangeLog/) {
89 return if -d $file;
185 my $file = shift;
192 # time is to avoid accidental file renamings for short, non-DOM renames.
195 $newFile = "$1$renames{$2}$3" if $file =~ /^(.*\/\w*)($key)(\w*\.\w+)$/;
201 $file = "$1$renames{$2}$3" if $file
[all...]
/external/chromium_org/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.c32 # error "This file should be built as pure C to avoid name mangling"
74 const char *file, int line, const volatile void *lock)
78 const char *file, int line, const volatile void *lock)
82 const char *file, int line, const volatile void *lock, long is_w)
86 const char *file, int line, const volatile void *lock, long is_w)
90 const char *file, int line, const volatile void *barrier, long count,
95 const char *file, int line, const volatile void *barrier)
99 const char *file, int line, const volatile void *barrier)
103 const char *file, int line, const volatile void *barrier)
107 const char *file, in
73 AnnotateRWLockCreate( const char *file, int line, const volatile void *lock) argument
77 AnnotateRWLockDestroy( const char *file, int line, const volatile void *lock) argument
81 AnnotateRWLockAcquired( const char *file, int line, const volatile void *lock, long is_w) argument
85 AnnotateRWLockReleased( const char *file, int line, const volatile void *lock, long is_w) argument
89 AnnotateBarrierInit( const char *file, int line, const volatile void *barrier, long count, long reinitialization_allowed) argument
94 AnnotateBarrierWaitBefore( const char *file, int line, const volatile void *barrier) argument
98 AnnotateBarrierWaitAfter( const char *file, int line, const volatile void *barrier) argument
102 AnnotateBarrierDestroy( const char *file, int line, const volatile void *barrier) argument
106 AnnotateCondVarWait( const char *file, int line, const volatile void *cv, const volatile void *lock) argument
111 AnnotateCondVarSignal( const char *file, int line, const volatile void *cv) argument
115 AnnotateCondVarSignalAll( const char *file, int line, const volatile void *cv) argument
119 AnnotateHappensBefore( const char *file, int line, const volatile void *obj) argument
123 AnnotateHappensAfter( const char *file, int line, const volatile void *obj) argument
127 AnnotatePublishMemoryRange( const char *file, int line, const volatile void *address, long size) argument
131 AnnotateUnpublishMemoryRange( const char *file, int line, const volatile void *address, long size) argument
135 AnnotatePCQCreate( const char *file, int line, const volatile void *pcq) argument
139 AnnotatePCQDestroy( const char *file, int line, const volatile void *pcq) argument
143 AnnotatePCQPut( const char *file, int line, const volatile void *pcq) argument
147 AnnotatePCQGet( const char *file, int line, const volatile void *pcq) argument
151 AnnotateNewMemory( const char *file, int line, const volatile void *mem, long size) argument
155 AnnotateExpectRace( const char *file, int line, const volatile void *mem, const char *description) argument
160 AnnotateFlushExpectedRaces( const char *file, int line) argument
164 AnnotateBenignRace( const char *file, int line, const volatile void *mem, const char *description) argument
169 AnnotateBenignRaceSized( const char *file, int line, const volatile void *mem, long size, const char *description) argument
174 AnnotateMutexIsUsedAsCondVar( const char *file, int line, const volatile void *mu) argument
178 AnnotateMutexIsNotPHB( const char *file, int line, const volatile void *mu) argument
182 AnnotateTraceMemory( const char *file, int line, const volatile void *arg) argument
186 AnnotateThreadName( const char *file, int line, const char *name) argument
190 AnnotateIgnoreReadsBegin( const char *file, int line) argument
194 AnnotateIgnoreReadsEnd( const char *file, int line) argument
198 AnnotateIgnoreWritesBegin( const char *file, int line) argument
202 AnnotateIgnoreWritesEnd( const char *file, int line) argument
206 AnnotateIgnoreSyncBegin( const char *file, int line) argument
210 AnnotateIgnoreSyncEnd( const char *file, int line) argument
214 AnnotateEnableRaceDetection( const char *file, int line, int enable) argument
218 AnnotateNoOp( const char *file, int line, const volatile void *arg) argument
222 AnnotateFlushState( const char *file, int line) argument
[all...]
/external/chromium_org/gpu/gles2_conform_support/
H A Dgenerate_gles2_conform_tests.py4 # found in the LICENSE file.
13 """Reads a file, removing blank lines and lines that start with #"""
14 file = open(filename, "r")
15 raw_lines = file.readlines()
16 file.close()
25 def GenerateTests(file):
31 file.write("""
37 file.write("""
55 file = open(os.path.join(dir, 'gles2_conform_test_autogen.cc'), 'wb')
56 GenerateTests(file)
[all...]
/external/chromium_org/third_party/ots/src/
H A Dcvt.cc3 // found in the LICENSE file.
12 bool ots_cvt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
16 file->cvt = cvt;
35 bool ots_cvt_should_serialise(OpenTypeFile *file) { argument
36 if (!file->glyf) {
39 return g_transcode_hints && file->cvt;
42 bool ots_cvt_serialise(OTSStream *out, OpenTypeFile *file) { argument
43 const OpenTypeCVT *cvt = file->cvt;
52 void ots_cvt_free(OpenTypeFile *file) { argument
53 delete file
[all...]
H A Dfpgm.cc3 // found in the LICENSE file.
12 bool ots_fpgm_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
16 file->fpgm = fpgm;
31 bool ots_fpgm_should_serialise(OpenTypeFile *file) { argument
32 if (!file->glyf) return false; // this table is not for CFF fonts.
33 return g_transcode_hints && file->fpgm;
36 bool ots_fpgm_serialise(OTSStream *out, OpenTypeFile *file) { argument
37 const OpenTypeFPGM *fpgm = file->fpgm;
46 void ots_fpgm_free(OpenTypeFile *file) { argument
47 delete file
[all...]
H A Dprep.cc3 // found in the LICENSE file.
12 bool ots_prep_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
16 file->prep = prep;
31 bool ots_prep_should_serialise(OpenTypeFile *file) { argument
32 if (!file->glyf) return false; // this table is not for CFF fonts.
33 return g_transcode_hints && file->prep;
36 bool ots_prep_serialise(OTSStream *out, OpenTypeFile *file) { argument
37 const OpenTypePREP *prep = file->prep;
46 void ots_prep_free(OpenTypeFile *file) { argument
47 delete file
[all...]
H A Dloca.cc3 // found in the LICENSE file.
15 bool ots_loca_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
22 file->loca = loca;
24 if (!file->maxp || !file->head) {
28 const unsigned num_glyphs = file->maxp->num_glyphs;
33 if (file->head->index_to_loc_format == 0) {
65 bool ots_loca_should_serialise(OpenTypeFile *file) { argument
66 return file->loca != NULL;
69 bool ots_loca_serialise(OTSStream *out, OpenTypeFile *file) { argument
94 ots_loca_free(OpenTypeFile *file) argument
[all...]
H A Dltsh.cc3 // found in the LICENSE file.
13 do { delete file->ltsh; file->ltsh = 0; } while (0)
17 bool ots_ltsh_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
20 if (!file->maxp) {
25 file->ltsh = ltsh;
39 if (num_glyphs != file->maxp->num_glyphs) {
57 bool ots_ltsh_should_serialise(OpenTypeFile *file) { argument
58 if (!file->glyf) return false; // this table is not for CFF fonts.
59 return file
62 ots_ltsh_serialise(OTSStream *out, OpenTypeFile *file) argument
78 ots_ltsh_free(OpenTypeFile *file) argument
[all...]
/external/proguard/src/proguard/io/
H A DFileDataEntry.java28 * This <code>DataEntry</code> represents a file.
35 private final File file; field in class:FileDataEntry
40 File file)
43 this.file = file;
51 // Chop the directory name from the file name and get the right separators.
52 return file.equals(directory) ?
53 file.getName() :
54 file.getPath()
62 return file
39 FileDataEntry(File directory, File file) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFileUtils.java5 * you may not use this file except in compliance with the License.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName {@code non-null;} name of the file to read
39 * @return {@code non-null;} contents of the file
42 File file = new File(fileName);
43 return readFile(file);
47 * Reads the given file, translating {@link IOException} to a
50 * @param file {@code non-null;} the file to read
51 * @return {@code non-null;} contents of the file
53 readFile(File file) argument
[all...]
/external/chromium_org/base/test/
H A Dtest_file_util_mac.cc3 // found in the LICENSE file.
16 bool EvictFileFromSystemCache(const FilePath& file) { argument
17 // There aren't any really direct ways to purge a file from the UBC. From
18 // talking with Amit Singh, the safest is to mmap the file with MAP_FILE (the
20 // open should then have to load the file from disk.
23 if (!GetFileSize(file, &length)) {
24 DLOG(ERROR) << "failed to get size of " << file.value();
28 // When a file is empty, we do not need to evict it from cache.
31 DLOG(WARNING) << "file size is zero, will not attempt to map to memory";
36 if (!mapped_file.Initialize(file)) {
[all...]
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Dgenerate_pmetric_tables.py12 * found in the LICENSE file.
70 print('static float gCubeRootTable[] = {', end='', file=stream)
73 print('\n ', end='', file=stream)
74 print("%.10f" % pow(i / 1024.0, 1.0 / 3.0), end='f,', file=stream)
75 print('\n};', end='', file=stream)
76 print(CUBE_ROOT_ACCESS_FUNCTION, file=stream)
86 print('static float gGammaTable[] = {', end='', file=stream)
89 print('\n ', end='', file=stream)
90 print("%.10f" % pow(i / 255.0, 2.2), end='f,', file=stream)
91 print('\n};', end='', file
[all...]
/external/compiler-rt/lib/builtins/
H A Dint_util.c5 * This file is dual licensed under the MIT and the University of Illinois Open
14 /* NOTE: The definitions in this file are declared weak because we clients to be
30 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
31 panic("%s:%d: abort in %s", file, line, function);
37 extern void __assert_rtn(const char *func, const char *file,
44 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
57 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
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 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();
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DKeepAliveHttpsTransportSE.java29 private final String file; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) { argument
34 super(host, port, file, timeout);
37 this.file = file;
52 file, timeout);
/external/lldb/tools/install-headers/
H A DMakefile16 for file in *.h ;\
18 /usr/bin/sed -i '' 's/\(#include\)[ ]*"lldb\/\(API\/\)\{0,1\}\(.*\)"/\1 <LLDB\/\3>/1' "$$file" ;\
19 /usr/bin/sed -i '' 's|<LLDB/Utility|<LLDB|' "$$file" ;\
20 /usr/bin/sed -i '' "s|//#define LLDB_VERSION$|#define LLDB_VERSION $(LLDB_VERSION) |" "$$file" ;\
21 /usr/bin/sed -i '' "s|//#define LLDB_REVISION|#define LLDB_REVISION $(LLDB_REVISION) |" "$$file" ;\
22 /usr/bin/sed -i '' "s|//#define LLDB_VERSION_STRING|#define LLDB_VERSION_STRING \"$(LLDB_VERSION_STRING)\" |" "$$file" ;\
/external/skia/tools/skpdiff/
H A Dgenerate_pmetric_tables.py12 * found in the LICENSE file.
70 print('static float gCubeRootTable[] = {', end='', file=stream)
73 print('\n ', end='', file=stream)
74 print("%.10f" % pow(i / 1024.0, 1.0 / 3.0), end='f,', file=stream)
75 print('\n};', end='', file=stream)
76 print(CUBE_ROOT_ACCESS_FUNCTION, file=stream)
86 print('static float gGammaTable[] = {', end='', file=stream)
89 print('\n ', end='', file=stream)
90 print("%.10f" % pow(i / 255.0, 2.2), end='f,', file=stream)
91 print('\n};', end='', file
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvideo_writer.c5 * 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.
19 FILE *file; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info, argument
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
39 FILE *const file = fopen(filename, "wb"); local
40 if (!file)
49 writer->file = file;
[all...]
/external/compiler-rt/lib/tsan/
H A Danalyze_libtsan.sh27 file=asm_$f.s
28 get_asm $f > $file
29 tot=$(wc -l < $file)
31 rsp=$(grep '(%rsp)' $file | wc -l)
32 push=$(grep 'push' $file | wc -l)
33 pop=$(grep 'pop' $file | wc -l)
34 call=$(grep 'call' $file | wc -l)
35 load=$(egrep 'mov .*\,.*\(.*\)|cmp .*\,.*\(.*\)' $file | wc -l)
36 store=$(egrep 'mov .*\(.*\),' $file | wc -l)
37 mov=$(grep 'mov' $file | w
[all...]
/external/libvpx/libvpx/
H A Dvideo_writer.c5 * 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.
19 FILE *file; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info, argument
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
39 FILE *const file = fopen(filename, "wb"); local
40 if (!file)
49 writer->file = file;
[all...]
/external/chromium_org/ui/gl/
H A Dgenerate_bindings.py4 # found in the LICENSE file.
1333 def GenerateHeader(file, functions, set_name, used_extensions):
1336 # Write file header.
1337 file.write(
1340 // found in the LICENSE file.
1342 // This file is automatically generated.
1355 file.write('\n')
1357 file.write('typedef %s (GL_BINDING_CALL *%sProc)(%s);\n' %
1361 file.write('\n')
1362 file
[all...]
/external/apache-http/src/org/apache/http/entity/
H A DFileEntity.java8 * or more contributor license agreements. See the NOTICE file
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
41 * An entity whose content is retrieved from a file.
56 protected final File file; field in class:FileEntity
58 public FileEntity(final File file, final String contentType) { argument
60 if (file == null) {
63 this.file = file;
72 return this.file
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileEntrySync.idl34 [RaisesException] File file();
/external/chromium_org/third_party/icu/source/tools/gentest/
H A Dgenres32.c8 * file name: genres32.c
53 char file[512]; local
56 uprv_strcpy(file,path);
57 if(file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
58 uprv_strcat(file,U_FILE_SEP_STRING);
60 uprv_strcat(file,"testtable32.txt");
61 out = fopen(file, "w");
62 /*puts(file);*/
65 fprintf(stderr, "%s: Couldn't create resource test file
[all...]

Completed in 1088 milliseconds

1234567891011>>