Home
last modified time | relevance | path

Searched +full:- +full:filename (Results 1 – 25 of 1278) sorted by relevance

12345678910>>...52

/external/catch2/projects/SelfTest/Baselines/
Dxml.sw.approved.txt1 <?xml version="1.0" encoding="UTF-8"?>
2 <Catch name="<exe-name>" filters="~[!nonportable]~[!benchmark]~[approvals]">
4 <Group name="<exe-name>">
5 …<TestCase name="# A test name that starts with a #" filename="projects/<exe-name>/UsageTests/Misc.…
8 …(NULL can be either on various systems)" tags="[Decomposition]" filename="projects/<exe-name>/Usag…
9 …<Expression success="true" type="REQUIRE" filename="projects/<exe-name>/UsageTests/Decomposition.t…
17 …<Expression success="true" type="REQUIRE" filename="projects/<exe-name>/UsageTests/Decomposition.t…
27 <TestCase name="#1027" filename="projects/<exe-name>/UsageTests/Compilation.tests.cpp" >
28 …<Expression success="true" type="REQUIRE" filename="projects/<exe-name>/UsageTests/Compilation.tes…
36 …<Expression success="true" type="REQUIRE" filename="projects/<exe-name>/UsageTests/Compilation.tes…
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/neon-animation/demo/list/
Dlist-demo.html1 <!--
9 -->
11 <link rel="import" href="../../../paper-toolbar/paper-toolbar.html">
12 <link rel="import" href="../../neon-animated-pages.html">
13 <link rel="import" href="../../neon-animations.html">
14 <link rel="import" href="list-view.html">
15 <link rel="import" href="full-view.html">
17 <dom-module id="list-demo">
23 neon-animated-pages {
27 <neon-animated-pages id="pages" selected="0">
[all …]
/external/python/cpython3/Tools/c-analyzer/c_common/
Dfsutil.py19 filename = old
21 filename = getattr(old, 'name', None)
22 if not filename:
25 backup = f'{filename}.bak'
27 shutil.copyfile(filename, backup)
29 if exc.filename != filename:
30 raise # re-raise
38 def fix_filename(filename, relroot=USE_CWD, *, argument
42 """Return a normalized, absolute-path copy of the given filename."""
44 return os.path.abspath(filename)
[all …]
/external/python/cpython3/Lib/
Dlinecache.py3 This is intended to read lines from modules imported -- hence if a filename
26 def getline(filename, lineno, module_globals=None): argument
30 lines = getlines(filename, module_globals)
32 return lines[lineno - 1]
36 def getlines(filename, module_globals=None): argument
40 if filename in cache:
41 entry = cache[filename]
43 return cache[filename][2]
46 return updatecache(filename, module_globals)
52 def checkcache(filename=None): argument
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/lang/
Dwpa_gui_de.ts1 <?xml version="1.0" encoding="utf-8"?>
7 <location filename="../addinterface.cpp" line="38"/>
12 <location filename="../addinterface.cpp" line="47"/>
17 <location filename="../addinterface.cpp" line="48"/>
22 <location filename="../addinterface.cpp" line="49"/>
27 <location filename="../addinterface.cpp" line="221"/>
32 <location filename="../addinterface.cpp" line="229"/>
37 <location filename="../addinterface.cpp" line="238"/>
45 <location filename="../wpagui.cpp" line="1621"/>
53 <location filename="../eventhistory.ui" line="13"/>
[all …]
/external/python/setuptools/setuptools/tests/
Dtest_sdist.py55 # HFS Plus uses decomposed UTF-8
60 path = path.decode('utf-8')
62 path = path.encode('utf-8')
64 pass # Not UTF-8
68 def read_all_bytes(filename): argument
69 with io.open(filename, 'rb') as fp:
75 desc, filename = tempfile.mkstemp(suffix=Filenames.latin_1)
77 os.remove(filename)
84 reason="System does not support latin-1 filenames",
89 path.write_text('', encoding='utf-8')
[all …]
/external/fdlibm/
Dindex.html14 file <a href="e_acos.c">e_acos.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_acos.c">e…
16 file <a href="e_acosh.c">e_acosh.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_acosh.c…
18 file <a href="e_asin.c">e_asin.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_asin.c">e…
20 file <a href="e_atan2.c">e_atan2.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_atan2.c…
22 file <a href="e_atanh.c">e_atanh.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_atanh.c…
24 file <a href="e_cosh.c">e_cosh.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_cosh.c">e…
26 file <a href="e_exp.c">e_exp.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_exp.c">e_ex…
28 file <a href="e_fmod.c">e_fmod.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_fmod.c">e…
30 file <a href="e_gamma.c">e_gamma.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_gamma.c…
32 file <a href="e_gamma_r.c">e_gamma_r.c</a> <a href="/cgi-bin/netlibfiles.pl?filename=/fdlibm/e_gam…
[all …]
/external/libcups/scheduler/
Dfile.c4 * Copyright © 2007-2014 by Apple Inc.
5 * Copyright © 1997-2007 by Easy Software Products, all rights reserved.
27 * 'cupsdCleanFiles()' - Clean out old files.
31 cupsdCleanFiles(const char *path, /* I - Directory to clean */ in cupsdCleanFiles()
32 const char *pattern) /* I - Filename pattern or NULL */ in cupsdCleanFiles()
36 char filename[1024]; /* Filename */ in cupsdCleanFiles() local
46 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to open directory \"%s\" - %s", in cupsdCleanFiles()
55 if (pattern && fnmatch(pattern, dent->filename, 0)) in cupsdCleanFiles()
58 snprintf(filename, sizeof(filename), "%s/%s", path, dent->filename); in cupsdCleanFiles()
60 if (S_ISDIR(dent->fileinfo.st_mode)) in cupsdCleanFiles()
[all …]
/external/protobuf/benchmarks/util/
Dresult_parser.py14 def __get_data_size(filename): argument
15 if filename[0] != '/':
16 filename = os.path.dirname(os.path.abspath(__file__)) + "/../" + filename
17 if filename in __file_size_map:
18 return __file_size_map[filename]
21 open(filename, "rb").read())
27 __file_size_map[filename] = (size, 1.0 * size / count)
58 def __parse_cpp_result(filename): argument
59 if filename == "":
61 if filename[0] != '/':
[all …]
/external/python/mobly/mobly/
Dlogger.py7 # http://www.apache.org/licenses/LICENSE-2.0
25 # Filename sanitization mappings for Windows.
26 # See https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#naming-conventions
33 '-',
35 '-',
37 '-',
51 # While integers 1-31 are also usually valid, they aren't sanitized because
59 r'^(CON|PRN|AUX|NUL|(COM|LPT)[0-9])(\.[^.]*)?$', re.IGNORECASE)
65 log_line_time_format = '%m-%d %H:%M:%S'
68 logline_timestamp_re = re.compile(r'\d\d-\d\d \d\d:\d\d:\d\d.\d\d\d')
[all …]
/external/libxml2/doc/examples/
Dexamples.xml2 <example filename='io1.c'>
28 <example filename='io2.c'>
51 <example filename='parse1.c'>
72 <example filename='parse2.c'>
97 <example filename='parse3.c'>
118 <example filename='parse4.c'>
142 <example filename='reader1.c'>
145 <usage>reader1 &lt;filename&gt;</usage>
170 <example filename='reader2.c'>
199 <example filename='reader3.c'>
[all …]
/external/ltp/testcases/kernel/security/tomoyo/
Dtomoyo_new_file_test.c14 /* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
22 * Copyright (C) 2005-2010 NTT DATA CORPORATION
101 char *filename = ""; in stage_file_test() local
156 if (pipe(pipe_fd) == -1) in stage_file_test()
160 if (write(pipe_fd[1], &errno, sizeof(errno)) == -1) in stage_file_test()
173 if (pipe(pipe_fd) == -1) in stage_file_test()
177 if (write(pipe_fd[1], &errno, sizeof(errno)) == -1) in stage_file_test()
239 filename = "/tmp/mknod_fifo_test"; in stage_file_test()
240 show_result(mknod(filename, S_IFIFO | 0644, 0), 1); in stage_file_test()
242 unlink2(filename); in stage_file_test()
[all …]
/external/python/cpython3/Lib/test/
Dtest_gzip.py27 data2 = b"""/* zlibmodule.c -- gzip-compatible data compression */
33 TEMPDIR = os.path.abspath(os_helper.TESTFN) + '-gzdir'
48 filename = os_helper.TESTFN variable in BaseTest
51 os_helper.unlink(self.filename)
54 os_helper.unlink(self.filename)
60 with gzip.GzipFile(self.filename, 'w'+mode) as f:
63 with gzip.GzipFile(self.filename, 'r'+mode) as f:
67 with gzip.GzipFile(self.filename, 'wb') as f:
81 filename = pathlib.Path(self.filename)
82 with gzip.GzipFile(filename, 'w') as f:
[all …]
/external/python/cpython2/Lib/
Dlinecache.py3 This is intended to read lines from modules imported -- hence if a filename
13 def getline(filename, lineno, module_globals=None): argument
14 lines = getlines(filename, module_globals)
16 return lines[lineno-1]
33 def getlines(filename, module_globals=None): argument
37 if filename in cache:
38 return cache[filename][2]
41 return updatecache(filename, module_globals)
47 def checkcache(filename=None): argument
51 if filename is None:
[all …]
Dbdb.py29 def canonic(self, filename): argument
30 if filename == "<" + filename[1:-1] + ">":
31 return filename
32 canonic = self.fncache.get(filename)
34 canonic = os.path.abspath(filename)
36 self.fncache[filename] = canonic
117 if self.stoplineno == -1:
127 filename = self.canonic(frame.f_code.co_filename)
128 if not filename in self.breaks:
131 if not lineno in self.breaks[filename]:
[all …]
/external/ltp/testcases/kernel/syscalls/memfd_create/
Dmemfd_create_common.c1 // SPDX-License-Identifier: GPL-2.0-or-later
32 int check_fallocate(const char *filename, const int lineno, int fd, in check_fallocate() argument
39 tst_brk_(filename, lineno, TFAIL | TERRNO, in check_fallocate()
44 tst_res_(filename, lineno, TPASS, in check_fallocate()
51 int check_fallocate_fail(const char *filename, const int lineno, int fd, in check_fallocate_fail() argument
58 tst_res_(filename, lineno, TFAIL, in check_fallocate_fail()
65 tst_res_(filename, lineno, TPASS | TERRNO, in check_fallocate_fail()
72 void check_ftruncate(const char *filename, const int lineno, int fd, in check_ftruncate() argument
75 safe_ftruncate(filename, lineno, fd, length); in check_ftruncate()
77 tst_res_(filename, lineno, TPASS, "ftruncate(%d, %ld) succeeded", fd, in check_ftruncate()
[all …]
/external/python/cpython3/Lib/idlelib/
Diomenu.py18 encoding = 'utf-8'
34 self.__id_open = self.text.bind("<<open-window-from-file>>", self.open)
35 self.__id_save = self.text.bind("<<save-window>>", self.save)
36 self.__id_saveas = self.text.bind("<<save-window-as-file>>",
38 self.__id_savecopy = self.text.bind("<<save-copy-of-window-as-file>>",
40 self.fileencoding = 'utf-8'
41 self.__id_print = self.text.bind("<<print-window>>", self.print_window)
45 self.text.unbind("<<open-window-from-file>>", self.__id_open)
46 self.text.unbind("<<save-window>>", self.__id_save)
47 self.text.unbind("<<save-window-as-file>>",self.__id_saveas)
[all …]
/external/mesa3d/.gitlab-ci/tracie/tests/
Dtest.py15 TRACE_LOG_TEST1 = "results/trace1/test/gl-test-device/magenta.testtrace.log"
16 TRACE_LOG_TEST2 = "results/trace2/test/vk-test-device/olive.testtrace.log"
17 TRACE_PNG_TEST1 = "results/trace1/test/gl-test-device/magenta.testtrace-0.png"
18 TRACE_PNG_TEST2 = "results/trace2/test/vk-test-device/olive.testtrace-0.png"
25 def write_to(content, filename): argument
26 with open(filename, 'w') as f:
30 def read_from(filename): argument
31 with open(filename) as f:
38 Run tests for the .testtrace types, using the "gl-test-device" and
39 "vk-test-device" device names.
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/tools/
Dplaceholder.py7 # http://www.apache.org/licenses/LICENSE-2.0
68 self.filename = None
79 shader, self.filename = tempfile.mkstemp(
84 return self.filename
87 assert self.filename is not None
88 return self.filename
92 """Stands for a configuration file for spirv-opt generated out of a string."""
99 self.filename = None
107 temp_fd, self.filename = tempfile.mkstemp(
112 return '-Oconfig=%s' % self.filename
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/tools/
Dplaceholder.py7 # http://www.apache.org/licenses/LICENSE-2.0
68 self.filename = None
79 shader, self.filename = tempfile.mkstemp(
84 return self.filename
87 assert self.filename is not None
88 return self.filename
92 """Stands for a configuration file for spirv-opt generated out of a string."""
99 self.filename = None
107 temp_fd, self.filename = tempfile.mkstemp(
112 return '-Oconfig=%s' % self.filename
[all …]
/external/deqp-deps/SPIRV-Tools/test/tools/
Dplaceholder.py7 # http://www.apache.org/licenses/LICENSE-2.0
68 self.filename = None
79 shader, self.filename = tempfile.mkstemp(
84 return self.filename
87 assert self.filename is not None
88 return self.filename
92 """Stands for a configuration file for spirv-opt generated out of a string."""
99 self.filename = None
107 temp_fd, self.filename = tempfile.mkstemp(
112 return '-Oconfig=%s' % self.filename
[all …]
/external/iptables/
Diptables-test.py3 # (C) 2012-2013 by Pablo Neira Ayuso <pablo@netfilter.org>
24 IPTABLES_SAVE = "iptables-save"
25 IP6TABLES_SAVE = "ip6tables-save"
26 ARPTABLES_SAVE = "arptables-save"
27 EBTABLES_SAVE = "ebtables-save"
28 #IPTABLES_SAVE = ['xtables-save','-4']
29 #IP6TABLES_SAVE = ['xtables-save','-6']
32 LOGFILE="/tmp/iptables-test.log"
45 def print_error(reason, filename=None, lineno=None): argument
49 print(filename + ": " + Colors.RED + "ERROR" +
[all …]
/external/tensorflow/tensorflow/core/util/
Devents_writer_test.cc7 http://www.apache.org/licenses/LICENSE-2.0
43 Summary::Value* summ_val = event.mutable_summary()->add_value(); in WriteSimpleValue()
44 summ_val->set_tag(tag); in WriteSimpleValue()
45 summ_val->set_simple_value(simple_value); in WriteSimpleValue()
46 writer->WriteEvent(event); in WriteSimpleValue()
51 WriteSimpleValue(writer, 2345, 35, "bar", -42); in WriteFile()
57 Status s = reader->ReadRecord(offset, &record); in ReadEventProto()
64 void VerifyFile(const string& filename) { in VerifyFile() argument
65 CHECK(env()->FileExists(filename).ok()); in VerifyFile()
67 TF_CHECK_OK(env()->NewRandomAccessFile(filename, &event_file)); in VerifyFile()
[all …]
/external/python/oauth2client/tests/contrib/
Dtest_multistore_file.py7 # http://www.apache.org/licenses/LICENSE-2.0
31 _filehandle, FILENAME = tempfile.mkstemp('oauth2client_test.data') variable
50 def filename(self): member in _MockLockedFile
82 os.unlink(FILENAME)
88 os.unlink(FILENAME)
108 filehandle, filename = tempfile.mkstemp()
115 multistore = multistore_file._MultiStore(filename)
117 filename, error_class, error_code)
122 os.unlink(filename)
125 filehandle, filename = tempfile.mkstemp()
[all …]
/external/clang/lib/Frontend/
DDependencyFile.cpp1 //===--- DependencyFile.cpp - Generate dependency file --------------------===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
54 StringRef Filename = in FileChanged() local
55 llvm::sys::path::remove_leading_dotslash(FE->getName()); in FileChanged()
57 DepCollector.maybeAddDependency(Filename, /*FromModule*/false, in FileChanged()
63 StringRef FileName, bool IsAngled, in InclusionDirective()
68 DepCollector.maybeAddDependency(FileName, /*FromModule*/false, in InclusionDirective()
85 StringRef Filename = Entry.getName(); in moduleMapFileRead() local
86 DepCollector.maybeAddDependency(Filename, /*FromModule*/false, in moduleMapFileRead()
[all …]

12345678910>>...52