Searched refs:All (Results 1 - 25 of 46) sorted by relevance

12

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo/src/org/graalvm/compiler/nodeinfo/
H A DVerbosity.java2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
48 * All the other information plus all debug properties of the node.
50 All enum constant in enum:Verbosity
/openjdk10/jdk/make/scripts/
H A DaddNotices.sh3 # Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
39 * Copyright (c) $COPYRIGHT_YEARS Oracle and/or its affiliates. All rights reserved.
/openjdk10/hotspot/test/compiler/codecache/cli/
H A DTestSegmentedCodeCacheOption.java2 * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
113 BlobType.All.sizeOptionName);
118 BlobType.All.sizeOptionName,
133 BlobType.All.sizeOptionName);
140 BlobType.All.sizeOptionName,
157 + "by default.", BlobType.All.sizeOptionName,
163 BlobType.All.sizeOptionName,
/openjdk10/test/lib/sun/hotspot/code/
H A DBlobType.java2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
58 // All types (No code cache segmentation)
59 All(3, "CodeCache", "ReservedCodeCacheSize"); enum constant in enum:BlobType
88 // only All for non segmented world
89 return EnumSet.of(All);
96 EnumSet<BlobType> result = EnumSet.complementOf(EnumSet.of(All));
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DArguments.java2 * Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved.
112 emit = ((emit == Server || emit == All) ? All : Client);
116 emit = ((emit == Client || emit == All) ? All : Server);
121 emit = All;
128 emit = ((emit == Client || emit == All) ? All : Server);
133 emit = All;
325 All field in class:Arguments
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/
H A DXmlToken.java2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
35 All("All", true), enum constant in enum:XmlToken
H A DNamespaceVersion.java2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
41 XmlToken.All,
55 XmlToken.All,
/openjdk10/hotspot/test/compiler/codecache/cli/codeheapsize/
H A DGenericCodeHeapSizeRunner.java2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
43 BlobType.All.sizeOptionName,
46 BlobType.All.sizeOptionName, expectedValues.reserved),
H A DJVMStartupRunner.java2 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
108 BlobType.All.sizeOptionName, reserved),
/openjdk10/hotspot/test/compiler/whitebox/
H A DGetNMethodTest.java2 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
76 Asserts.assertNE(nmethod.code_blob_type, BlobType.All);
90 Asserts.assertEQ(nmethod.code_blob_type, BlobType.All);
H A DGetCodeHeapEntriesTest.java2 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
57 = EnumSet.complementOf(EnumSet.of(BlobType.All));
/openjdk10/hotspot/test/compiler/codecache/cli/common/
H A DCodeCacheOptions.java2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
37 = EnumSet.of(BlobType.All);
78 case All:
98 BlobType.All.sizeOptionName, reserved));
H A DCodeCacheCLITestCase.java2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
76 NON_SEGMENTED(options -> !options.segmented, EnumSet.of(BlobType.All),
113 EnumSet.complementOf(EnumSet.of(BlobType.All)),
/openjdk10/hotspot/src/share/vm/code/
H A DcodeCache.hpp2 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
49 // - All: Used for code of all types if code cache segmentation is disabled.
65 // All methods of the CodeCache accepting a CodeBlobType only apply to
141 static CodeBlob* allocate(int size, int code_blob_type, int orig_code_blob_type = CodeBlobType::All); // allocates a new CodeBlob
233 bool result = type == CodeBlobType::All || type <= CodeBlobType::MethodProfiled;
239 return type == CodeBlobType::All || type <= CodeBlobType::MethodProfiled;
243 return type <= CodeBlobType::All;
H A DcodeCache.cpp2 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
147 GrowableArray<CodeHeap*>* CodeCache::_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
148 GrowableArray<CodeHeap*>* CodeCache::_compiled_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
149 GrowableArray<CodeHeap*>* CodeCache::_nmethod_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
150 GrowableArray<CodeHeap*>* CodeCache::_allocable_heaps = new(ResourceObj::C_HEAP, mtCode) GrowableArray<CodeHeap*> (CodeBlobType::All, true);
165 // All code heap sizes were explicitly set: total_size must equal cache_size
349 return (code_blob_type == CodeBlobType::All);
355 return (code_blob_type < CodeBlobType::All);
500 if (orig_code_blob_type == CodeBlobType::All) {
1069 add_heap(rs, "CodeCache", CodeBlobType::All);
[all...]
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.hpp2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
34 // Used by JVMTI methods: All RawMonitor methods (CreateRawMonitor, EnterRawMonitor, etc.)
49 int SimpleNotify (Thread * Self, bool All) ;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DValueNode.java2 * Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
203 assert morePrecise : "stamp can only get more precise " + toString(Verbosity.All) + " " +
204 other.toString(Verbosity.All);
/openjdk10/jdk/test/java/beans/Introspector/
H A DTest4619536.java2 * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved.
63 ipd = BeanUtils.getIndexedPropertyDescriptor(All.class, "foo");
65 error(ipd, "All.foo should have all pd/ipd values");
68 error(ipd, "All.foo pdType should equal ipdType");
172 public static class All extends Index { class in class:Test4619536
/openjdk10/jdk/test/sun/security/provider/SecureRandom/AbstractDrbg/
H A DSpecTest.java2 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
49 Provider p = new All("A", "0", "");
175 public static class All extends Provider { class in class:SpecTest
176 protected All(String name, String version, String info) { method in class:SpecTest.All
/openjdk10/jdk/test/java/beans/Introspector/8130937/
H A DTestBooleanBeanProperties.java2 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
54 test(All.class, true, true, true, true, true, true);
102 public static final class All { class in class:TestBooleanBeanProperties
/openjdk10/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s2 !! Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
/openjdk10/hotspot/src/os_cpu/linux_sparc/vm/
H A Dlinux_sparc.s2 # Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
/openjdk10/hotspot/src/share/vm/memory/
H A Dheap.hpp2 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
182 bool accepts(int code_blob_type) const { return (_code_blob_type == CodeBlobType::All) ||
/openjdk10/hotspot/src/share/vm/runtime/
H A Dsynchronizer.hpp2 * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
91 static bool quick_notify(oopDesc* obj, Thread* Self, bool All);
/openjdk10/hotspot/src/jdk.hotspot.agent/scripts/
H A Dstart-debug-server.bat4 REM Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.

Completed in 267 milliseconds

12