Searched refs:copy (Results 1 - 25 of 555) sorted by relevance

1234567891011>>

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRABlockActionSheet.h6 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
30 @property (nonatomic, copy) void (^callback)(NSInteger offset);
H A DFRAIdentity.h6 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
33 @property (copy, nonatomic, readonly) NSString *issuer;
37 @property (copy, nonatomic, readonly) NSString *accountName;
41 @property (copy, nonatomic, readonly) NSURL *image;
46 @property (copy, nonatomic, readonly) NSString *backgroundColor;
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/installer/
H A DSuffixesToReplicateOptions.java9 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
140 LinkedHashSet<SuffixDescriptor> copy =
142 copy.addAll(availableSuffixes);
143 return copy;
154 LinkedHashSet<SuffixDescriptor> copy =
156 copy.addAll(suffixesToReplicate);
157 return copy;
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/
H A DSuffixesToReplicateOptions.java9 * You can obtain a copy of the license at
141 LinkedHashSet<SuffixDescriptor> copy =
143 copy.addAll(availableSuffixes);
144 return copy;
155 LinkedHashSet<SuffixDescriptor> copy =
157 copy.addAll(suffixesToReplicate);
158 return copy;
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/installer/
H A DSuffixesToReplicateOptions.java9 * You can obtain a copy of the license at
141 LinkedHashSet<SuffixDescriptor> copy =
143 copy.addAll(availableSuffixes);
144 return copy;
155 LinkedHashSet<SuffixDescriptor> copy =
157 copy.addAll(suffixesToReplicate);
158 return copy;
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/installer/
H A DSuffixesToReplicateOptions.java9 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
140 LinkedHashSet<SuffixDescriptor> copy =
142 copy.addAll(availableSuffixes);
143 return copy;
154 LinkedHashSet<SuffixDescriptor> copy =
156 copy.addAll(suffixesToReplicate);
157 return copy;
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/installer/
H A DSuffixesToReplicateOptions.java9 * You can obtain a copy of the license at
141 LinkedHashSet<SuffixDescriptor> copy =
143 copy.addAll(availableSuffixes);
144 return copy;
155 LinkedHashSet<SuffixDescriptor> copy =
157 copy.addAll(suffixesToReplicate);
158 return copy;
/forgerock/openam-v13/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/conditions/environment/
H A DLDAPFilterConditionTest.java32 LDAPFilterCondition copy = new LDAPFilterCondition();
35 copy.setState(condition.getState());
38 assertThat(copy.getLdapFilter()).isEqualTo(condition.getLdapFilter());
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/conditions/environment/
H A DLDAPFilterConditionTest.java32 LDAPFilterCondition copy = new LDAPFilterCondition();
35 copy.setState(condition.getState());
38 assertThat(copy.getLdapFilter()).isEqualTo(condition.getLdapFilter());
/forgerock/web-agents-v4/zlib/
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
H A Dinfback.c263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy
[all...]
/forgerock/openam-v13/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAbstractAuditRequestContextPropagatingDecorator.java6 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
33 publisherContext = AuditRequestContext.get().copy();
/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAbstractAuditRequestContextPropagatingDecorator.java6 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
33 publisherContext = AuditRequestContext.get().copy();
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DUtils.java7 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
116 List<Object> copy = new ArrayList<Object>(((Collection) source).size());
117 valueStack.push(Pair.of(source, (Object) copy));
119 copy.add(deepCopy(o, valueStack));
122 return copy;
124 Map copy = new LinkedHashMap(((Map) source).size());
125 valueStack.push(Pair.of(source, (Object) copy));
127 copy.put(entry.getKey(), deepCopy(entry.getValue(), valueStack));
130 return copy;
/forgerock/opendj2/src/ads/org/opends/admin/ads/
H A DReplicaDescriptor.java9 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
138 HashSet<String> copy = new HashSet<String>();
139 copy.addAll(replicationServers);
140 return copy;
H A DSuffixDescriptor.java9 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
67 Set<ReplicaDescriptor> copy = new HashSet<ReplicaDescriptor>();
68 copy.addAll(replicas);
69 return copy;
/forgerock/opendj-b2.6/src/ads/org/opends/admin/ads/
H A DReplicaDescriptor.java9 * You can obtain a copy of the license at
139 HashSet<String> copy = new HashSet<String>();
140 copy.addAll(replicationServers);
141 return copy;
H A DSuffixDescriptor.java9 * You can obtain a copy of the license at
68 Set<ReplicaDescriptor> copy = new HashSet<ReplicaDescriptor>();
69 copy.addAll(replicas);
70 return copy;
/forgerock/opendj2.6.2/src/ads/org/opends/admin/ads/
H A DReplicaDescriptor.java9 * You can obtain a copy of the license at
139 HashSet<String> copy = new HashSet<String>();
140 copy.addAll(replicationServers);
141 return copy;
H A DSuffixDescriptor.java9 * You can obtain a copy of the license at
68 Set<ReplicaDescriptor> copy = new HashSet<ReplicaDescriptor>();
69 copy.addAll(replicas);
70 return copy;
/forgerock/opendj2-hg/src/ads/org/opends/admin/ads/
H A DReplicaDescriptor.java9 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
138 HashSet<String> copy = new HashSet<String>();
139 copy.addAll(replicationServers);
140 return copy;
H A DSuffixDescriptor.java9 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
67 Set<ReplicaDescriptor> copy = new HashSet<ReplicaDescriptor>();
68 copy.addAll(replicas);
69 return copy;
/forgerock/opendj2-jel-hg/src/ads/org/opends/admin/ads/
H A DReplicaDescriptor.java9 * You can obtain a copy of the license at
139 HashSet<String> copy = new HashSet<String>();
140 copy.addAll(replicationServers);
141 return copy;
H A DSuffixDescriptor.java9 * You can obtain a copy of the license at
68 Set<ReplicaDescriptor> copy = new HashSet<ReplicaDescriptor>();
69 copy.addAll(replicas);
70 return copy;
/forgerock/openam/openam-ui/openam-ui-api/
H A DGruntfile.js6 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
20 copy: {
59 grunt.loadNpmTasks('grunt-contrib-copy');
61 grunt.registerTask('build:dev', ['build:prod', 'copy:server']);
62 grunt.registerTask('build:prod', ['copy:swagger', 'copy:swaggerThemes', 'copy:resources']);

Completed in 36 milliseconds

1234567891011>>