Home
last modified time | relevance | path

Searched refs:all (Results 1 – 25 of 87) sorted by relevance

1234

/art/test/596-monitor-inflation/src-art/
DMain.java23 IdentityHashMap<Object, Integer> all = new IdentityHashMap(); in main() local
28 all.put(obj, obj.hashCode()); in main()
57 for (Object obj: all.keySet()) { in main()
59 if (obj.hashCode() != all.get(obj)) { in main()
64 for (Object obj: all.keySet()) { in main()
67 if (obj.hashCode() != all.get(obj)) { in main()
/art/tools/ahat/src/main/com/android/ahat/
DSubsetSelector.java84 int all = mElements.size(); in render() local
85 if (all > kDefaultShown) { in render()
87 menu.appendFormat("(%d of %d elements shown - ", mLimit, all); in render()
97 if (mLimit < all) { in render()
98 int more = Math.min(mLimit + kIncrAmount, all); in render()
101 menu.appendLink(mQuery.with(mId, all), DocString.text("show all")); in render()
/art/build/
DAndroid.cpplint.mk32 ART_CPPLINT_SRC := $(addprefix $(LOCAL_PATH)/, $(call all-subdir-named-files,*.h) $(call all-subdir…
36 ART_CPPLINT_CFG := $(addprefix $(LOCAL_PATH)/, $(call all-subdir-named-files,CPPLINT.cfg))
44 .PHONY: cpplint-art-all
45 cpplint-art-all:
/art/tools/luci/config/
Dluci-logdog.cfg7 # Currently, all projects with "all" (aka public) read/write permissions use
9 reader_auth_groups: "all"
Dproject.cfg4 access: "group:all" # public
/art/compiler/optimizing/
Dside_effects_test.cc55 SideEffects all = SideEffects::All(); in testWriteAndReadSanity() local
56 EXPECT_TRUE(all.MayDependOn(write)); in testWriteAndReadSanity()
57 EXPECT_FALSE(write.MayDependOn(all)); in testWriteAndReadSanity()
58 EXPECT_FALSE(all.MayDependOn(read)); in testWriteAndReadSanity()
59 EXPECT_TRUE(read.MayDependOn(all)); in testWriteAndReadSanity()
90 SideEffects all = SideEffects::All(); in TEST() local
91 EXPECT_TRUE(all.DoesAnyWrite()); in TEST()
92 EXPECT_TRUE(all.DoesAnyRead()); in TEST()
93 EXPECT_FALSE(all.DoesNothing()); in TEST()
94 EXPECT_TRUE(all.DoesAllReadWrite()); in TEST()
/art/tools/
Dsymbolize.sh52 function all() { function
63 all
/art/test/062-character-encodings/src/
DMain.java17 SortedMap<String, Charset> all = Charset.availableCharsets(); in main() local
19 for (Map.Entry<String, Charset> e : all.entrySet()) { in main()
/art/tools/runtime_memusage/
DREADME37 sanitizer_logcat_analysis.sh at minimum requires all logcat output in the form
44 Forces all pids associated with registered dex
55 Puts all output in specified directory.
66 Forces redo of all commands even if output
71 Filters out all traces that do not have
76 Filters out all Dex File offsets outside the
86 Filters out all time offsets outside the
/art/test/082-inline-execute/
Dinfo.txt1 Test all intrinsics.
/art/libnativeloader/test/
DAndroid.mk43 LOCAL_SRC_FILES := $(call all-java-files-under, src)
53 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/art/test/175-alloc-big-bignums/
Dinfo.txt6 will be live at any point. Basically all native memory deallocation is
10 to exhaust device memory, and kill off all processes on the device, including the
/art/test/163-app-image-methods/
Dexpected.txt1 Eating all memory.
/art/test/159-app-image-fields/
Dexpected.txt1 Eating all memory.
/art/test/1986-structural-redefine-multi-thread-stack-scope/
Dinfo.txt1 Tests StackReflectiveHandleScope works when there are several all in different threads.
/art/test/1987-structural-redefine-recursive-stack-scope/
Dinfo.txt1 Tests StackReflectiveHandleScope works when there are several all in different recursive frames.
/art/test/906-iterate-heap/src/art/
DTest906.java37 int all = iterateThroughHeapCount(0, null, Integer.MAX_VALUE); in testHeapCount() local
45 if (all != tagged + untagged) { in testHeapCount()
46 throw new IllegalStateException("Instances: " + all + " != " + tagged + " + " + untagged); in testHeapCount()
48 if (all != taggedClass + untaggedClass) { in testHeapCount()
49 throw new IllegalStateException("By class: " + all + " != " + taggedClass + " + " + in testHeapCount()
58 if (all == tagged) { in testHeapCount()
61 if (all == taggedClass) { in testHeapCount()
/art/test/655-jit-clinit/
Dinfo.txt3 all JIT compilations.
/art/test/433-gvn/
Dinfo.txt2 used to not take into account all side effects between
/art/test/800-smali/
Dinfo.txt2 Will compile and run all the smali files in smali/ and run the test cases mentioned in src/Main.jav…
/art/test/134-reg-promotion/
Dinfo.txt2 and float operations is flushed to all home location.
/art/test/109-suspend-check/
Dinfo.txt1 To support garbage collection, debugging and profiling the VM must be able to send all threads
/art/test/2029-spaces-in-SimpleName/
Dinfo.txt4 the methods 'main' and some unpronounceable method which name contains all
/art/test/
DREADME.md35 The default logic for all of these these steps (build, run, check) is overridden
95 ## Running all tests on the build host
101 ## Running all tests on the target device
107 ## Running all gtests on the build host
113 ## Running all gtests on the target device
119 ## Running all run-tests on the build host
125 ## Running all run-tests on the target device
/art/test/2005-pause-all-redefine-multithreaded/
Dinfo.txt3 Tests that using the structural redefinition while pausing all other (main thread-group) threads

1234