Searched refs:fComponents (Results 1 - 10 of 10) sorted by relevance

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSInputSource.java36 private XSObject[] fComponents; field in class:XSInputSource
41 fComponents = null;
47 fComponents = component;
59 return fComponents;
63 fComponents = components;
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/font/
H A DTextMeasurer.java133 private TextLineComponent[] fComponents; field in class:TextMeasurer
179 if (fComponents != null) {
180 other.fComponents = fComponents.clone();
187 fComponents = null;
287 fComponents = TextLine.getComponents(
313 for (tlcIndex = 0; tlcIndex < fComponents.length; tlcIndex++) {
314 int gaLimit = tlcStart + fComponents[tlcIndex].getNumCharacters();
325 for (; tlcIndex < fComponents.length; tlcIndex++) {
327 TextLineComponent tlc = fComponents[tlcInde
[all...]
H A DTextLine.java86 private TextLineComponent[] fComponents; field in class:TextLine
118 fComponents = components;
135 for (int i=0; i < fComponents.length; i++) {
136 checkCharCount += fComponents[i].getNumCharacters();
166 for (int i = 0; i < fComponents.length; i++) {
167 tlc = fComponents[i];
226 locs = new float[fComponents.length * 2 + 2];
228 for (int i = 0, n = 0; i < fComponents.length; ++i, n += 2) {
229 tlc = fComponents[getComponentLogicalIndex(i)];
319 for (int i = 0, n = 0; i < fComponents
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/parsers/
H A DBasicParserConfiguration.java159 protected ArrayList fComponents; field in class:BasicParserConfiguration
205 fComponents = new ArrayList();
254 if (fComponents.contains(component)) {
257 fComponents.add(component);
445 int count = fComponents.size();
447 XMLComponent c = (XMLComponent) fComponents.get(i);
465 int count = fComponents.size();
467 XMLComponent c = (XMLComponent) fComponents.get(i);
503 int count = fComponents.size();
505 XMLComponent c = (XMLComponent) fComponents
[all...]
H A DXML11DTDConfiguration.java224 protected ArrayList fComponents; field in class:XML11DTDConfiguration
386 fComponents = new ArrayList();
802 int count = fComponents.size();
804 XMLComponent c = (XMLComponent) fComponents.get(i);
840 int count = fComponents.size();
842 XMLComponent c = (XMLComponent) fComponents.get(i);
878 int count = fComponents.size();
880 XMLComponent c = (XMLComponent) fComponents.get(i);
1213 if (fComponents.contains(component)) {
1216 fComponents
[all...]
H A DXML11NonValidatingConfiguration.java181 protected ArrayList fComponents; field in class:XML11NonValidatingConfiguration
325 fComponents = new ArrayList();
728 int count = fComponents.size();
730 XMLComponent c = (XMLComponent) fComponents.get(i);
766 int count = fComponents.size();
768 XMLComponent c = (XMLComponent) fComponents.get(i);
804 int count = fComponents.size();
806 XMLComponent c = (XMLComponent) fComponents.get(i);
1112 if (fComponents.contains(component)) {
1115 fComponents
[all...]
H A DXML11Configuration.java319 protected ArrayList<XMLComponent> fComponents; field in class:XML11Configuration
481 fComponents = new ArrayList<>();
937 int count = fComponents.size();
939 XMLComponent c = fComponents.get(i);
998 int count = fComponents.size();
1000 XMLComponent c = fComponents.get(i);
1036 int count = fComponents.size();
1038 XMLComponent c = fComponents.get(i);
1466 if (fComponents.contains(component)) {
1469 fComponents
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DXMLSchemaValidatorComponentManager.java180 private final HashMap<String, Object> fComponents = new HashMap<>(); field in class:XMLSchemaValidatorComponentManager
234 fComponents.put(ENTITY_MANAGER, fEntityManager);
237 fComponents.put(ERROR_REPORTER, fErrorReporter);
240 fComponents.put(NAMESPACE_CONTEXT, fNamespaceContext);
243 fComponents.put(SCHEMA_VALIDATOR, fSchemaValidator);
246 fComponents.put(VALIDATION_MANAGER, fValidationManager);
249 fComponents.put(ENTITY_RESOLVER, null);
250 fComponents.put(ERROR_HANDLER, null);
252 fComponents.put(SYMBOL_TABLE, new SymbolTable());
255 fComponents
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java198 protected ArrayList<XMLComponent> fComponents; field in class:DOMConfigurationImpl
314 fComponents = new ArrayList<>();
1044 int count = fComponents.size();
1046 XMLComponent c = fComponents.get(i);
1096 if (fComponents.contains(component)) {
1099 fComponents.add(component);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaGrammar.java1355 private XSNamedMap[] fComponents = null; field in class:SchemaGrammar
1455 if (fComponents == null)
1456 fComponents = new XSNamedMap[MAX_COMP_IDX+1];
1459 if (fComponents[objectType] == null) {
1491 fComponents[objectType] = new XSNamedMap4Types(fTargetNamespace, table, objectType);
1494 fComponents[objectType] = new XSNamedMapImpl(fTargetNamespace, table);
1498 return fComponents[objectType];
1547 fComponents = null;

Completed in 177 milliseconds