Home
last modified time | relevance | path

Searched refs:names (Results 1 – 10 of 10) sorted by relevance

/art/tools/
Dlibcore_failures.txt27 names: ["libcore.java.lang.OldSystemTest#test_getProperties"]
36 names: ["libcore.io.OsTest#testUnixDomainSockets_in_file_system"]
42 names: ["libcore.java.util.TimeZoneTest#testDisplayNames",
52 names: ["org.apache.harmony.tests.java.util.DateTest#test_Constructor"]
58 names: ["libcore.icu.DateIntervalFormatTest#test10089890",
75 names: ["libcore.javax.crypto.CipherTest#testCipherInitWithCertificate",
91 names: ["org.apache.harmony.tests.java.util.ScannerTest#testPerformance"]
97 names: ["org.apache.harmony.tests.java.lang.ProcessTest#test_getErrorStream"]
114 names: ["libcore.java.lang.SystemTest#testArrayCopyConcurrentModification"],
120 names: ["libcore.io.OsTest#test_socketPing"]
[all …]
Dlibcore_failures_concurrent_collector.txt16 names: ["jsr166.LinkedTransferQueueTest#testTransfer2",
/art/test/
DAndroid.run-test.mk179 define all-run-test-names
207 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
217 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
233 …ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES),…
246 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \
268 …ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES),…
282 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),prebuild, \
300 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),no-prebuild, \
316 …ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES),…
328 …ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES),…
[all …]
/art/cmdline/
Dcmdline_parser.h226 void SetNames(std::vector<const char*>&& names) { in SetNames()
227 argument_info_.names_ = names; in SetNames()
230 void SetNames(std::initializer_list<const char*> names) { in SetNames()
231 argument_info_.names_ = names; in SetNames()
319 void SetNames(std::vector<const char*>&& names) { in SetNames()
320 names_ = std::move(names); in SetNames()
323 void SetNames(std::initializer_list<const char*> names) { in SetNames()
324 names_ = names; in SetNames()
371 UntypedArgumentBuilder Define(std::initializer_list<const char*> names) { in Define()
373 b.SetNames(names); in Define()
DREADME.md172 `Ignore` function which takes a list of argument definition names.
/art/test/123-compiler-regressions-mt/
Dinfo.txt6 17689750 GVN assigns the same value names across MONITOR_ENTER and volatile reads.
/art/test/509-pre-header/smali/
DPreHeader.smali19 # Label names in this method are taken from the original apk
/art/
DNOTICE152 names, trademarks, service marks, or product names of the Licensor,
226 * Neither the names of the LLVM Team, University of Illinois at
227 Urbana-Champaign, nor the names of its contributors may be used to
249 other licenses gives permission to use the names of the LLVM Team or the
/art/test/046-reflect/src/
DMain.java866 public void aMethod(Set<String> names) {} in aMethod() argument
867 public void aMethodIdentical(Set<String> names) {} in aMethodIdentical() argument
871 public void aMethod(T[] names) {} in aMethod() argument
872 public void aMethodIdentical(T[] names) {} in aMethodIdentical() argument
/art/compiler/debug/
Delf_debug_info_writer.h47 std::vector<const char*> names; in GetParamNames() local
56 names.push_back(mi->dex_file->StringDataByIdx(id)); in GetParamNames()
60 return names; in GetParamNames()