Home
last modified time | relevance | path

Searched refs:descriptions (Results 1 – 25 of 522) sorted by relevance

12345678910>>...21

/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()
127 private Map<String, Object> findAllDescriptions(List<?> keys, Map<?, String> descriptions) { in findAllDescriptions() argument
130 results.put(descriptions.get(o), o); in findAllDescriptions()
/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/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/fonttools/Lib/fontTools/
Dhelp.py12 descriptions = {}
25 descriptions[pkg] = description
28 for pkg, description in descriptions.items():
/external/junit/src/main/java/org/junit/runner/manipulation/
DOrderer.java28 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()
140 protected abstract List<Description> orderItems(Collection<Description> descriptions);
DSorter.java69 protected final List<Description> orderItems(Collection<Description> descriptions) { in orderItems() argument
76 List<Description> sorted = new ArrayList<Description>(descriptions); in orderItems()
/external/llvm-project/lldb/include/lldb/Utility/
DCompletionRequest.h88 void GetDescriptions(StringList &descriptions) const;
210 const StringList &descriptions) { in AddCompletions() argument
211 lldbassert(completions.GetSize() == descriptions.GetSize()); in AddCompletions()
214 descriptions.GetStringAtIndex(i)); in AddCompletions()
/external/llvm-project/clang-tools-extra/docs/
Dpp-trace.rst131 The argument descriptions table describes the callback argument information
161 Argument descriptions:
186 Argument descriptions:
208 Argument descriptions:
228 Argument descriptions:
261 Argument descriptions:
283 Argument descriptions:
300 Argument descriptions:
320 Argument descriptions:
340 Argument descriptions:
[all …]
/external/llvm-project/lldb/source/Utility/
DCompletionRequest.cpp77 void CompletionResult::GetDescriptions(StringList &descriptions) const { in GetDescriptions()
78 descriptions.Clear(); in GetDescriptions()
80 descriptions.AppendString(completion.GetDescription()); in GetDescriptions()
/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]))
/external/fmtlib/doc/_static/
Dbreathe.css4 /* So enum value descriptions are displayed inline to the item */
9 /* So parameter descriptions are displayed inline to the item */
/external/jcommander/src/main/java/com/beust/jcommander/
DJCommander.java53 private Map<IKey, ParameterDescription> descriptions; field in JCommander
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()
540 descriptions = Maps.newHashMap(); in createDescriptions()
574 if (descriptions.containsKey(new StringKey(name))) { in addDescription()
579 descriptions.put(new StringKey(name), pd); in addDescription()
[all …]
/external/ltp/testcases/kernel/syscalls/timer_settime/
Dtimer_settime02.c33 static const char * const descriptions[] = { variable
62 tst_res(TINFO, "Testing for %s:", descriptions[n]); in run()
/external/llvm/lib/Target/Mips/
DMipsEVAInstrInfo.td49 // Instruction descriptions
53 // Memory Load/Store EVA descriptions
88 // Load/Store Left/Right EVA descriptions
117 // Load-linked EVA, Store-conditional EVA descriptions
/external/python/cpython3/Lib/test/support/
Dtestresult.py20 def __init__(self, stream, descriptions, verbosity): argument
21 super().__init__(stream=stream, descriptions=descriptions, verbosity=0)
/external/autotest/server/cros/ap_configurators/
Dpyauto_utils.py239 def __init__(self, stream, descriptions, verbosity): argument
240 unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
276 return _GTestTextTestResult(self.stream, self.descriptions, self.verbosity)
/external/llvm-project/llvm/lib/Target/Mips/
DMipsEVAInstrInfo.td48 // Instruction descriptions
52 // Memory Load/Store EVA descriptions
89 // Load/Store Left/Right EVA descriptions
124 // Load-linked EVA, Store-conditional EVA descriptions
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsEVAInstrInfo.td48 // Instruction descriptions
52 // Memory Load/Store EVA descriptions
89 // Load/Store Left/Right EVA descriptions
124 // Load-linked EVA, Store-conditional EVA descriptions
/external/tensorflow/tensorflow/core/framework/
Dapi_def.proto88 // current way of modifying arg descriptions (other than replacing
89 // them entirely) as can be done with op descriptions.
117 // way of modifying attr descriptions as can be done with op descriptions.
/external/vixl/test/aarch32/config/
Ddata-types.json27 // Data type description shared by test case descriptions.
33 // - name: Identifier for the operand. It allows test case descriptions to
1673 // - name: Identifer for the input. It allows test case descriptions to refer

12345678910>>...21