Searched refs:index (Results 301 - 325 of 1574) sorted by relevance

<<11121314151617181920>>

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/base/
H A DUriParser.java129 int index = s.indexOf(sep);
130 if (index == -1) {
134 s.substring(0, index),
135 s.substring(index + sep.length(), s.length())};
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/idm/
H A DEntityDiscoveryDescriptionEditViewBean.java53 public void populateValues(String index) { argument
54 setPageSessionAttribute(PGATTR_INDEX, index);
95 int index = Integer.parseInt((String)
97 data.descData.set(index, smData);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/realm/
H A DRealmDiscoveryDescriptionEditViewBean.java55 public void populateValues(String index) { argument
56 setPageSessionAttribute(PGATTR_INDEX, index);
97 int index = Integer.parseInt((String)
99 data.descData.set(index, smData);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/
H A DSMDiscoveryDescriptionEditViewBean.java61 public void populateValues(String index) { argument
62 setPageSessionAttribute(PGATTR_INDEX, index);
103 int index = Integer.parseInt((String)
105 data.descData.set(index, smData);
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DJsonCallbackParser.java71 * @param index the position of this callback in the returned structure.
74 JsonValue convertToJson(T callback, int index) throws RestAuthException; argument
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/xacml3/
H A DSearchFilterFactory.java112 int index = filter.indexOf(symbol);
114 if (index != -1) {
116 filter.substring(0, index).trim(),
118 filter.substring(index + symbol.length(), filter.length()).trim()};
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/resourcename/
H A DBaseURLResourceName.java301 int index = urlStr.indexOf("://");
302 String proto = urlStr.substring(0, index);
303 String resource = urlStr.substring(index + 3); // host.sample.com...
327 index = resource.indexOf('/');
328 if (index == -1) {
329 index = resource.indexOf('?');
331 if (index != -1) {
332 hostAndPort = resource.substring(0, index);
333 urlPath = resource.substring(index);
336 index
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/idm/
H A DEntityDiscoveryDescriptionEditViewBean.java53 public void populateValues(String index) { argument
54 setPageSessionAttribute(PGATTR_INDEX, index);
95 int index = Integer.parseInt((String)
97 data.descData.set(index, smData);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/realm/
H A DRealmDiscoveryDescriptionEditViewBean.java55 public void populateValues(String index) { argument
56 setPageSessionAttribute(PGATTR_INDEX, index);
97 int index = Integer.parseInt((String)
99 data.descData.set(index, smData);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/
H A DSMDiscoveryDescriptionEditViewBean.java61 public void populateValues(String index) { argument
62 setPageSessionAttribute(PGATTR_INDEX, index);
103 int index = Integer.parseInt((String)
105 data.descData.set(index, smData);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/user/
H A DUMUserDiscoveryDescriptionEditViewBean.java54 public void populateValues(String index) { argument
55 setPageSessionAttribute(PGATTR_INDEX, index);
102 int index = Integer.parseInt((String)
104 data.descData.set(index, smData);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DJsonCallbackParser.java71 * @param index the position of this callback in the returned structure.
74 JsonValue convertToJson(T callback, int index) throws RestAuthException; argument
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/xacml3/
H A DSearchFilterFactory.java112 int index = filter.indexOf(symbol);
114 if (index != -1) {
116 filter.substring(0, index).trim(),
118 filter.substring(index + symbol.length(), filter.length()).trim()};
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DInteractionsRunner.java52 public void setStateAccessDataType(int index) { argument
53 if (index < getInstanceInteractionsOffset()) { // Common interactions
133 public void storeNonPersistentKeys(String key, int index) { argument
134 if (index < getInstanceInteractionsOffset()) { // Common interactions
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DVerifyIndexPanel.java75 * The panel that appears when the user wants to verify an index.
396 AbstractIndexDescriptor index = getSelectedIndex();
398 if (index == null)
465 AbstractIndexDescriptor index = null;
470 index = (AbstractIndexDescriptor)o.getValue();
472 return index;
491 for (AbstractIndexDescriptor index : indexes)
493 if (index instanceof IndexDescriptor)
495 IndexDescriptor standardIndex = (IndexDescriptor)index;
507 // VLV index
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DVerifyIndexPanel.java74 * The panel that appears when the user wants to verify an index.
395 AbstractIndexDescriptor index = getSelectedIndex();
397 if (index == null)
464 AbstractIndexDescriptor index = null;
469 index = (AbstractIndexDescriptor)o.getValue();
471 return index;
490 for (AbstractIndexDescriptor index : indexes)
492 if (index instanceof IndexDescriptor)
494 IndexDescriptor standardIndex = (IndexDescriptor)index;
506 // VLV index
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DVerifyIndexPanel.java75 * The panel that appears when the user wants to verify an index.
396 AbstractIndexDescriptor index = getSelectedIndex();
398 if (index == null)
465 AbstractIndexDescriptor index = null;
470 index = (AbstractIndexDescriptor)o.getValue();
472 return index;
491 for (AbstractIndexDescriptor index : indexes)
493 if (index instanceof IndexDescriptor)
495 IndexDescriptor standardIndex = (IndexDescriptor)index;
507 // VLV index
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DVerifyIndexPanel.java74 * The panel that appears when the user wants to verify an index.
395 AbstractIndexDescriptor index = getSelectedIndex();
397 if (index == null)
464 AbstractIndexDescriptor index = null;
469 index = (AbstractIndexDescriptor)o.getValue();
471 return index;
490 for (AbstractIndexDescriptor index : indexes)
492 if (index instanceof IndexDescriptor)
494 IndexDescriptor standardIndex = (IndexDescriptor)index;
506 // VLV index
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DVerifyIndexPanel.java75 * The panel that appears when the user wants to verify an index.
396 AbstractIndexDescriptor index = getSelectedIndex();
398 if (index == null)
465 AbstractIndexDescriptor index = null;
470 index = (AbstractIndexDescriptor)o.getValue();
472 return index;
491 for (AbstractIndexDescriptor index : indexes)
493 if (index instanceof IndexDescriptor)
495 IndexDescriptor standardIndex = (IndexDescriptor)index;
507 // VLV index
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DEntryContainer.java97 * The name of the children index database.
102 * The name of the subtree index database.
117 * The attribute used to return a search index debug string to the client.
122 * The attribute index configuration manager.
127 * The vlv index configuration manager.
237 AttributeIndex index =
239 index.open();
240 if(!index.isTrusted())
246 attrIndexMap.put(cfg.getAttribute(), index);
283 AttributeIndex index
3395 deleteAttributeIndex(AttributeIndex index) argument
3844 clearAttributeIndex(AttributeIndex index) argument
3988 isAttributeModified(AttributeIndex index, List<Modification> mods) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DEntryContainer.java97 * The name of the children index database.
102 * The name of the subtree index database.
117 * The attribute used to return a search index debug string to the client.
122 * The attribute index configuration manager.
127 * The vlv index configuration manager.
237 AttributeIndex index =
239 index.open();
240 if(!index.isTrusted())
246 attrIndexMap.put(cfg.getAttribute(), index);
283 AttributeIndex index
3395 deleteAttributeIndex(AttributeIndex index) argument
3844 clearAttributeIndex(AttributeIndex index) argument
3988 isAttributeModified(AttributeIndex index, List<Modification> mods) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java366 int index = (hash & 0x7FFFFFFF) % tab.length;
367 for (Entry e = tab[index]; (e != null) && !found; e = e.next) {
394 int index = (hash & 0x7FFFFFFF) % tab.length;
395 for (Entry e = tab[index]; (e != null) && (value == null);
439 int index = (e.hash & 0x7FFFFFFF) % newCapacity;
440 e.next = newMap[index];
441 newMap[index] = e;
480 int index = (hash & 0x7FFFFFFF) % tab.length;
481 for (Entry e = tab[index]; e != null; e = e.next) {
497 index
1076 int index = table.length; field in class:Cache.Enumerator
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DVLVIndexPanel.java88 * The panel that displays an existing VLV index (it appears on the right of the
106 private VLVIndexDescriptor index; field in class:VLVIndexPanel
155 * index selection listener when the user changes the selection.
158 * selection of the index should be canceled) and <CODE>false</CODE>
163 return index != null && saveChanges.isVisible() && saveChanges.isEnabled();
179 INFO_CTRL_PANEL_UNSAVED_INDEX_CHANGES_DETAILS.get(index.getName()));
198 if (!ignoreCheckSave && index != null)
353 indexesToDelete.add(index);
362 final String indexName = index.getName();
363 final String backendName = index
430 update(VLVIndexDescriptor index) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java366 int index = (hash & 0x7FFFFFFF) % tab.length;
367 for (Entry e = tab[index]; (e != null) && !found; e = e.next) {
394 int index = (hash & 0x7FFFFFFF) % tab.length;
395 for (Entry e = tab[index]; (e != null) && (value == null);
439 int index = (e.hash & 0x7FFFFFFF) % newCapacity;
440 e.next = newMap[index];
441 newMap[index] = e;
480 int index = (hash & 0x7FFFFFFF) % tab.length;
481 for (Entry e = tab[index]; e != null; e = e.next) {
497 index
1076 int index = table.length; field in class:Cache.Enumerator
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/assignment/
H A DEditAssignmentView.js176 index = this.$el.find("#assignmentAttributesList .list-group-item").index(container);
179 this.model.schemaEditors[index] = this.createJSONEditor($(event.target));
192 this.model.schemaEditors[index] = container.find(".ldap-group-select").selectize({
201 this.model.schemaEditors[index] = this.createJSONEditor($(event.target));
305 index = this.$el.find("#assignmentAttributesList .list-group-item").index(container),
306 attributeDetails = this.model.assignmentAttributes[index];
320 index = this.$el.find("#assignmentAttributesList .list-group-item").index(containe
[all...]

Completed in 123 milliseconds

<<11121314151617181920>>