Searched defs:forward (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXCertPathChecker.java62 * <code>PKIXCertPathChecker</code> may be either in the forward direction
67 * support forward checking (the ability to perform its checks when it is
68 * presented with certificates in the forward direction). The
70 * indicates whether forward checking is supported.
100 * The <code>forward</code> flag specifies the order that
102 * (forward or reverse). A <code>PKIXCertPathChecker</code> <b>must</b>
103 * support reverse checking and <b>may</b> support forward checking.
105 * @param forward the order that certificates are presented to
107 * are presented from target to most-trusted CA (forward); if
111 * the specified order; it should never be thrown if the forward fla
114 init(boolean forward) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DUntrustedChecker.java56 public void init(boolean forward) throws CertPathValidatorException { argument
57 // Note that this class supports both forward and reverse modes.
62 // Note that this class supports both forward and reverse modes.
H A DKeyChecker.java75 public void init(boolean forward) throws CertPathValidatorException { argument
76 if (!forward) {
80 ("forward checking not supported");
H A DAlgorithmChecker.java141 public void init(boolean forward) throws CertPathValidatorException { argument
142 // Note that this class does not support forward mode.
143 if (!forward) {
151 CertPathValidatorException("forward checking not supported");
157 // Note that as this class does not support forward mode, the method
H A DConstraintsChecker.java76 public void init(boolean forward) throws CertPathValidatorException { argument
77 if (!forward) {
83 ("forward checking not supported");
H A DX509CertificatePair.java46 * Authorities. The ASN.1 structure is listed below. The forward certificate
49 * issued by this CA to another CA. When both the forward and the reverse
60 * forward [0] Certificate OPTIONAL,
78 private X509Certificate forward; field in class:X509CertificatePair
93 * @param forward The forward component of the certificate pair
99 public X509CertificatePair(X509Certificate forward, X509Certificate reverse) argument
101 if (forward == null && reverse == null) {
106 this.forward = forward;
[all...]
H A DBasicChecker.java101 public void init(boolean forward) throws CertPathValidatorException { argument
102 if (!forward) {
107 CertPathValidatorException("forward checking not supported");
H A DOCSPChecker.java115 public void init(boolean forward) throws CertPathValidatorException { argument
116 if (!forward) {
H A DCrlRevocationChecker.java170 public void init(boolean forward) throws CertPathValidatorException argument
172 if (!forward) {
184 throw new CertPathValidatorException("forward checking "
H A DPolicyChecker.java114 * @param forward a boolean indicating whether this checker should
115 * be initialized capable of building in the forward direction
117 * wants to enable forward checking and forward checking is not supported.
119 public void init(boolean forward) throws CertPathValidatorException { argument
120 if (forward) {
122 ("forward checking not supported");
132 * Checks if forward checking is supported. Forward checking refers
134 * when presented with certificates in the forward direction (from
137 * @return true if forward checkin
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSizeRequirements.java247 * will be tiled in the forward direction with offsets increasing from 0.
278 * should be tiled in the forward direction (offsets increasing
280 * of the allocated space). The forward direction represents
293 * @param forward tile with offsets increasing from 0 if true
303 boolean forward) {
317 expandedTile(allocated, min, pref, max, children, offsets, spans, forward);
319 compressedTile(allocated, min, pref, max, children, offsets, spans, forward);
326 boolean forward) {
334 if( forward ) {
360 boolean forward) {
298 calculateTiledPositions(int allocated, SizeRequirements total, SizeRequirements[] children, int[] offsets, int[] spans, boolean forward) argument
323 compressedTile(int allocated, long min, long pref, long max, SizeRequirements[] request, int[] offsets, int[] spans, boolean forward) argument
357 expandedTile(int allocated, long min, long pref, long max, SizeRequirements[] request, int[] offsets, int[] spans, boolean forward) argument
[all...]
H A DJDesktopPane.java380 private JInternalFrame getNextFrame(JInternalFrame f, boolean forward) { argument
390 if (forward) {
442 * @param forward a boolean indicating which direction to select in;
443 * <code>true</code> for forward, <code>false</code> for
449 public JInternalFrame selectFrame(boolean forward) { argument
451 JInternalFrame frameToSelect = getNextFrame(selectedFrame, forward);
458 if (forward && selectedFrame != null) {
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DStatusBar.java92 forward = true;
117 if(forward)
124 forward = false;
133 forward = true;
175 private boolean forward; field in class:StatusBar
/openjdk7/jdk/src/share/classes/java/text/
H A DCollationElementIterator.java433 // now walk forward using this object's next() method until
577 boolean forward) {
583 firstValue = forward? nextContractChar(colFirst) : prevContractChar(colFirst);
591 if (!forward) {
574 makeReorderedBuffer(int colFirst, int lastValue, int[] lastExpansion, boolean forward) argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DInterfaceEntry.java187 // which may have inherited this one when it was a forward
257 // which may have inherited this one when it was a forward
262 // If any of the parent's parents are forward entries, make
264 // that when the forward entry is defined, the 'allMethods'
293 private void addToDerivers (ForwardEntry forward) argument
295 // Add this interface to the derivers list on the forward entry
296 // so that when the forward entry is defined, the 'allMethods'
298 forward.derivers.addElement (this);
301 forward.derivers.addElement ((InterfaceEntry)e.nextElement ());
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DRuleBasedBreakIteratorBuilder.java75 * The table of state transitions used for forward iteration
127 * A temporary holding place where the forward state table is built
791 * This is the function that builds the forward state table. Most of the real
825 private void parseRule(String rule, boolean forward) { argument
904 if (!forward) {
1153 // state we were in before the ( and copy all of its forward transitions
1196 // finally, copy every forward reference from the entry point
1590 * @param forward True if we're working on the forward state table
1592 private void finishBuildingStateTable(boolean forward) { argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dspace.cpp381 HeapWord* CompactibleSpace::forward(oop q, size_t size, function in class:CompactibleSpace
487 assert(q > prev_q, "we should be moving forward through memory");
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStore.java509 * containing all Certificates stored in the forward component that match
510 * the forward CertSelector and all Certificates stored in the reverse
513 * If either forward or reverse is null, all certificates from the
517 * @param forward the forward CertSelector (or null)
523 LDAPRequest request, X509CertSelector forward,
535 if (forward != null) {
537 if ((cert != null) && forward.match(cert)) {
522 getMatchingCrossCerts( LDAPRequest request, X509CertSelector forward, X509CertSelector reverse) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicPopupMenuUI.java704 boolean forward) {
706 if (forward) {
718 MenuElement elem, boolean forward) {
721 return findEnabledChild(e, i, forward);
863 // Do not forward event to MSM, let component handle it
878 // do not forward event to MSM, let component handle it.
703 findEnabledChild(MenuElement e[], int fromIndex, boolean forward) argument
717 findEnabledChild(MenuElement e[], MenuElement elem, boolean forward) argument
H A DBasicTabbedPaneUI.java2020 int tabIndex, boolean forward) {
2026 offset = (forward?
2031 offset = (forward?
2035 offset = (forward? maxTabWidth : -maxTabWidth);
2041 offset = (forward?
2045 offset = (forward?
2049 offset = (forward? maxTabWidth : -maxTabWidth);
2055 offset = (forward?
2059 offset = (forward?
2063 offset = (forward
2019 getTabRunOffset(int tabPlacement, int tabCount, int tabIndex, boolean forward) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp165 // Like CompactibleSpace forward() but always calls cross_threshold() to
168 HeapWord* CompactibleFreeListSpace::forward(oop q, size_t size, function in class:CompactibleFreeListSpace
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java1882 protected int getTabRunOffset(final int tabPlacement, final int tabCount, final int tabIndex, final boolean forward) { argument
1888 offset = (forward ? -(calculateTabAreaWidth(tabPlacement, runCount, maxTabWidth) - maxTabWidth) : -maxTabWidth);
1891 offset = (forward ? maxTabWidth : calculateTabAreaWidth(tabPlacement, runCount, maxTabWidth) - maxTabWidth);
1893 offset = (forward ? maxTabWidth : -maxTabWidth);
1899 offset = (forward ? maxTabWidth : calculateTabAreaWidth(tabPlacement, runCount, maxTabWidth) - maxTabWidth);
1901 offset = (forward ? -(calculateTabAreaWidth(tabPlacement, runCount, maxTabWidth) - maxTabWidth) : -maxTabWidth);
1903 offset = (forward ? maxTabWidth : -maxTabWidth);
1909 offset = (forward ? maxTabHeight : calculateTabAreaHeight(tabPlacement, runCount, maxTabHeight) - maxTabHeight);
1911 offset = (forward ? -(calculateTabAreaHeight(tabPlacement, runCount, maxTabHeight) - maxTabHeight) : -maxTabHeight);
1913 offset = (forward
[all...]

Completed in 225 milliseconds