Home
last modified time | relevance | path

Searched +full:- +full:- +full:long +full:- +full:file +full:- +full:names (Results 1 – 25 of 1107) sorted by relevance

12345678910>>...45

/external/mtools/
Dmtools.12 .TH mtools 1 "26Dec21" mtools-4.0.37
4 mtools - utilities to access DOS disks in Unix.
19 MS-DOS files: read, write, and move around files on an MS-DOS
20 file system (typically a floppy disk). Where reasonable, each program
21 attempts to emulate the MS-DOS equivalent command. However,
26 Mtools is sufficient to give access to MS-DOS file systems. For
39 http://ftp.gnu.org/gnu/mtools/mtools-4.0.37.tar.gz
48 \&\fR\&\f(CWmtools-\fR\fIversion\fR\fR\&\f(CW-\fR\fIddmm\fR\fR\&\f(CW.taz\fR, where version
53 There is an mtools mailing list at info-mtools @ gnu.org . Please
55 https://lists.gnu.org/mailman/listinfo/info-mtools. (N.B. Please
[all …]
Dmtools.tmpl.12 .TH mtools 1 "08Jan22" mtools-4.0.37
4 mtools - utilities to access DOS disks in Unix.
19 MS-DOS files: read, write, and move around files on an MS-DOS
20 file system (typically a floppy disk). Where reasonable, each program
21 attempts to emulate the MS-DOS equivalent command. However,
26 Mtools is sufficient to give access to MS-DOS file systems. For
39 http://ftp.gnu.org/gnu/mtools/mtools-4.0.37.tar.gz
48 \&\fR\&\f(CWmtools-\fR\fIversion\fR\fR\&\f(CW-\fR\fIddmm\fR\fR\&\f(CW.taz\fR, where version
53 There is an mtools mailing list at info-mtools @ gnu.org . Please
55 https://lists.gnu.org/mailman/listinfo/info-mtools. (N.B. Please
[all …]
/external/jcommander/src/test/java/com/beust/jcommander/args/
DArgs1Setter.java3 * See the notice.md file distributed with this work for additional
7 * you may not use this file except in compliance with the License.
10 * http://www.apache.org/licenses/LICENSE-2.0
39 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity", required = true)
45 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
52 @Parameter(names = "-debug", description = "Debug mode")
59 @Parameter(names = "-long", description = "A long number")
60 public void setLong(long ll) { in setLong()
64 public long l;
66 @Parameter(names = "-double", description = "A double number")
[all …]
DArgs1.java3 * See the notice.md file distributed with this work for additional
7 * you may not use this file except in compliance with the License.
10 * http://www.apache.org/licenses/LICENSE-2.0
33 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity", required = true)
36 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
39 @Parameter(names = "-debug", description = "Debug mode")
42 @Parameter(names = "-long", description = "A long number")
43 public long l;
45 @Parameter(names = "-double", description = "A double number")
48 @Parameter(names = "-float", description = "A float number")
[all …]
DArgsDefault.java3 * See the notice.md file distributed with this work for additional
7 * you may not use this file except in compliance with the License.
10 * http://www.apache.org/licenses/LICENSE-2.0
31 @Parameter(names = "-log", description = "Level of verbosity")
34 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
37 @Parameter(names = "-debug", description = "Debug mode")
40 @Parameter(names = "-level", description = "A long number")
41 public long level;
/external/vogar/src/vogar/
DOptionParser.java5 * you may not use this file except in compliance with the License.
8 * http://www.apache.org/licenses/LICENSE-2.0
20 import java.io.File;
37 * Strings in the passed-in String[] are parsed left-to-right. Each
38 * String is classified as a short option (such as "-v"), a long
39 * option (such as "--verbose"), an argument to an option (such as
40 * "out.txt" in "-f out.txt"), or a non-option positional argument.
42 * A simple short option is a "-" followed by a short option
44 * non-boolean option), it may be written as a separate parameter, but
45 * need not be. That is, "-f out.txt" and "-fout.txt" are both
[all …]
DExpectationStore.java5 * you may not use this file except in compliance with the License.
8 * http://www.apache.org/licenses/LICENSE-2.0
23 import java.io.File;
42 * cross-cutting features that aren't supported.
61 * returns a value for all names, even if no explicit expectation was set.
101 if (dotOrHash == -1) { in getByNameOrPackage()
110 Set<File> expectationFiles, in parse()
115 for (File f : expectationFiles) { in parse()
123 public void parse(File expectationsFile, ModeId mode, Variant variant) throws IOException { in parse()
124 log.verbose("loading expectations file " + expectationsFile); in parse()
[all …]
/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/task/text/qa/
DBertQuestionAnswerer.java4 you may not use this file except in compliance with the License.
7 http://www.apache.org/licenses/LICENSE-2.0
20 import java.io.File;
33 private BertQuestionAnswerer(long nativeHandle) { in BertQuestionAnswerer()
42 * <li>input_process_units for Wordpiece/Sentencepiece Tokenizer - Wordpiece Tokenizer can be
44 * href="https://tfhub.dev/tensorflow/lite-model/mobilebert/1/default/1">MobileBert</a>
46 * href="https://tfhub.dev/tensorflow/lite-model/albert_lite_base/squadv1/1">Albert</a>
48 * <li>3 input tensors with names "ids", "mask" and "segment_ids".
49 * <li>2 output tensors with names "end_logits" and "start_logits".
53 * @param pathToModel file path to the model with metadata. Note: The model should not be
[all …]
/external/mesa3d/src/util/
Du_debug.c21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
56 int ret = vsnprintf(buf + len, sizeof(buf) - len, format, ap); in _debug_vprintf()
57 if (ret > (int)(sizeof(buf) - len - 1) || strchr(buf + len, '\n')) { in _debug_vprintf()
76 if (cb && cb->debug_message) in _pipe_debug_message()
77 cb->debug_message(cb->data, id, type, fmt, args); in _pipe_debug_message()
94 * http://msdn.microsoft.com/en-us/library/sas1dkb2.aspx in debug_disable_error_message_boxes()
99 * http://msdn.microsoft.com/en-us/library/e631wekh.aspx in debug_disable_error_message_boxes()
194 long
195 debug_get_num_option(const char *name, long dfault) in debug_get_num_option()
197 long result; in debug_get_num_option()
[all …]
/external/virglrenderer/src/mesa/util/
Du_debug.c21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
55 int ret = vsnprintf(buf + len, sizeof(buf) - len, format, ap); in _debug_vprintf()
56 if (ret > (int)(sizeof(buf) - len - 1) || strchr(buf + len, '\n')) { in _debug_vprintf()
82 * http://msdn.microsoft.com/en-us/library/sas1dkb2.aspx in debug_disable_error_message_boxes()
87 * http://msdn.microsoft.com/en-us/library/e631wekh.aspx in debug_disable_error_message_boxes()
182 long
183 debug_get_num_option(const char *name, long dfault) in debug_get_num_option()
185 long result; in debug_get_num_option()
245 /* Find 'name' in 'str' surrounded by non-alphanumeric characters. */ in str_has_option()
250 /* 'start' is the beginning of the currently-parsed word, in str_has_option()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipFile.java3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
9 * http://www.apache.org/licenses/LICENSE-2.0
24 import java.io.File;
31 import java.nio.file.Files;
32 import java.nio.file.StandardOpenOption;
60 * <p>This class adds support for file name encodings other than UTF-8
106 * Maps String to list of ZipArchiveEntrys, name -> actual entries.
112 * The encoding to use for filenames and the file comment.
[all …]
/external/antlr/runtime/ObjC/Framework/examples/scopes/
DSymbolTableParser.m1 /** \file
2 * This OBJC source file was generated by $ANTLR version 3.4
4 …* - From the grammar source file : /Users/acondit/source/antlr/code/antlr3/runtime/ObjC/Frame…
5 * - On : 2012-02-16 17:50:30
6 * - for the parser : SymbolTableParserParser
14 …t/source/antlr/code/antlr3/runtime/ObjC/Framework/examples/scopes/SymbolTable.g 2012-02-16 17:50:30
17 /* -----------------------------------------
18 * Include the ANTLR3 generated header file.
21 /* ----------------------------------------- */
31 static const unsigned long long FOLLOW_globals_in_prog50_data[] = { 0x0000000000001002LL};
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/
DTarArchiveOutputStream.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * "License"); you may not use this file except in compliance
10 * http://www.apache.org/licenses/LICENSE-2.0
21 import java.io.File;
57 * Fail if a long file name is required in the archive.
62 * Long paths will be truncated in the archive.
67 * GNU tar extensions are used to store long file names in the archive.
72 * POSIX/PAX extensions are used to store long file names in the archive.
92 private long currSize;
[all …]
/external/python/cpython2/Lib/distutils/
Dfancy_getopt.py5 * short and long options are tied together
8 * options set attributes of a passed-in object
20 # the same as a Python NAME -- except, in the spirit of most GNU
21 # utilities, we use '-' in place of '_'. (The spirit of LISP lives on!)
23 longopt_pat = r'[a-zA-Z](?:[a-zA-Z0-9-]*)'
29 # This is used to translate long options to legitimate Python identifiers
31 longopt_xlate = string.maketrans('-', '_')
36 * short and long options are tied together
39 * options set attributes of a passed-in object
40 * boolean options can have "negative aliases" -- eg. if
[all …]
/external/webp/
D.pylintrc1 # This Pylint rcfile contains a best-effort configuration to uphold the
2 # best-practices and style described in the Google Python style guide:
5 # Its canonical open-source location is:
10 # Files or directories to be skipped. They should be base names, not paths.
14 # matches against base names, not paths.
15 ignore-patterns=
20 # List of plugins (as comma separated values of python modules names) to load,
22 load-plugins=
29 unsafe-load-any-extension=no
40 # multiple time (only on the command line, not in the configuration file where
[all …]
/external/libwebm/
D.pylintrc1 # This Pylint rcfile contains a best-effort configuration to uphold the
2 # best-practices and style described in the Google Python style guide:
5 # Its canonical open-source location is:
10 # Files or directories to be skipped. They should be base names, not paths.
14 # matches against base names, not paths.
15 ignore-patterns=
20 # List of plugins (as comma separated values of python modules names) to load,
22 load-plugins=
29 unsafe-load-any-extension=no
40 # multiple time (only on the command line, not in the configuration file where
[all …]
/external/libpng/contrib/conftest/
DREADME3 of the file.
6 by building 'make check', or 'make all-am' for cross-builds, with each .dfa
7 file.
13 releases. However if a .dfa file describing a configuration is not in this
32 Documentation of the file format:
35 FILE NAMING
38 File names in this directory may NOT contain any of the five characters:
40 - , + * ?
44 While other characters may be used it is strongly suggested that file names be
45 limited to lower case Latiin alphabetic characters (a-z), digits (0-9) and, if
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DDumpArchiveInputStream.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * "License"); you may not use this file except in compliance
10 * http://www.apache.org/licenses/LICENSE-2.0
56 private long entrySize;
57 private long entryOffset;
62 private long filepos;
65 // map of ino -> dirent entry. We can use this to reconstruct full paths.
66 private final Map<Integer, Dirent> names = new HashMap<>(); field in DumpArchiveInputStream
68 // map of ino -> (directory) entry when we're missing one or more elements in the path.
[all …]
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
DLambda.java4 // you may not use this file except in compliance with the License.
7 // http://www.apache.org/licenses/LICENSE-2.0
23 private final List<String> names; field in Lambda
25 public Lambda(List<String> names) { in Lambda() argument
26 this.names = names; in Lambda()
30 return names in as()
32 .filter(n -> n.startsWith("A")) in as()
37 return (Callable<String> & java.util.RandomAccess) () -> "hello"; in hello()
40 public static Function<Integer, Callable<Long>> mult(int x) { in mult()
41 return new Function<Integer, Callable<Long>>() { in mult()
[all …]
/external/python/cpython3/Lib/distutils/
Dfancy_getopt.py5 * short and long options are tied together
8 * options set attributes of a passed-in object
16 # the same as a Python NAME -- except, in the spirit of most GNU
17 # utilities, we use '-' in place of '_'. (The spirit of LISP lives on!)
19 longopt_pat = r'[a-zA-Z](?:[a-zA-Z0-9-]*)'
25 # This is used to translate long options to legitimate Python identifiers
27 longopt_xlate = str.maketrans('-', '_')
32 * short and long options are tied together
35 * options set attributes of a passed-in object
36 * boolean options can have "negative aliases" -- eg. if
[all …]
/external/python/setuptools/setuptools/_distutils/
Dfancy_getopt.py5 * short and long options are tied together
8 * options set attributes of a passed-in object
16 # the same as a Python NAME -- except, in the spirit of most GNU
17 # utilities, we use '-' in place of '_'. (The spirit of LISP lives on!)
19 longopt_pat = r'[a-zA-Z](?:[a-zA-Z0-9-]*)'
25 # This is used to translate long options to legitimate Python identifiers
27 longopt_xlate = str.maketrans('-', '_')
32 * short and long options are tied together
35 * options set attributes of a passed-in object
36 * boolean options can have "negative aliases" -- eg. if
[all …]
/external/angle/doc/
DCodingStandard.md12 Before you upload code to Gerrit, use `git cl format` to auto-format your code.
18 * {DEV} #define guards should be of the form: `<PATH>_<FILE>_H_`. (Compiler
19 codebase is varied, including `<PROJECT>_` makes the names excessively
20 long).
39 …tures guide](https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++-features.md).
43 #### File Names
46 If the file is an implementation of a class, the filename may be capitalized
51 #### Directory Names
52 * Directory names should be all lowercase, unless following an externally
55 #### Variable Names
[all …]
/external/e2fsprogs/lib/support/
Dprofile_helpers.h2 * profile_helpers.h -- Function prototypes for profile helper functions
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
9 * %End-Header%
12 long profile_get_values
13 (profile_t profile, const char *const *names, char ***ret_values);
18 long profile_get_relation_names
19 (profile_t profile, const char **names, char ***ret_names);
21 long profile_get_subsection_names
22 (profile_t profile, const char **names, char ***ret_names);
[all …]
/external/jcommander/doc/
Dindex.adoc6 :source-highlighter: prettify
11 <div style="display:inline-block">
12 <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
19 <input type="hidden" name="bn" value="PP-DonationsBF:btn_donate_LG.gif:NonHostedGuest">
20 …cts.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier wa…
36 ----
43 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity")
46 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
49 @Parameter(names = "-debug", description = "Debug mode")
52 ----
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DSevenZFile.java3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
9 * http://www.apache.org/licenses/LICENSE-2.0
24 import java.io.File;
34 import java.nio.file.Files;
35 import java.nio.file.StandardOpenOption;
50 * Reads a 7z file, using SeekableByteChannel under
53 * The 7z file format is a flexible container
56 * only Copy, LZMA, LZMA2, BZIP2, Deflate and AES-256 + SHA-256
[all …]

12345678910>>...45