Searched refs:found (Results 101 - 125 of 248) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyParser.java685 boolean found = false;
691 found = true;
695 found = true;
699 found = true;
703 found = true;
707 found = true;
711 found = true;
716 return found;
1206 "], found [" + actual + "]");
1208 ("line.number.expected.expect.found
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CRLSelector.java606 boolean found = false;
607 while (!found && i.hasNext()) {
609 found = true;
612 if (!found) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DIORInfoImpl.java183 * @throws UnknownType if no port of the given type is found.
266 boolean found = false;
268 found = true;
274 // If no profile was found with the given id, throw a BAD_PARAM:
276 if( !found ) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFindInCodeCachePanel.java73 boolean found = false;
74 while (!found && begin.lessThan(end)) {
78 found = true;
/openjdk7/jdk/src/share/classes/java/net/
H A DNetworkInterface.java323 * network interfaces could be found on this machine.
328 * @return an Enumeration of NetworkInterfaces found on this machine
534 boolean found = false;
537 found = true;
541 if (!found) {
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java124 boolean found = false;
127 found = true;
131 if (!found) {
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageWriteParam.java810 * will use whatever progression parameters are found in the
1031 boolean found = false;
1035 found = true;
1040 if (!found) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineManagerImpl.java139 // no connectors found
147 // isn't found then we arbitarly pick the first connector.
149 boolean found = false;
154 found = true;
158 if (!found && launchers.size() > 0) {
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DUtils.java65 final List<File> found = new ArrayList<File>();
72 found.add(path);
79 return found;
/openjdk7/jdk/test/com/sun/jdi/
H A DCompatibleConnectors.java103 // find Connector by name, return null if not found
204 boolean found = false;
208 found = true;
213 if (!found) {
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DSocketOptionTests.java180 boolean found = false;
185 found = true;
189 check(found, "SCTP_PRIMARY_ADDR returned bogus address!");
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DProxyTypeMapping.java116 boolean found = false;
119 found = true;
123 if (!found) {
125 "VM option " + OPTION + " not found");
143 KEY1 + " property found" +
151 KEY2 + " property found" +
159 KEY3 + " property found" +
H A DThreadMXBeanProxy.java90 boolean found = false;
95 found = true;
99 if (!found) {
100 throw new RuntimeException("No ThreadInfo found for MyThread");
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DConstantsSummaryBuilder.java251 boolean found = false;
254 found = true;
257 return found;
/openjdk7/jdk/src/share/demo/management/FullThreadDump/
H A DThreadMonitor.java209 System.out.println("Deadlock found :-");
238 boolean found = false;
241 found = true;
245 if (!found) {
/openjdk7/jdk/test/java/security/Provider/
H A DRemoveProvider.java122 boolean found = false;
128 found = true;
130 if (!found)
/openjdk7/jdk/test/java/util/Collection/
H A DBiggernYours.java45 boolean found = false;
48 found = true;
53 if(!found)
54 fail(aC1 + " not found in " + Arrays.toString(c2Array));
/openjdk7/jdk/test/javax/management/openmbean/
H A DTabularDataOrderTest.java149 boolean found = false;
156 found = true;
163 if (!found) {
/openjdk7/jdk/test/sun/java2d/DirectX/OnScreenRenderingResizeTest/
H A DOnScreenRenderingResizeTest.java188 boolean found = false;
191 found = true;
195 if (!found) {
/openjdk7/langtools/test/tools/javac/api/
H A DT6877206.java102 throw new Exception("wrong number of entries found: "
152 void checkCoverage(String label, Set<String> found, String... expect) throws Exception { argument
154 if (!found.equals(e)) {
155 e.removeAll(found);
/openjdk7/langtools/test/tools/javac/processing/errors/
H A DTestSuppression.java130 int found = (v == null) ? 0 : v;
132 if (found != expect) {
133 error("Unexpected value for " + dk + ": expected: " + expect + " found: " + found);
/openjdk7/langtools/test/tools/javac/util/context/
H A DT7021650.java67 // found in the context for each round or processing.
113 void checkEqual(String label, int found, int expect) throws Exception { argument
114 if (found != expect)
117 + ": found " + found);
212 throw new IllegalStateException(label + ": no item found");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java265 * @param found The type that was found.
268 Type typeError(DiagnosticPosition pos, Object problem, Type found, Type req) { argument
269 log.error(pos, "prob.found.req",
270 problem, found, req);
271 return types.createErrorType(found);
274 Type typeError(DiagnosticPosition pos, String problem, Type found, Type req, Object explanation) { argument
275 log.error(pos, "prob.found.req.1", problem, found, req, explanation);
276 return types.createErrorType(found);
285 typeTagError(DiagnosticPosition pos, Object required, Object found) argument
429 checkType(DiagnosticPosition pos, Type found, Type req) argument
433 checkType(DiagnosticPosition pos, Type found, Type req, String errKey) argument
497 checkCastable(DiagnosticPosition pos, Type found, Type req) argument
2762 final Type found; field in class:Check.ConversionWarner
2764 ConversionWarner(DiagnosticPosition pos, String uncheckedKey, Type found, Type expected) argument
2794 castWarner(DiagnosticPosition pos, Type found, Type expected) argument
2798 convertWarner(DiagnosticPosition pos, Type found, Type expected) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAImpl.java817 POAImpl found = null ;
827 found = (POAImpl) children.get(name);
829 if (found != null) {
832 "Calling find_POA: found poa " + found ) ;
836 found.lock() ;
846 if (!found.waitUntilRunning())
849 // Note that found may be in state DESTROYING or DESTROYED at
853 found.unlock() ;
859 "Calling find_POA: no poa found" ) ;
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontpath.c417 currLen, i, j, found, pathLen=0; local
449 found = 0;
452 found = 1;
456 if (!found) {
466 found = 0;
469 found = 1;
473 if (!found) {
755 int i, f, found, len=0; local
813 found = 0;
816 found
[all...]

Completed in 72 milliseconds

12345678910