Searched refs:string (Results 1 - 25 of 268) sorted by relevance

1234567891011

/forgerock/web-agents-v4/pcre/
H A Dpcre_valid_utf8.c53 * Validate a UTF-8 string *
57 check that a supposed UTF-8 string is actually valid. The early check means
58 that subsequent code can assume it is dealing with a valid string. The check
60 invalid string are then undefined.
74 PCRE_UTF8_ERR1 Missing 1 byte at the end of the string
75 PCRE_UTF8_ERR2 Missing 2 bytes at the end of the string
76 PCRE_UTF8_ERR3 Missing 3 bytes at the end of the string
77 PCRE_UTF8_ERR4 Missing 4 bytes at the end of the string
78 PCRE_UTF8_ERR5 Missing 5 bytes at the end of the string
98 string point
107 valid_utf(PCRE_PUCHAR string, int length, int *erroroffset) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DDisplayUtils.java36 * Returns true if the given pattern is contained in the string.
38 * @param string
42 * @return true if string matches <code>filter</code>
44 public static boolean wildcardMatch(String string, String pattern) { argument
45 string = string.toLowerCase();
48 if (pattern.equals("*") || pattern.equals(string)) {
58 if (!string.startsWith(patternSubStr, 0)) {
74 if (string.indexOf(patternSubStr, stringIndex) == -1) {
83 if (string
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DDisplayUtils.java36 * Returns true if the given pattern is contained in the string.
38 * @param string
42 * @return true if string matches <code>filter</code>
44 public static boolean wildcardMatch(String string, String pattern) { argument
45 string = string.toLowerCase();
48 if (pattern.equals("*") || pattern.equals(string)) {
58 if (!string.startsWith(patternSubStr, 0)) {
74 if (string.indexOf(patternSubStr, stringIndex) == -1) {
83 if (string
[all...]
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/audit-sample/tools/
H A DJsonValueUtil.groovy35 public static JsonValue fromJsonString(String string) {
36 return string != null && string.length() > 0 ? json(Json.readJson(string)) : null;
39 public static Boolean booleanFromString(String string) {
41 return Boolean.valueOf(string);
/forgerock/web-agents-v4/expat/
H A Dwinconfig.h18 #include <string.h>
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/
H A Dpolicy.js164 value = value + ""; // cast to string;
171 isNonEmptyString = (typeof(value) === "string" && value.length),
250 isNonEmptyString = (typeof(value) === "string" && value.length),
270 if (typeof(value) === "string" && value.length) {
285 isNonEmptyString = (typeof(value) === "string" && value.length),
303 isNonEmptyString = (typeof(value) === "string" && value.length),
320 isNonEmptyString = (typeof(value) === "string" && value.length),
334 isNonEmptyString = (typeof(value) === "string" && value.length),
351 isNonEmptyString = (typeof(value) === "string" && value.length),
369 isNonEmptyString = (typeof(value) === "string"
[all...]
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/notifications/
H A DNotificationLayout.java117 statusText.setText(R.string.notification_status_approved);
120 statusText.setText(R.string.notification_status_expired);
123 statusText.setText(R.string.notification_status_pending);
126 statusText.setText(R.string.notification_status_rejected);
144 return getContext().getString(R.string.time_yesterday);
147 case 1: return getContext().getString(R.string.time_monday);
148 case 2: return getContext().getString(R.string.time_tuesday);
149 case 3: return getContext().getString(R.string.time_wednesday);
150 case 4: return getContext().getString(R.string.time_thursday);
151 case 5: return getContext().getString(R.string
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/util/uri/
H A DqueryTest.js41 it("returns a query string", () => {
47 it("returns an empty string", () => {
53 it("returns an empty string", () => {
60 describe("when param string is provided", () => {
62 const string = "";
63 expect(query.parseParameters(string)).eql({});
67 describe("when a param string is provided", () => {
69 const string = "foo=bar&alice=bob";
70 expect(query.parseParameters(string)).eql({ foo:"bar", alice:"bob" });
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRASerialization.m79 return [NSString string];
122 + (id)nonNilString:(NSString *)string {
123 if (string == nil) {
126 return string;
129 + (NSString *)nullToEmpty:(NSString *)string {
130 if (string == nil || [string isKindOfClass:[NSNull class]]) {
133 return string;
H A DFRAOathCode.h45 * @param algorithm The HMAC algorithm to convert to a string.
47 * @return The string representation of the HMAC algorithm.
52 * Convert string to HMAC algorithm constant.
54 * @param string The string to convert back to the HMAC algorithm constant.
58 + (CCHmacAlgorithm)fromString:(NSString *) string;
H A DFRAOathCode.m67 + (CCHmacAlgorithm)fromString:(NSString *)string {
68 if ([string isEqual: @"md5"]) {
71 if ([string isEqual: @"sha256"]) {
74 if ([string isEqual: @"sha512"]) {
H A DFRASerialization.h89 * @param jsonString Output string to contain the JSON.
97 * Given a JSON string, deserialise it into a Dictionary.
111 * @return nil if the input was nil, otherwise non nil string containing the data.
116 * Given a Base64 encoded string, deserialise it to a byte array.
124 * Given an NSData object, serialise it to a hexadecimal string.
132 * Given a hex encoded string, deserialise it to an NSData object.
148 * Returns the string if not nil, NSNull otherwise.
150 * @param string The string to check.
151 * @return The string i
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-definitions/src/main/java/com/sun/identity/cli/annotation/
H A DResourceStrings.java40 String[] string(); method in interface:ResourceStrings
/forgerock/openam/openam-cli/openam-cli-definitions/src/main/java/com/sun/identity/cli/annotation/
H A DResourceStrings.java40 String[] string(); method in interface:ResourceStrings
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/components/
H A DBlock.jsx24 * @param {string} props.header Text to display for the block header
25 * @param {string} [props.description] Text to display for the block description
43 description: React.PropTypes.string,
44 header: React.PropTypes.string.isRequired
H A DCard.jsx23 * @param {string} props.href The link to the associated page
25 * @param {string} props.icon Icon to display on the card
43 href: React.PropTypes.string.isRequired,
44 icon: React.PropTypes.string.isRequired
H A DSimplePageHeader.jsx24 * @param {string} props.title Text to display for the header
41 title: React.PropTypes.string.isRequired
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/sessions/
H A DSessionsTableRow.jsx76 latestAccessTime: PropTypes.string.isRequired,
77 maxIdleExpirationTime: PropTypes.string.isRequired,
78 maxSessionExpirationTime: PropTypes.string.isRequired,
79 sessionHandle: PropTypes.string.isRequired
83 sessionHandle: PropTypes.string.isRequired
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/util/
H A DHash.java49 * Generates a SHA1 digest of the string and returns BASE64 encoded digest.
51 * @param string
52 * a string to be hashed return a BASE64 encoded hashed String or
55 public static String hash(String string) { argument
58 sha1.update(string.getBytes("UTF-8"));
70 * Hash of the provided string or string read from a file specified with a
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/
H A DJsonGroup.java58 public void setType(String string) { argument
59 put("type", string);
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/util/
H A DHash.java49 * Generates a SHA1 digest of the string and returns BASE64 encoded digest.
51 * @param string
52 * a string to be hashed return a BASE64 encoded hashed String or
55 public static String hash(String string) { argument
58 sha1.update(string.getBytes("UTF-8"));
70 * Hash of the provided string or string read from a file specified with a
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/api/
H A DSideNavChildItem.jsx31 path: PropTypes.string.isRequired
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/
H A DAboutActivity.java56 String version = res.getString(R.string.about_version, info.versionName, info.versionCode);
58 StringBuilder aboutBuilder = new StringBuilder(getString(R.string.about_licenses_title));
61 aboutBuilder.append(String.format("%1$s - %2$s (<a href = \"%3$s\">%4$s</a>)", values[0], values[1], values[2], getString(R.string.about_text_website)));
73 about.setText(Html.fromHtml(getString(R.string.about)));
H A DFRAuthApplication.java45 Toast.makeText(getApplicationContext(), R.string.compiled_with_test_libraries, Toast.LENGTH_LONG).show();
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/add/
H A DCreateMechanismFromUriTask.java78 Toast.makeText(activity, R.string.invalid_qr, Toast.LENGTH_SHORT).show();
89 builder.setTitle(R.string.duplicate_title)
90 .setMessage(R.string.duplicate_message)
91 .setPositiveButton(R.string.duplicate_yes, new DialogInterface.OnClickListener() {
97 .setNegativeButton(R.string.duplicate_no, new DialogInterface.OnClickListener() {

Completed in 121 milliseconds

1234567891011