HomeSort by relevance Sort by last modified time
    Searched refs:RootType (Results 1 - 10 of 10) sorted by null

  /art/tools/ahat/src/main/com/android/ahat/heapdump/
RootType.java 23 public enum RootType {
97 RootType(int mask) {
AhatInstance.java 236 void addRootType(RootType type) {
246 public Collection<RootType> getRootTypes() {
251 List<RootType> types = new ArrayList<RootType>();
252 for (RootType type : RootType.values()) {
Parser.java 290 roots.add(new RootData(objectId, RootType.JNI_GLOBAL));
298 roots.add(new RootData(objectId, RootType.JNI_LOCAL));
306 roots.add(new RootData(objectId, RootType.JAVA_FRAME));
313 roots.add(new RootData(objectId, RootType.NATIVE_STACK));
319 roots.add(new RootData(objectId, RootType.STICKY_CLASS));
326 roots.add(new RootData(objectId, RootType.THREAD_BLOCK));
332 roots.add(new RootData(objectId, RootType.MONITOR));
340 roots.add(new RootData(objectId, RootType.THREAD));
518 roots.add(new RootData(objectId, RootType.INTERNED_STRING));
524 roots.add(new RootData(objectId, RootType.FINALIZING))
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h 36 typedef std::complex<RealScalar> RootType;
37 typedef Matrix<RootType,_Deg,1> RootsType;
83 inline const RootType& selectComplexRoot_withRespectToNorm( squaredNormBinaryPredicate& pred ) const
100 inline const RootType& greatestRoot() const
109 inline const RootType& smallestRoot() const
296 typedef typename BASE::RootType RootType; \
  /external/icu/android_icu4j/src/main/java/android/icu/util/
UResourceBundle.java 311 private enum RootType { MISSING, ICU, JAVA }
313 private static Map<String, RootType> ROOT_CACHE = new ConcurrentHashMap<String, RootType>();
315 private static RootType getRootType(String baseName, ClassLoader root) {
316 RootType rootType = ROOT_CACHE.get(baseName);
318 if (rootType == null) {
322 rootType = RootType.ICU;
326 rootType = RootType.JAVA
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
UResourceBundle.java 324 private enum RootType { MISSING, ICU, JAVA }
326 private static Map<String, RootType> ROOT_CACHE = new ConcurrentHashMap<String, RootType>();
328 private static RootType getRootType(String baseName, ClassLoader root) {
329 RootType rootType = ROOT_CACHE.get(baseName);
331 if (rootType == null) {
335 rootType = RootType.ICU;
339 rootType = RootType.JAVA
    [all...]
  /art/runtime/
gc_root.h 40 enum RootType {
57 std::ostream& operator<<(std::ostream& os, const RootType& root_type);
63 explicit RootInfo(RootType type, uint32_t thread_id = 0)
69 RootType GetType() const {
81 const RootType type_;
  /art/openjdkjvmti/
ti_heap.cc     [all...]
  /art/tools/ahat/src/main/com/android/ahat/
ObjectHandler.java 29 import com.android.ahat.heapdump.RootType;
81 Collection<RootType> rootTypes = inst.getRootTypes();
85 for (RootType type : rootTypes) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
Local.cpp     [all...]

Completed in 880 milliseconds