Searched refs:count (Results 126 - 150 of 804) sorted by relevance

1234567891011>>

/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DNumSubordinatesVirtualAttributeProvider.java113 long count = backend.numSubordinates(entry.getDN(), false);
114 if(count >= 0)
117 AttributeValues.create(ByteString.valueOf(String.valueOf(count)),
118 ByteString.valueOf(String.valueOf(count)));
171 long count = backend.numSubordinates(entry.getDN(), false);
172 if(count >= 0)
175 == count;
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DNumSubordinatesVirtualAttributeProvider.java85 long count = backend.numSubordinates(entry.getDN(), false);
86 if(count >= 0)
89 AttributeValues.create(ByteString.valueOf(String.valueOf(count)),
90 ByteString.valueOf(String.valueOf(count)));
135 long count = backend.numSubordinates(entry.getDN(), false);
136 return count >= 0
137 && Long.parseLong(value.getNormalizedValue().toString()) == count;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/tools/bundles/
H A DCopyUtils.java127 int count = 0;
128 while ((count = in.read(buffer, 0, buffer.length)) != -1) {
129 out.write(buffer, 0, count);
171 int count = 0;
172 while ((count = in.read(buffer, 0, buffer.length)) != -1) {
173 out.write(buffer, 0, count);
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAMechanism.m47 NSInteger count = 0;
50 count += 1;
53 return count;
/forgerock/jee-agents-v3.5/jee-agents-tomcat/jee-agents-tomcat-v6/src/main/java/com/sun/identity/agents/tools/tomcat/v6/
H A DConfigureServerXMLTask.java107 int count = 0;
111 for (count = 0; count < serviceElements.size();
112 count++) {
114 count);
185 if (count == serviceElements.size()) {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/util/
H A DTreeGridUtils.js155 * Given the context of the current node this helper will count how many leaf
159 var count = 0;
163 count += obj[key].length;
171 return count;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/tools/bundles/
H A DCopyUtils.java127 int count = 0;
128 while ((count = in.read(buffer, 0, buffer.length)) != -1) {
129 out.write(buffer, 0, count);
171 int count = 0;
172 while ((count = in.read(buffer, 0, buffer.length)) != -1) {
173 out.write(buffer, 0, count);
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DResource.java93 int count = 0;
94 while ((count = bReader.read(data)) != -1) {
95 sb.append(data, 0, count);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DResource.java93 int count = 0;
94 while ((count = bReader.read(data)) != -1) {
95 sb.append(data, 0, count);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DResourceComparatorValidator.java77 int count = 0;
79 tokens[count++] = st.nextToken();
80 if (count > 5) { // accept only first six tokens
86 for (int i = 0; i < count; i++) {
/forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/osgi/
H A DOsgiName.java132 int count = 0;
137 if (c == '/' && count == 0) {
142 count++;
144 count++;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DResourceComparatorValidator.java71 int count = 0;
73 tokens[count++] = st.nextToken();
74 if (count > 5) { // accept only first six tokens
80 for (int i = 0; i < count; i++) {
/forgerock/jee-agents-v3.5/jee-agents-websphere/jee-agents-websphere-common/src/main/java/com/sun/identity/agents/tools/websphere/
H A DServerXMLBase.java129 int count = list.size();
130 for (int i = 0; i < count; i++) {
156 int count = jvmEntries.removeAttribute(STR_CLASSPATH_ATTR);
157 if (count >= 1) {
161 + " from jvmEntries element : attr count = " + count);
185 + "nothing to do : attr count = " + count);
340 int count = agentEntries.length;
341 for (int i = 0; i < count;
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/plugin/
H A DReplayThread.java60 private static int count = 0; field in class:ReplayThread
69 super("Replica replay thread " + count++);
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DJebFormat.java85 * Decode an entry ID count from its database representation.
87 * @param bytes The database value of the entry ID count.
88 * @return The entry ID count.
128 int count = decodedBytes.length / 8;
129 long[] entryIDList = new long[count];
130 for (int pos = 0, i = 0; i < count; i++)
156 int count = decodedBytes.length / 8;
157 int[] entryIDList = new int[count];
158 for (int pos = 0, i = 0; i < count; i++) {
189 * Encode an entry ID set count t
193 entryIDUndefinedSizeToDatabase(long count) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/plugin/
H A DReplayThread.java59 private static int count = 0; field in class:ReplayThread
68 super("Replica replay thread " + count++);
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DJebFormat.java86 * Decode an entry ID count from its database representation.
88 * @param bytes The database value of the entry ID count.
89 * @return The entry ID count.
129 int count = decodedBytes.length / 8;
130 long[] entryIDList = new long[count];
131 for (int pos = 0, i = 0; i < count; i++)
157 int count = decodedBytes.length / 8;
158 int[] entryIDList = new int[count];
159 for (int pos = 0, i = 0; i < count; i++) {
190 * Encode an entry ID set count t
194 entryIDUndefinedSizeToDatabase(long count) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DJebFormat.java86 * Decode an entry ID count from its database representation.
88 * @param bytes The database value of the entry ID count.
89 * @return The entry ID count.
129 int count = decodedBytes.length / 8;
130 long[] entryIDList = new long[count];
131 for (int pos = 0, i = 0; i < count; i++)
157 int count = decodedBytes.length / 8;
158 int[] entryIDList = new int[count];
159 for (int pos = 0, i = 0; i < count; i++) {
190 * Encode an entry ID set count t
194 entryIDUndefinedSizeToDatabase(long count) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/plugin/
H A DReplayThread.java60 private static int count = 0; field in class:ReplayThread
69 super("Replica replay thread " + count++);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/plugin/
H A DReplayThread.java60 private static int count = 0; field in class:ReplayThread
69 super("Replica replay thread " + count++);
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DJebFormat.java85 * Decode an entry ID count from its database representation.
87 * @param bytes The database value of the entry ID count.
88 * @return The entry ID count.
128 int count = decodedBytes.length / 8;
129 long[] entryIDList = new long[count];
130 for (int pos = 0, i = 0; i < count; i++)
156 int count = decodedBytes.length / 8;
157 int[] entryIDList = new int[count];
158 for (int pos = 0, i = 0; i < count; i++) {
189 * Encode an entry ID set count t
193 entryIDUndefinedSizeToDatabase(long count) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DReplayThread.java59 private static int count = 0; field in class:ReplayThread
68 super("Replica replay thread " + count++);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DJebFormat.java86 * Decode an entry ID count from its database representation.
88 * @param bytes The database value of the entry ID count.
89 * @return The entry ID count.
129 int count = decodedBytes.length / 8;
130 long[] entryIDList = new long[count];
131 for (int pos = 0, i = 0; i < count; i++)
157 int count = decodedBytes.length / 8;
158 int[] entryIDList = new int[count];
159 for (int pos = 0, i = 0; i < count; i++) {
190 * Encode an entry ID set count t
194 entryIDUndefinedSizeToDatabase(long count) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DBaseInteraction.java115 int count = getDisplayMessages().size();
116 for (int i = 0; i < count; i++) {
H A DBaseOptions.java75 int count = getResponseOptions().size();
76 for (int i = 0; i < count; i++) {

Completed in 182 milliseconds

1234567891011>>