Home
last modified time | relevance | path

Searched full:descriptions (Results 1 – 25 of 1706) sorted by relevance

12345678910>>...69

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFExpression.cpp26 DescVector Descriptions; in getDescriptions() local
30 Descriptions.resize(0xff); in getDescriptions()
31 Descriptions[DW_OP_addr] = Desc(Op::Dwarf2, Op::SizeAddr); in getDescriptions()
32 Descriptions[DW_OP_deref] = Desc(Op::Dwarf2); in getDescriptions()
33 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getDescriptions()
34 Descriptions[DW_OP_const1s] = Desc(Op::Dwarf2, Op::SignedSize1); in getDescriptions()
35 Descriptions[DW_OP_const2u] = Desc(Op::Dwarf2, Op::Size2); in getDescriptions()
36 Descriptions[DW_OP_const2s] = Desc(Op::Dwarf2, Op::SignedSize2); in getDescriptions()
37 Descriptions[DW_OP_const4u] = Desc(Op::Dwarf2, Op::Size4); in getDescriptions()
38 Descriptions[DW_OP_const4s] = Desc(Op::Dwarf2, Op::SignedSize4); in getDescriptions()
[all …]
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFExpression.cpp25 DescVector Descriptions; in getDescriptions() local
29 Descriptions.resize(0xff); in getDescriptions()
30 Descriptions[DW_OP_addr] = Desc(Op::Dwarf2, Op::SizeAddr); in getDescriptions()
31 Descriptions[DW_OP_deref] = Desc(Op::Dwarf2); in getDescriptions()
32 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getDescriptions()
33 Descriptions[DW_OP_const1s] = Desc(Op::Dwarf2, Op::SignedSize1); in getDescriptions()
34 Descriptions[DW_OP_const2u] = Desc(Op::Dwarf2, Op::Size2); in getDescriptions()
35 Descriptions[DW_OP_const2s] = Desc(Op::Dwarf2, Op::SignedSize2); in getDescriptions()
36 Descriptions[DW_OP_const4u] = Desc(Op::Dwarf2, Op::Size4); in getDescriptions()
37 Descriptions[DW_OP_const4s] = Desc(Op::Dwarf2, Op::SignedSize4); in getDescriptions()
[all …]
/external/llvm-project/lldb/unittests/Utility/
DCompletionRequestTest.cpp53 StringList matches, descriptions; in TEST() local
59 result.GetDescriptions(descriptions); in TEST()
63 EXPECT_EQ(1U, descriptions.GetSize()); in TEST()
64 EXPECT_STREQ("car", descriptions.GetStringAtIndex(0U)); in TEST()
186 StringList matches, descriptions; in TEST() local
191 result.GetDescriptions(descriptions); in TEST()
198 result.GetDescriptions(descriptions); in TEST()
202 EXPECT_EQ(1U, descriptions.GetSize()); in TEST()
204 EXPECT_STREQ("comment", descriptions.GetStringAtIndex(0)); in TEST()
208 result.GetDescriptions(descriptions); in TEST()
[all …]
/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
DDefaultMapStorage.java36 private String[] descriptions; field in DefaultMapStorage
45 return descriptions[index]; in getDescription()
52 descriptions = new String[numOfEntries]; in readFromSortedMap()
58 sortedPhonePrefixMap.values().toArray(descriptions); in readFromSortedMap()
67 if (descriptions == null || descriptions.length < numOfEntries) { in readExternal()
68 descriptions = new String[numOfEntries]; in readExternal()
72 descriptions[i] = objectInput.readUTF(); in readExternal()
86 objectOutput.writeUTF(descriptions[i]); in writeExternal()
/external/libphonenumber/repackaged/internal/prefixmapper/src/com/android/i18n/phonenumbers/prefixmapper/
DDefaultMapStorage.java37 private String[] descriptions; field in DefaultMapStorage
46 return descriptions[index]; in getDescription()
53 descriptions = new String[numOfEntries]; in readFromSortedMap()
59 sortedPhonePrefixMap.values().toArray(descriptions); in readFromSortedMap()
68 if (descriptions == null || descriptions.length < numOfEntries) { in readExternal()
69 descriptions = new String[numOfEntries]; in readExternal()
73 descriptions[i] = objectInput.readUTF(); in readExternal()
87 objectOutput.writeUTF(descriptions[i]); in writeExternal()
/external/objenesis/tck/src/main/java/org/objenesis/tck/
DTCK.java58 private final Map<Object, String> descriptions = new HashMap<Object, String>(); field in TCK
68 descriptions.put(candidateClass, description); in registerCandidate()
79 descriptions.put(objenesis, description); in registerObjenesisInstance()
88 reporter.startTests(describePlatform(), findAllDescriptions(candidates, descriptions), in runTests()
89 findAllDescriptions(objenesisInstances, descriptions)); in runTests()
92 String candidateDescription = descriptions.get(candidateClass); in runTests()
95 String objenesisDescription = descriptions.get(objenesis); in runTests()
123 * @param descriptions all descriptions
127 private Map<String, Object> findAllDescriptions(List<?> keys, Map<?, String> descriptions) { in findAllDescriptions() argument
130 results.put(descriptions.get(o), o); in findAllDescriptions()
/external/llvm-project/llvm/test/tools/yaml2obj/ELF/DWARF/
Ddebug-loclists.yaml39 ## ^- location descriptions length (ULEB1…
47 ## ^- location descriptions length (ULEB1…
54 ## ^- location descriptions length (ULEB1…
59 ## ^- location descriptions length (ULEB1…
80 ## ^- location descriptions length (ULEB1…
89 ## ^- location descriptions length (ULEB1…
108 Descriptions:
116 Descriptions:
122 Descriptions:
128 Descriptions:
[all …]
/external/python/cpython2/Lib/unittest/
Drunner.py36 def __init__(self, stream, descriptions, verbosity): argument
37 super(TextTestResult, self).__init__(stream, descriptions, verbosity)
41 self.descriptions = descriptions
45 if self.descriptions and doc_first_line:
127 def __init__(self, stream=sys.stderr, descriptions=True, verbosity=1, argument
130 self.descriptions = descriptions
138 return self.resultclass(self.stream, self.descriptions, self.verbosity)
/external/python/cpython3/Lib/unittest/
Drunner.py37 def __init__(self, stream, descriptions, verbosity): argument
38 super(TextTestResult, self).__init__(stream, descriptions, verbosity)
42 self.descriptions = descriptions
46 if self.descriptions and doc_first_line:
128 def __init__(self, stream=None, descriptions=True, verbosity=1, argument
139 self.descriptions = descriptions
149 return self.resultclass(self.stream, self.descriptions, self.verbosity)
/external/junit/src/main/java/org/junit/runner/manipulation/
DOrderer.java24 * Orders the descriptions.
26 * @return descriptions in order
28 public List<Description> order(Collection<Description> descriptions) in order() argument
31 Collections.unmodifiableCollection(descriptions)); in order()
36 Set<Description> uniqueDescriptions = new HashSet<Description>(descriptions); in order()
DOrdering.java39 protected List<Description> orderItems(Collection<Description> descriptions) { in shuffledBy() argument
40 List<Description> shuffled = new ArrayList<Description>(descriptions); in shuffledBy()
136 * Implemented by sub-classes to order the descriptions.
138 * @return descriptions in order
140 protected abstract List<Description> orderItems(Collection<Description> descriptions);
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/
Drunner.py44 def __init__(self, stream, descriptions, verbosity): argument
49 self.descriptions = descriptions
60 if self.descriptions and doc_first_line:
140 def __init__(self, stream=sys.stderr, descriptions=True, verbosity=1, argument
143 self.descriptions = descriptions
151 return self.resultclass(self.stream, self.descriptions, self.verbosity)
/external/llvm-project/lldb/include/lldb/Utility/
DCompletionRequest.h85 /// Adds all collected completion descriptions to the given list.
88 void GetDescriptions(StringList &descriptions) const;
201 /// Adds multiple possible completion strings alongside their descriptions.
203 /// The number of completions and descriptions must be identical.
206 /// \param descriptions The list of descriptions.
210 const StringList &descriptions) { in AddCompletions() argument
211 lldbassert(completions.GetSize() == descriptions.GetSize()); in AddCompletions()
214 descriptions.GetStringAtIndex(i)); in AddCompletions()
/external/llvm-project/flang/docs/
DRuntimeTypeInfo.md27 This note summarizes the requirements for these descriptions.
30 descriptions from its scoped symbol table after name resolution
42 derived type descriptions in the runtime library.
51 The ordered component descriptions are needed to implement
61 offsets, bounds, cobounds, derived type descriptions when appropriate,
114 type descriptions at runtime.
249 ## Exporting derived type descriptions from module relocatables
267 Derived type descriptions therefore will contain pointers to
/external/mtools/
Dmtools.tmpl.5214 letter is tried. See section multiple descriptions, for more details on
215 supplying several descriptions for one drive letter.
280 The following shorthand geometry descriptions are available:
298 The shorthand format descriptions may be amended. For example,
439 .SS \ \ Supplying\ multiple\ descriptions\ for\ a\ drive
441 It is possible to supply multiple descriptions for a drive. In that
442 case, the descriptions are tried in order until one is found that
443 fits. Descriptions may fail for several reasons:
475 You may also use multiple drive descriptions to access both of your
495 When using multiple configuration files, drive descriptions in the files
[all …]
Dmtools.5214 letter is tried. See section multiple descriptions, for more details on
215 supplying several descriptions for one drive letter.
280 The following shorthand geometry descriptions are available:
298 The shorthand format descriptions may be amended. For example,
439 .SS \ \ Supplying\ multiple\ descriptions\ for\ a\ drive
441 It is possible to supply multiple descriptions for a drive. In that
442 case, the descriptions are tried in order until one is found that
443 fits. Descriptions may fail for several reasons:
475 You may also use multiple drive descriptions to access both of your
495 When using multiple configuration files, drive descriptions in the files
[all …]
/external/cpuinfo/src/x86/mach/
Dinit.c34 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" logical processors", in cpuinfo_x86_mach_init()
40 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" cores", in cpuinfo_x86_mach_init()
47 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" core clusters", in cpuinfo_x86_mach_init()
53 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" physical packages", in cpuinfo_x86_mach_init()
190 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1I caches", in cpuinfo_x86_mach_init()
214 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1D caches", in cpuinfo_x86_mach_init()
238 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L2 caches", in cpuinfo_x86_mach_init()
262 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L3 caches", in cpuinfo_x86_mach_init()
286 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L4 caches", in cpuinfo_x86_mach_init()
/external/cpuinfo/src/emscripten/
Dinit.c63 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" logical processors", in cpuinfo_emscripten_init()
69 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" cores", in cpuinfo_emscripten_init()
75 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" clusters", in cpuinfo_emscripten_init()
82 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1I caches", in cpuinfo_emscripten_init()
89 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1D caches", in cpuinfo_emscripten_init()
96 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L2 caches", in cpuinfo_emscripten_init()
/external/python/cpython2/Lib/unittest/test/
Dtest_runner.py149 self.assertTrue(runner.descriptions)
155 def __init__(self, stream, descriptions, verbosity): argument
156 super(AResult, self).__init__(stream, descriptions, verbosity)
256 DESCRIPTIONS = object()
258 runner = unittest.TextTestRunner(STREAM, DESCRIPTIONS, VERBOSITY,
262 expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY)
/external/fonttools/Lib/fontTools/
Dhelp.py12 descriptions = {}
25 descriptions[pkg] = description
28 for pkg, description in descriptions.items():
/external/skqp/docs/
DusingBookmaker.bmh233 Documentation consists of cross references, descriptions, and examples.
235 require descriptions. Most also require examples.
253 Descriptions start with an active verb. Descriptions are complete, punctuated
258 Descriptions are not self-referential; they do not include the thing they
259 describe. Descriptions may contain upper case or camel case references to
262 Descriptions may contain code and formulas, each bracketed by markup.
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/test/
Dtest_runner.py17 self.assertTrue(runner.descriptions)
114 DESCRIPTIONS = object()
116 runner = unittest2.TextTestRunner(STREAM, DESCRIPTIONS, VERBOSITY,
120 expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY)
/external/jcommander/src/main/java/com/beust/jcommander/
DJCommander.java53 private Map<IKey, ParameterDescription> descriptions; field in JCommander
193 * @param bundle The bundle to use for the descriptions. Can be null.
201 * @param bundle The bundle to use for the descriptions. Can be null.
278 * Sets the {@link ResourceBundle} to use for looking up descriptions.
310 if (descriptions == null) createDescriptions(); in parse()
327 for (ParameterDescription pd : descriptions.values()) { in initializeDefaultValues()
418 for (ParameterDescription pd : descriptions.values()) { in expandDynamicArg()
438 ParameterDescription pd = descriptions.get(key); in matchArg()
461 for (IKey key : descriptions.keySet()) { in isOption()
472 for (Map.Entry<IKey, ParameterDescription> es : descriptions.entrySet()) { in getPrefixDescriptionFor()
[all …]
/external/cpuinfo/src/x86/linux/
Dinit.c184 "failed to allocate %zu bytes for descriptions of %"PRIu32" x86 logical processors", in cpuinfo_x86_linux_init()
234 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" logical processors", in cpuinfo_x86_linux_init()
282 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" cores", in cpuinfo_x86_linux_init()
289 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" core clusters", in cpuinfo_x86_linux_init()
296 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" physical packages", in cpuinfo_x86_linux_init()
304 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1I caches", in cpuinfo_x86_linux_init()
312 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1D caches", in cpuinfo_x86_linux_init()
320 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L2 caches", in cpuinfo_x86_linux_init()
328 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L3 caches", in cpuinfo_x86_linux_init()
336 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L4 caches", in cpuinfo_x86_linux_init()
/external/wayland/protocol/
Dgenerate-shm-formats.py45 descriptions = {} variable
73 descriptions[drm_format_to_wl(ident)] = desc.strip()
150 if fmt in descriptions:
151 output_file.write(' summary="{}"'.format(descriptions[fmt]))

12345678910>>...69