Home
last modified time | relevance | path

Searched full:names (Results 1 – 25 of 13484) sorted by relevance

12345678910>>...540

/external/llvm/lib/CodeGen/
DTargetLoweringBase.cpp58 /// InitLibcallNames - Set default libcall names.
60 static void InitLibcallNames(const char **Names, const Triple &TT) { in InitLibcallNames() argument
61 Names[RTLIB::SHL_I16] = "__ashlhi3"; in InitLibcallNames()
62 Names[RTLIB::SHL_I32] = "__ashlsi3"; in InitLibcallNames()
63 Names[RTLIB::SHL_I64] = "__ashldi3"; in InitLibcallNames()
64 Names[RTLIB::SHL_I128] = "__ashlti3"; in InitLibcallNames()
65 Names[RTLIB::SRL_I16] = "__lshrhi3"; in InitLibcallNames()
66 Names[RTLIB::SRL_I32] = "__lshrsi3"; in InitLibcallNames()
67 Names[RTLIB::SRL_I64] = "__lshrdi3"; in InitLibcallNames()
68 Names[RTLIB::SRL_I128] = "__lshrti3"; in InitLibcallNames()
[all …]
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dreadability-identifier-naming.rst95 When defined, the check will ensure abstract class names conform to the
100 When defined, the check will ensure abstract class names will add the
105 Identifier naming checks won't be enforced for abstract class names
110 When defined, the check will ensure abstract class names will add the
119 Identifies and/or transforms abstract class names as follows:
199 When defined, the check will ensure class names conform to the
204 When defined, the check will ensure class names will add the
209 Identifier naming checks won't be enforced for class names matching
214 When defined, the check will ensure class names will add the
223 Identifies and/or transforms class names as follows:
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Demangle/
DItaniumDemangle.cpp145 db.names.push_back(std::string(num, static_cast<std::size_t>(n))); in parse_floating_number()
170 db.names.push_back("(anonymous namespace)"); in parse_source_name()
172 db.names.push_back(std::move(r)); in parse_source_name()
198 db.names.push_back("std::allocator"); in parse_substitution()
202 db.names.push_back("std::basic_string"); in parse_substitution()
206 db.names.push_back("std::string"); in parse_substitution()
210 db.names.push_back("std::istream"); in parse_substitution()
214 db.names.push_back("std::ostream"); in parse_substitution()
218 db.names.push_back("std::iostream"); in parse_substitution()
224 db.names.push_back(n); in parse_substitution()
[all …]
/external/testng/src/main/java/org/testng/
DCommandLineArgs.java19 @Parameter(names = { LOG, VERBOSE }, description = "Level of verbosity")
23 @Parameter(names = GROUPS, description = "Comma-separated list of group names to be run")
27 @Parameter(names = EXCLUDED_GROUPS, description ="Comma-separated list of group names to "
32 @Parameter(names = OUTPUT_DIRECTORY, description ="Output directory")
36 @Parameter(names = JUNIT, description ="JUnit mode")
40 @Parameter(names = MIXED, description ="Mixed mode - autodetect the type of current test" +
45 @Parameter(names = LISTENER, description = "List of .class files or list of class names" +
50 @Parameter(names = METHOD_SELECTORS, description = "List of .class files or list of class " +
51 "names implementing IMethodSelector")
55 @Parameter(names = OBJECT_FACTORY, description = "List of .class files or list of class " +
[all …]
/external/jcommander/src/test/java/com/beust/jcommander/args/
DCommandLineArgs.java31 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity")
34 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
37 @Parameter(names = "-excludedgroups", description ="Comma-separated list of group names to be " +
41 @Parameter(names = "-d", description ="Output directory")
44 @Parameter(names = "-junit", description ="JUnit mode")
47 @Parameter(names = "-listener", description = "List of .class files or list of class names" +
51 @Parameter(names = "-methodselectors", description = "List of .class files or list of class " +
52 "names implementing IMethodSelector")
55 @Parameter(names = "-objectfactory", description = "List of .class files or list of class " +
56 "names implementing ITestRunnerFactory")
[all …]
/external/selinux/checkpolicy/
Dpolicy_parse.y223 default_user_def : DEFAULT_USER names SOURCE ';'
225 | DEFAULT_USER names TARGET ';'
228 default_role_def : DEFAULT_ROLE names SOURCE ';'
230 | DEFAULT_ROLE names TARGET ';'
233 default_type_def : DEFAULT_TYPE names SOURCE ';'
235 | DEFAULT_TYPE names TARGET ';'
238 default_range_def : DEFAULT_RANGE names SOURCE LOW ';'
240 | DEFAULT_RANGE names SOURCE HIGH ';'
242 | DEFAULT_RANGE names SOURCE LOW_HIGH ';'
244 | DEFAULT_RANGE names TARGET LOW ';'
[all …]
/external/llvm-project/lldb/test/API/python_api/frame/get-variables/
DTestGetVariables.py16 names = list()
18 names.append(value.GetName())
19 return names
31 def verify_variable_names(self, description, value_list, names): argument
32 copy_names = list(names)
116 self.verify_variable_names("check names of arguments", vars, arg_names)
131 self.verify_variable_names("check names of locals", vars, local_names)
144 "check names of statics", vars, static_names)
150 names = arg_names + local_names
151 count = len(names)
[all …]
/external/deqp-deps/glslang/SPIRV/
Ddisassemble.cpp18 // Neither the name of 3Dlabs Inc. Ltd. nor the names of its
429 // Get names for printing "(XXX)" for readability, *after* this id in disassembleInstruction()
554 static void GLSLstd450GetDebugNames(const char** names) in GLSLstd450GetDebugNames() argument
557 names[i] = "Unknown"; in GLSLstd450GetDebugNames()
559 names[GLSLstd450Round] = "Round"; in GLSLstd450GetDebugNames()
560 names[GLSLstd450RoundEven] = "RoundEven"; in GLSLstd450GetDebugNames()
561 names[GLSLstd450Trunc] = "Trunc"; in GLSLstd450GetDebugNames()
562 names[GLSLstd450FAbs] = "FAbs"; in GLSLstd450GetDebugNames()
563 names[GLSLstd450SAbs] = "SAbs"; in GLSLstd450GetDebugNames()
564 names[GLSLstd450FSign] = "FSign"; in GLSLstd450GetDebugNames()
[all …]
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DPathTester.java40 private ImmutableList<String> names = ImmutableList.of(); field in PathTester
52 public PathTester names(Iterable<String> names) { in names() method in PathTester
53 this.names = ImmutableList.copyOf(names); in names()
57 public PathTester names(String... names) { in names() argument
58 return names(Arrays.asList(names)); in names()
89 assertEquals(names.size(), path.getNameCount()); in testNames()
90 assertEquals(names, names(path)); in testNames()
91 for (int i = 0; i < names.size(); i++) { in testNames()
92 assertEquals(names.get(i), path.getName(i).toString()); in testNames()
93 // don't test individual names if this is an individual name in testNames()
[all …]
/external/llvm-project/llvm/test/tools/llvm-objdump/ELF/ARM/
Dreg-names.s3 @ RUN: llvm-objdump -d -Mreg-names-std %t \
5 @ RUN: llvm-objdump -d --disassembler-options=reg-names-raw %t \
7 @ RUN: llvm-objdump -d -Mreg-names-raw,reg-names-std %t \
9 @ RUN: llvm-objdump -d -Mreg-names-std,reg-names-raw %t \
17 @ RUN: llvm-objdump -d --disassembler-options=reg-names-raw %t > %t.raw
18 @ RUN: llvm-objdump -d -M reg-names-raw %t > %t.1
19 @ RUN: llvm-objdump -d -Mreg-names-raw %t > %t.2
20 @ RUN: llvm-objdump -d -Mreg-names-std -Mreg-names-raw %t > %t.3
21 @ RUN: llvm-objdump -d -Mreg-names-std,reg-names-raw %t > %t.4
22 @ RUN: llvm-objdump -dM reg-names-std,reg-names-raw %t > %t.5
[all …]
/external/adhd/cras/src/server/
Dcras_alsa_mixer_name.h22 /* Represents a list of mixer names found in ALSA. */
33 * names - A list of controls (may be NULL).
40 * when names is NULL).
42 struct mixer_name *mixer_name_add(struct mixer_name *names, const char *name,
49 * names - A list of controls (may be NULL).
50 * name_array - The names to add.
57 * when names is NULL).
59 struct mixer_name *mixer_name_add_array(struct mixer_name *names,
65 /* Frees a list of names.
68 * names - A list of names.
[all …]
Dcras_alsa_mixer_name.c13 struct mixer_name *mixer_name_add(struct mixer_name *names, const char *name, in mixer_name_add() argument
20 return names; in mixer_name_add()
24 return names; in mixer_name_add()
29 return names; in mixer_name_add()
34 DL_APPEND(names, m_name); in mixer_name_add()
35 return names; in mixer_name_add()
38 struct mixer_name *mixer_name_add_array(struct mixer_name *names, in mixer_name_add_array() argument
46 names = mixer_name_add(names, name_array[i], dir, type); in mixer_name_add_array()
47 return names; in mixer_name_add_array()
50 void mixer_name_free(struct mixer_name *names) in mixer_name_free() argument
[all …]
/external/proguard/src/proguard/obfuscate/
DObfuscator.java73 // If the class member names have to correspond globally, in execute()
97 // All library classes and library class members keep their names. in execute()
101 // We also keep the names of all methods of classes that are returned in execute()
103 // implementations of interfaces. The method names then have to match in execute()
104 // with the invoke dynamic names. in execute()
126 // Keep parameter names and types if specified. in execute()
142 // override the names of library classes and of library class members. in execute()
181 // Come up with new names for all classes. in execute()
200 // Come up with new names for all class members. in execute()
211 // Maintain a map of names to avoid [descriptor - new name - old name]. in execute()
[all …]
/external/llvm-project/llvm/test/tools/dsymutil/X86/
Daccelerator.test7 RUN: llvm-dwarfdump -debug-names %t.dwarf.dSYM | FileCheck %s -check-prefixes=NAMES,DWARF
8 RUN: llvm-dwarfdump -apple-names -apple-namespaces -apple-types %t.apple.dSYM | FileCheck %s -check…
16 RUN: llvm-dwarfdump -debug-names %t.apple.dSYM | FileCheck %s -check-prefixes=NAMES,DWARF
17 RUN: llvm-dwarfdump -apple-names -apple-namespaces -apple-types %t.dwarf.dSYM | FileCheck %s -check…
30 NAMES-DAG: "private_int"
31 NAMES-DAG: "baz"
32 NAMES-DAG: "int"
33 NAMES-DAG: "bar"
34 NAMES-DAG: "foo"
35 NAMES-DAG: "inc"
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
DJavaNamesTest.java24 private ILanguageNames names; field in JavaNamesTest
28 names = new JavaNames(); in setup()
33 assertEquals("default", names.getPackageName("")); in testGetPackageName1()
38 assertEquals("java.lang", names.getPackageName("java/lang")); in testGetPackageName2()
43 assertEquals("Main", names.getClassName("Main", null, null, null)); in testGetClassName1()
49 names.getClassName("java/lang/Object", null, null, null)); in testGetClassName2()
55 names.getClassName("java/util/Map$Entry", null, null, null)); in testGetClassName3()
60 assertEquals("Bar.new Object() {...}", names.getClassName( in testGetClassName4()
66 assertEquals("Bar.new ISample() {...}", names.getClassName( in testGetClassName5()
74 names.getClassName("com/foo/Bar$1", null, null, null)); in testGetClassName6()
[all …]
/external/tensorflow/tensorflow/python/util/
Dtf_export.py55 # List of subpackage names used by TensorFlow components. Have to check that
56 # TensorFlow core repo does not export any symbols under these names.
60 'ExportedApiAttributes', ['names', 'constants'])
89 """Raised when adding API names to symbol that already has API names."""
121 api_names_attr = API_ATTRS[api_name].names
134 api_names_attr = API_ATTRS_V1[api_name].names
146 api_names: API names iterable.
147 deprecated_api_names: Deprecated API names iterable.
165 """Get a list of TF 1.* names for this symbol.
168 symbol: symbol to get API names for.
[all …]
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DPathService.java141 List<Name> names(Iterable<String> names) { in names() method in PathService
143 for (String name : names) { in names()
159 /** Returns a relative path with the given names. */
160 public JimfsPath createRelativePath(Iterable<Name> names) { in createRelativePath() argument
161 return createPath(null, ImmutableList.copyOf(names)); in createRelativePath()
164 /** Returns a path with the given root (or no root, if null) and the given names. */
165 public JimfsPath createPath(@NullableDecl Name root, Iterable<Name> names) { in createPath() argument
166 ImmutableList<Name> nameList = ImmutableList.copyOf(Iterables.filter(names, NOT_EMPTY)); in createPath()
169 // no root and no names in createPath()
175 /** Returns a path with the given root (or no root, if null) and the given names. */
[all …]
DJimfsPath.java55 private final ImmutableList<Name> names; field in JimfsPath
58 public JimfsPath(PathService pathService, @NullableDecl Name root, Iterable<Name> names) { in JimfsPath() argument
61 this.names = ImmutableList.copyOf(names); in JimfsPath()
71 public ImmutableList<Name> names() { in names() method in JimfsPath
72 return names; in names()
81 if (!names.isEmpty()) { in name()
82 return Iterables.getLast(names); in name()
91 return root == null && names.size() == 1 && names.get(0).toString().isEmpty(); in isEmptyPath()
124 return names.isEmpty() ? null : getName(names.size() - 1); in getFileName()
129 if (names.isEmpty() || (names.size() == 1 && root == null)) { in getParent()
[all …]
/external/pigweed/
D.pylintrc3 # A comma-separated list of package or module names from where C extensions may
9 # Add files or directories to the blocklist. They should be base names, not
14 # regex matches against base names, not paths.
30 # List of plugins (as comma separated values of python module names) to load,
152 # List of additional names supposed to be defined in builtins. Remember that
168 # Argument names that match this expression will be ignored. Default to name
170 ignored-argument-names=_.*|^ignored_|^unused_
175 # List of qualified module names which can have objects that can redefine
244 # Naming style matching correct argument names.
247 # Regular expression matching correct argument names. Overrides argument-
[all …]
/external/yapf/
Dpylintrc10 # Add files or directories to the blacklist. They should be base names, not
17 # List of plugins (as comma separated values of python modules names) to load,
28 # A comma-separated list of package or module names from where C extensions may
206 # List of builtins function names that should not be used, separated by a comma
209 # Good variable names which should always be accepted, separated by a comma
210 good-names=i,e,s,_,fd,fp
212 # Bad variable names which should always be refused, separated by a comma
213 bad-names=foo,bar,baz,toto,tutu,tata
215 # Colon-delimited sets of names that determine each other's naming style when
222 # Regular expression matching correct function names
[all …]
/external/autotest/client/site_tests/platform_PrinterPpds/
Darchiver.py29 self, names, max_names_per_prefix, prefix_length=0):
31 Recursive function used to split given set of names into groups by
33 groups (prefixes) where the number of elements (names) in each group is
36 @param names: list of names to split into groups (names MUST BE sorted
38 @param max_names_per_prefix: maximum number of names assigned to
41 calls); all elements in the list given as the parameter 'names'
44 size (a number of names in the group).
49 if len(names) <= max_names_per_prefix:
50 return { names[0][0:prefix_length] : len(names) }
52 # - elements in 'names' are sorted and unique
[all …]
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/
DKeyboard.java12 * Object representing a keyboard layout. Includes identifier information, platform given names,
13 * platform specific names, all the key maps for all modifier set combinations and the possible
18 private final ImmutableList<String> names; field in Keyboard
23 private Keyboard(KeyboardId keyboardId, ImmutableList<String> names, in Keyboard() argument
26 this.names = checkNotNull(names); in Keyboard()
32 * Creates a keyboard given an identifier, a list of platform given names, key maps and
35 public static Keyboard of(KeyboardId keyboardId, ImmutableList<String> names, in of() argument
37 return new Keyboard(keyboardId, names, keyMaps, transforms); in of()
44 public ImmutableList<String> names() { in names() method in Keyboard
45 return names; in names()
[all …]
/external/fonttools/Tests/ttLib/tables/
D_n_a_m_e_test.py14 def names(nameTable): function
16 for n in nameTable.names]
25 table.names = [
43 self.assertTrue(len(table.names) == 3)
46 self.assertTrue(len(table.names) == 3)
57 # Corner case: If a user appends a name record directly to `names`, the
61 table.names = [
69 table.names = [
74 table.names.sort()
85 self.assertEqual(len(table.names), 6)
[all …]
/external/oss-fuzz/
D.pylintrc3 # A comma-separated list of package or module names from where C extensions may
8 # Add files or directories to the blocklist. They should be base names, not
13 # regex matches against base names, not paths.
29 # List of plugins (as comma separated values of python module names) to load,
191 # Naming style matching correct argument names.
194 # Regular expression matching correct argument names. Overrides argument-
198 # Naming style matching correct attribute names.
201 # Regular expression matching correct attribute names. Overrides attr-naming-
205 # Bad variable names which should always be refused, separated by a comma.
206 bad-names=foo,
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DDataRecord.java61 record.pl = in.namedIndex("pl", EPluralization.names); in read()
63 record.genders = in.namedIndexArray("gender", EGender.names); in read()
74 EHalfPlacement.names); in read()
76 EHalfSupport.names); in read()
87 ENumberSystem.names); in read()
93 EZeroHandling.names); in read()
95 EDecimalHandling.names); in read()
97 EFractionHandling.names); in read()
102 EMilliSupport.names); in read()
128 out.namedIndex("pl", EPluralization.names, pl); in write()
[all …]

12345678910>>...540