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

<<11121314151617181920>>

  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
validators_unittest.py 55 def _test_count_tracking_id(self, filename, criteria, device):
56 packets = parse_tests_data(filename)
66 filename = 'two_finger_id_change.dat'
67 score = self._test_count_tracking_id(filename, '== 2', lumpy)
75 filename = 'one_finger_fast_swipe_id_split.dat'
76 score = self._test_count_tracking_id(filename, '== 1', lumpy)
84 filename = 'two_finger_fast_flick_id_split.dat'
85 score = self._test_count_tracking_id(filename, '== 2', lumpy)
95 def _test_drumroll(self, filename, criteria, device):
96 packets = parse_tests_data(filename)
    [all...]
  /external/icu/icu4c/source/tools/gensprep/
gensprep.c 58 parseMappings(const char *filename, UBool reportError, UErrorCode *pErrorCode);
61 parseNormalizationCorrections(const char *filename, UErrorCode *pErrorCode);
140 char* filename = NULL; local
206 filename = (char* ) uprv_malloc(uprv_strlen(srcDir) + uprv_strlen(inputFileName) + (icuUniDataDir == NULL ? 0 : uprv_strlen(icuUniDataDir)) + 40); /* hopefully this should be enough */
208 /* prepare the filename beginning with the source dir */
210 filename[0] = '.';
211 filename[1] = U_FILE_SEP_CHAR;
212 uprv_strcpy(filename+2,srcDir);
214 uprv_strcpy(filename, srcDir);
217 basename=filename+uprv_strlen(filename)
351 const char* filename = (const char*) context; local
    [all...]
  /external/opencv/otherlibs/highgui/
loadsave.cpp 64 static int Preprocess( const char* filename, char* buffer );
76 const char* Find( const char* filename, char* buffer ) const;
186 const char* CvFilePath::Find( const char* filename, char* buffer ) const
189 int len = Preprocess( filename, path0 );
224 filename = 0;
228 filename = (const char*)buffer;
232 return filename;
282 GrFmtReader* FindReader( const char* filename ) const;
283 GrFmtWriter* FindWriter( const char* filename ) const;
324 GrFmtReader* CvImageFilters::FindReader( const char* filename ) cons
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py 360 def ParseNolintSuppressions(filename, raw_line, linenum, error):
368 filename: str, the name of the input file.
385 error(filename, linenum, 'readability/nolint', 5,
430 filename and line number on which that file was included.
700 def Check(self, error, filename, linenum):
705 filename: The name of the current file.
719 error(filename, linenum, 'readability/fn_size', error_level,
742 def __init__(self, filename):
743 self._filename = filename
852 def Error(filename, linenum, category, confidence, message)
    [all...]
  /build/make/tools/
generate-notice-files.py 47 def md5sum(filename):
48 """Calculate an MD5 of the file given by FILENAME,
52 f = open(filename, "rb")
81 # Set up a filename to row id table (anchors inside tables don't work in
86 for filename in value:
87 id_table[filename] = id_count
105 for filename in sorted_filenames:
106 stripped_filename = SRC_DIR_STRIP_RE.sub(r"\1", filename)
107 print >> output_file, '<li><a href="#id%d">%s</a></li>' % (id_table.get(filename), stripped_filename)
117 for filename in value
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
log.py 25 # fileno -> filename
27 # (fileno, lineno) -> filename, funcname
77 def get_fileno(self, filename):
78 filename = os.path.normcase(os.path.normpath(filename))
80 if name == filename:
82 raise ValueError, "unknown filename"
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
115 filename, firstlineno, funcname = self._stack[-1]
    [all...]
  /external/ltp/testcases/kernel/io/direct_io/
diotest5.c 40 * [-v nvector] [-f filename]
79 static char filename[LEN]; /* Test data file */ variable
161 "Usage: diotest5 [-b bufsize] [-o offset] [ -i iteration] [ -v nvector] [-f filename]\n");
174 sprintf(filename, "testdata-5.%ld", syscall(__NR_gettid));
206 strcpy(filename, optarg);
217 if ((fd_w = open(filename, O_WRONLY | O_CREAT, 0666)) < 0) {
219 filename, strerror(errno));
221 if ((fd_r = open64(filename, O_DIRECT | O_RDONLY | O_CREAT, 0666)) < 0) {
223 filename, strerror(errno));
232 unlink(filename);
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
exceptions.py 19 def _format_filepos(lineno, pos, filename):
20 if filename is None:
23 return " in file '%s' at line: %d char: %d" % (filename, lineno, pos)
27 def __init__(self, message, source, lineno, pos, filename):
29 message + _format_filepos(lineno, pos, filename))
32 self.filename = filename
36 def __init__(self, message, source, lineno, pos, filename):
38 message + _format_filepos(lineno, pos, filename))
41 self.filename = filenam
    [all...]
  /external/python/cpython2/Lib/hotshot/
log.py 25 # fileno -> filename
27 # (fileno, lineno) -> filename, funcname
77 def get_fileno(self, filename):
78 filename = os.path.normcase(os.path.normpath(filename))
80 if name == filename:
82 raise ValueError, "unknown filename"
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
115 filename, firstlineno, funcname = self._stack[-1
    [all...]
  /external/toolchain-utils/
verify_compiler.py 28 def CreateTmpDwarfFile(filename, dwarf_file, cmd_executer):
32 (filename, dwarf_file))
58 def VerifyArgs(compiler, filename, tmp_dir, root_dir, options, parser):
61 if options.filename and options.all_files:
63 if options.filename and options.root_dir:
69 if not options.filename and not options.all_files:
73 if filename:
74 if not os.path.exists(filename):
75 UsageError(parser, 'Cannot find %s' % filename)
85 def CheckFile(filename, compiler, tmp_dir, options, cmd_executer)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/
log.py 25 # fileno -> filename
27 # (fileno, lineno) -> filename, funcname
77 def get_fileno(self, filename):
78 filename = os.path.normcase(os.path.normpath(filename))
80 if name == filename:
82 raise ValueError, "unknown filename"
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
115 filename, firstlineno, funcname = self._stack[-1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/hotshot/
log.py 25 # fileno -> filename
27 # (fileno, lineno) -> filename, funcname
77 def get_fileno(self, filename):
78 filename = os.path.normcase(os.path.normpath(filename))
80 if name == filename:
82 raise ValueError, "unknown filename"
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
115 filename, firstlineno, funcname = self._stack[-1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
log.py 25 # fileno -> filename
27 # (fileno, lineno) -> filename, funcname
77 def get_fileno(self, filename):
78 filename = os.path.normcase(os.path.normpath(filename))
80 if name == filename:
82 raise ValueError, "unknown filename"
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
115 filename, firstlineno, funcname = self._stack[-1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
log.py 25 # fileno -> filename
27 # (fileno, lineno) -> filename, funcname
77 def get_fileno(self, filename):
78 filename = os.path.normcase(os.path.normpath(filename))
80 if name == filename:
82 raise ValueError, "unknown filename"
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
115 filename, firstlineno, funcname = self._stack[-1
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 133 * @param filename the name of the file.
136 File locateFile(List<String> loadPaths, String filename) {
137 if (filename == null) {
138 throw new NullPointerException("No filename provided");
144 File file = newFile(path, filename);
156 File newFile(String filename) {
157 return new File(filename);
160 File newFile(String path, String filename) {
161 return new File(path, filename);
170 public Object getKey(String filename) {
    [all...]
  /external/python/cpython2/Lib/idlelib/
IOBinding.py 184 filename = None variable in class:IOBinding
187 def set_filename(self, filename):
188 if filename and os.path.isdir(filename):
189 self.filename = None
190 self.dirname = filename
192 self.filename = filename
203 filename = self.askopenfile()
205 filename=editFil
    [all...]
  /external/python/cpython3/Tools/scripts/
pathfix.py 93 def fix(filename):
94 ## dbg('fix(%r)\n' % (filename,))
96 f = open(filename, 'rb')
98 err('%s: cannot open: %r\n' % (filename, msg))
103 rep(filename+': no change\n')
106 head, tail = os.path.split(filename)
114 rep(filename + ': updating\n')
130 statbuf = os.stat(filename)
136 # Then make a backup of the original file as filename~
138 os.rename(filename, filename + '~'
    [all...]
  /external/toolchain-utils/cwp/interpreter/
symbolizer.py 27 for filename in os.listdir(opts.in_dir):
29 _DownloadSymbols(filename, opts.cache)
30 _PerfReport(filename, opts.in_dir, opts.out_dir, opts.cache)
50 def _ParseFilename(filename, canonical=False):
55 key, time, board, vers = filename.split('~')
65 def _DownloadSymbols(filename, cache):
70 _, _, board, vers = _ParseFilename(filename, canonical=True)
87 print 'Downloading symbols for %s' % filename
101 print 'Extracting symbols for %s' % filename
111 def _PerfReport(filename, in_dir, out_dir, cache)
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
iio_utils.h 106 char *scan_el_dir, *builtname, *builtname_generic, *filename = 0; local
139 ret = asprintf(&filename,
145 sysfsfp = fopen(filename, "r");
147 printf("failed to open %s\n", filename);
173 free(filename);
175 filename = 0;
178 if (filename)
179 free(filename);
202 char *filename = NULL; local
224 ret = asprintf(&filename,
288 char *filename; local
    [all...]
  /toolchain/binutils/binutils-2.27/gprof/
source.c 66 source_file_lookup_name (const char *filename)
71 /* The user cannot know exactly how a filename will be stored in
73 vs. /usr/include/foo.h). So we simply compare the filename
84 if (FILENAME_CMP (filename, fname) == 0)
177 const char *filename;
180 filename = strrchr (sf->name, '/');
184 if (filename == NULL || (bslash != NULL && bslash > filename))
185 filename = bslash;
186 if (filename == NULL && sf->name[0] != '\0' && sf->name[1] == ':'
176 const char *filename; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
IOBinding.py 185 filename = None variable in class:IOBinding
188 def set_filename(self, filename):
189 if filename and os.path.isdir(filename):
190 self.filename = None
191 self.dirname = filename
193 self.filename = filename
204 filename = self.askopenfile()
206 filename=editFil
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
IOBinding.py 185 filename = None variable in class:IOBinding
188 def set_filename(self, filename):
189 if filename and os.path.isdir(filename):
190 self.filename = None
191 self.dirname = filename
193 self.filename = filename
204 filename = self.askopenfile()
206 filename=editFil
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 185 filename = None variable in class:IOBinding
188 def set_filename(self, filename):
189 if filename and os.path.isdir(filename):
190 self.filename = None
191 self.dirname = filename
193 self.filename = filename
204 filename = self.askopenfile()
206 filename=editFil
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 185 filename = None variable in class:IOBinding
188 def set_filename(self, filename):
189 if filename and os.path.isdir(filename):
190 self.filename = None
191 self.dirname = filename
193 self.filename = filename
204 filename = self.askopenfile()
206 filename=editFil
    [all...]
  /build/kati/
func.cc 702 static void FileReadFunc(Evaluator* ev, const string& filename, string* s) {
703 int fd = open(filename.c_str(), O_RDONLY);
706 if (ShouldStoreCommandResult(filename)) {
709 cr->cmd = filename;
739 if (ShouldStoreCommandResult(filename)) {
742 cr->cmd = filename;
749 const string& filename,
752 FILE* f = fopen(filename.c_str(), append ? "ab" : "wb");
765 if (ShouldStoreCommandResult(filename)) {
768 cr->cmd = filename;
780 StringPiece filename = TrimSpace(arg); local
    [all...]

Completed in 605 milliseconds

<<11121314151617181920>>