Home
last modified time | relevance | path

Searched refs:strval (Results 201 – 225 of 4611) sorted by relevance

12345678910>>...185

/dports/www/mod_php80/php-8.0.15/ext/standard/
H A Dtype.c161 char *strval = Z_STRVAL_P(num); in PHP_FUNCTION() local
164 while (isspace(*strval) && strlen) { in PHP_FUNCTION()
165 strval++; in PHP_FUNCTION()
172 if (strval[0] == '-' || strval[0] == '+') { in PHP_FUNCTION()
176 if (strval[offset] == '0' && (strval[offset + 1] == 'b' || strval[offset + 1] == 'B')) { in PHP_FUNCTION()
183 tmpval[0] = strval[0]; in PHP_FUNCTION()
187 memcpy(tmpval + offset, strval + offset + 2, strlen - offset); in PHP_FUNCTION()
228 PHP_FUNCTION(strval) in PHP_FUNCTION() argument
/dports/lang/php74/php-7.4.27/ext/standard/tests/strings/
H A Dstrval_basic.phpt2 Test strval() function : basic functionality
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : basic variations ***\n";
41 // loop through each element of the array for strval
45 var_dump( strval($value) );
51 *** Testing strval() : basic variations ***
H A Dstrval_variation1.phpt2 Test strval() function : usage variations - Pass different data types as strval
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : usage variations ***\n";
86 // loop through each element of the array for strval
90 var_dump( strval($value) );
96 *** Testing strval() : usage variations ***
/dports/lang/php73/php-7.3.33/ext/standard/tests/strings/
H A Dstrval_basic.phpt2 Test strval() function : basic functionality
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : basic variations ***\n";
41 // loop through each element of the array for strval
45 var_dump( strval($value) );
51 *** Testing strval() : basic variations ***
H A Dstrval_variation1.phpt2 Test strval() function : usage variations - Pass different data types as strval
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : usage variations ***\n";
86 // loop through each element of the array for strval
90 var_dump( strval($value) );
96 *** Testing strval() : usage variations ***
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/strings/
H A Dstrval_basic.phpt2 Test strval() function : basic functionality
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : basic variations ***\n";
41 // loop through each element of the array for strval
45 var_dump( strval($value) );
51 *** Testing strval() : basic variations ***
H A Dstrval_variation1.phpt2 Test strval() function : usage variations - Pass different data types as strval
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : usage variations ***\n";
86 // loop through each element of the array for strval
90 var_dump( strval($value) );
96 *** Testing strval() : usage variations ***
/dports/www/mod_php74/php-7.4.27/ext/standard/tests/strings/
H A Dstrval_basic.phpt2 Test strval() function : basic functionality
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : basic variations ***\n";
41 // loop through each element of the array for strval
45 var_dump( strval($value) );
51 *** Testing strval() : basic variations ***
H A Dstrval_variation1.phpt2 Test strval() function : usage variations - Pass different data types as strval
5 /* Prototype : string strval ( mixed $var )
10 echo "*** Testing strval() : usage variations ***\n";
86 // loop through each element of the array for strval
90 var_dump( strval($value) );
96 *** Testing strval() : usage variations ***
/dports/mail/postfix-current/postfix-3.7-20211107/src/global/
H A Dmail_conf_bool.c88 const char *strval; in convert_mail_conf_bool() local
90 if ((strval = mail_conf_lookup_eval(name)) == 0) { in convert_mail_conf_bool()
93 if (strcasecmp(strval, CONFIG_BOOL_YES) == 0) { in convert_mail_conf_bool()
95 } else if (strcasecmp(strval, CONFIG_BOOL_NO) == 0) { in convert_mail_conf_bool()
98 msg_fatal("bad boolean configuration: %s = %s", name, strval); in convert_mail_conf_bool()
H A Dmail_conf_nbool.c89 const char *strval; in convert_mail_conf_nbool() local
91 if ((strval = mail_conf_lookup_eval(name)) == 0) { in convert_mail_conf_nbool()
94 if (strcasecmp(strval, CONFIG_BOOL_YES) == 0) { in convert_mail_conf_nbool()
96 } else if (strcasecmp(strval, CONFIG_BOOL_NO) == 0) { in convert_mail_conf_nbool()
99 msg_fatal("bad boolean configuration: %s = %s", name, strval); in convert_mail_conf_nbool()
/dports/devel/cgit/cgit-1.2.3/git/
H A Drepo-settings.c10 char *strval; in prepare_repo_settings() local
32 } else if (!repo_config_get_string(r, "core.untrackedcache", &strval)) { in prepare_repo_settings()
33 if (!strcasecmp(strval, "keep")) in prepare_repo_settings()
36 free(strval); in prepare_repo_settings()
39 if (!repo_config_get_string(r, "fetch.negotiationalgorithm", &strval)) { in prepare_repo_settings()
40 if (!strcasecmp(strval, "skipping")) in prepare_repo_settings()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/krb5-src-0.2.4+1.18.2/krb5/src/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_tkt_policy.c57 char *strval[3]={NULL}, *policy_dn = NULL; in krb5_ldap_create_policy() local
76 memset(strval, 0, sizeof(strval)); in krb5_ldap_create_policy()
77 strval[0] = policy->policy; in krb5_ldap_create_policy()
78 if ((st=krb5_add_str_mem_ldap_mod(&mods, "cn", LDAP_MOD_ADD, strval)) != 0) in krb5_ldap_create_policy()
81 memset(strval, 0, sizeof(strval)); in krb5_ldap_create_policy()
82 strval[0] = "krbTicketPolicy"; in krb5_ldap_create_policy()
83 strval[1] = "krbTicketPolicyaux"; in krb5_ldap_create_policy()
84 if ((st=krb5_add_str_mem_ldap_mod(&mods, "objectclass", LDAP_MOD_ADD, strval)) != 0) in krb5_ldap_create_policy()
157 memset(strval, 0, sizeof(strval)); in krb5_ldap_modify_policy()
158 strval[0] = "krbTicketPolicyAux"; in krb5_ldap_modify_policy()
[all …]
/dports/security/krb5/krb5-1.19.2/src/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_tkt_policy.c57 char *strval[3]={NULL}, *policy_dn = NULL; in krb5_ldap_create_policy() local
76 memset(strval, 0, sizeof(strval)); in krb5_ldap_create_policy()
77 strval[0] = policy->policy; in krb5_ldap_create_policy()
78 if ((st=krb5_add_str_mem_ldap_mod(&mods, "cn", LDAP_MOD_ADD, strval)) != 0) in krb5_ldap_create_policy()
81 memset(strval, 0, sizeof(strval)); in krb5_ldap_create_policy()
82 strval[0] = "krbTicketPolicy"; in krb5_ldap_create_policy()
83 strval[1] = "krbTicketPolicyaux"; in krb5_ldap_create_policy()
84 if ((st=krb5_add_str_mem_ldap_mod(&mods, "objectclass", LDAP_MOD_ADD, strval)) != 0) in krb5_ldap_create_policy()
157 memset(strval, 0, sizeof(strval)); in krb5_ldap_modify_policy()
158 strval[0] = "krbTicketPolicyAux"; in krb5_ldap_modify_policy()
[all …]
/dports/games/exult/exult-snapshot-v1.7.0.20211128/usecode/
H A Duseval.cc155 return v2.type == string_type && strval == v2.strval; in operator ==()
282 out << '"' << strval << '"'; in print()
318 ret += v2.strval; in operator +=()
324 v1.strval += std::to_string(v2.intval); in operator +=()
326 v1.strval += v2.strval; in operator +=()
373 v1.strval += ' '; in operate()
374 v1.strval += v2.strval; in operate()
424 out->write2(strval.size()); in save()
425 out->write(strval); in save()
485 construct(strval); in restore()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/xml/
H A DXSLTExtensions.cpp53 xmlChar *strval; in exsltNodeSetFunction() local
67 strval = xmlXPathPopString(ctxt); in exsltNodeSetFunction()
68 retNode = xmlNewDocText(NULL, strval); in exsltNodeSetFunction()
76 if (strval != NULL) in exsltNodeSetFunction()
77 xmlFree(strval); in exsltNodeSetFunction()
/dports/lang/php74/php-7.4.27/ext/standard/tests/general_functions/
H A Dstrval.phpt2 Test strval() function
7 /* Prototype: string strval ( mixed $var );
98 /* loop to check that strval() recognizes different
103 var_dump( strval($scalar) );
106 echo "\n*** Testing strval() with non_scalar values ***\n";
137 strval() on objects, arrays, boolean and others */
141 var_dump( strval($value) );
146 var_dump( strval() );
149 var_dump( strval( $scalars[0], $scalars[1]) );
278 *** Testing strval() with non_scalar values ***
[all …]
/dports/lang/php73/php-7.3.33/ext/standard/tests/general_functions/
H A Dstrval.phpt2 Test strval() function
7 /* Prototype: string strval ( mixed $var );
98 /* loop to check that strval() recognizes different
103 var_dump( strval($scalar) );
106 echo "\n*** Testing strval() with non_scalar values ***\n";
137 strval() on objects, arrays, boolean and others */
141 var_dump( strval($value) );
146 var_dump( strval() );
149 var_dump( strval( $scalars[0], $scalars[1]) );
278 *** Testing strval() with non_scalar values ***
[all …]
/dports/www/mod_php74/php-7.4.27/ext/standard/tests/general_functions/
H A Dstrval.phpt2 Test strval() function
7 /* Prototype: string strval ( mixed $var );
98 /* loop to check that strval() recognizes different
103 var_dump( strval($scalar) );
106 echo "\n*** Testing strval() with non_scalar values ***\n";
137 strval() on objects, arrays, boolean and others */
141 var_dump( strval($value) );
146 var_dump( strval() );
149 var_dump( strval( $scalars[0], $scalars[1]) );
278 *** Testing strval() with non_scalar values ***
[all …]
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/general_functions/
H A Dstrval.phpt2 Test strval() function
7 /* Prototype: string strval ( mixed $var );
98 /* loop to check that strval() recognizes different
103 var_dump( strval($scalar) );
106 echo "\n*** Testing strval() with non_scalar values ***\n";
137 strval() on objects, arrays, boolean and others */
141 var_dump( strval($value) );
146 var_dump( strval() );
149 var_dump( strval( $scalars[0], $scalars[1]) );
278 *** Testing strval() with non_scalar values ***
[all …]
/dports/comms/libimobiledevice/libimobiledevice-1.3.0/src/
H A Dmobile_image_mounter.c150 char* strval = NULL; in process_result() local
155 plist_get_string_val(node, &strval); in process_result()
157 if (strval) { in process_result()
158 if (!strcmp(strval, "DeviceLocked")) { in process_result()
162 debug_info("Unhandled error '%s' received", strval); in process_result()
164 free(strval); in process_result()
170 plist_get_string_val(node, &strval); in process_result()
172 if (!strval) { in process_result()
174 } else if (strcmp(strval, expected_status) == 0) { in process_result()
177 debug_info("Error: didn't get %s but %s", expected_status, strval); in process_result()
[all …]
/dports/comms/py-libimobiledevice/libimobiledevice-1.3.0/src/
H A Dmobile_image_mounter.c150 char* strval = NULL; in process_result() local
155 plist_get_string_val(node, &strval); in process_result()
157 if (strval) { in process_result()
158 if (!strcmp(strval, "DeviceLocked")) { in process_result()
162 debug_info("Unhandled error '%s' received", strval); in process_result()
164 free(strval); in process_result()
170 plist_get_string_val(node, &strval); in process_result()
172 if (!strval) { in process_result()
174 } else if (strcmp(strval, expected_status) == 0) { in process_result()
177 debug_info("Error: didn't get %s but %s", expected_status, strval); in process_result()
[all …]
/dports/www/mod_php81/php-8.1.1/ext/standard/
H A Dtype.c161 char *strval = Z_STRVAL_P(num); in PHP_FUNCTION() local
164 while (isspace(*strval) && strlen) { in PHP_FUNCTION()
165 strval++; in PHP_FUNCTION()
172 if (strval[0] == '-' || strval[0] == '+') { in PHP_FUNCTION()
176 if (strval[offset] == '0' && (strval[offset + 1] == 'b' || strval[offset + 1] == 'B')) { in PHP_FUNCTION()
183 tmpval[0] = strval[0]; in PHP_FUNCTION()
187 memcpy(tmpval + offset, strval + offset + 2, strlen - offset); in PHP_FUNCTION()
228 PHP_FUNCTION(strval) in PHP_FUNCTION() argument
/dports/lang/php81/php-8.1.1/ext/standard/
H A Dtype.c161 char *strval = Z_STRVAL_P(num); in PHP_FUNCTION() local
164 while (isspace(*strval) && strlen) { in PHP_FUNCTION()
165 strval++; in PHP_FUNCTION()
172 if (strval[0] == '-' || strval[0] == '+') { in PHP_FUNCTION()
176 if (strval[offset] == '0' && (strval[offset + 1] == 'b' || strval[offset + 1] == 'B')) { in PHP_FUNCTION()
183 tmpval[0] = strval[0]; in PHP_FUNCTION()
187 memcpy(tmpval + offset, strval + offset + 2, strlen - offset); in PHP_FUNCTION()
228 PHP_FUNCTION(strval) in PHP_FUNCTION() argument
/dports/security/suricata/suricata-6.0.4/src/
H A Dconf.c438 const char *strval = NULL; in ConfGetInt() local
442 if (ConfGet(name, &strval) == 0) in ConfGetInt()
445 if (strval == NULL) { in ConfGetInt()
470 const char *strval = NULL; in ConfGetChildValueInt() local
518 const char *strval = NULL; in ConfGetBool() local
524 *val = ConfValIsTrue(strval); in ConfGetBool()
531 const char *strval = NULL; in ConfGetChildValueBool() local
537 *val = ConfValIsTrue(strval); in ConfGetChildValueBool()
616 const char *strval = NULL; in ConfGetDouble() local
620 if (ConfGet(name, &strval) == 0) in ConfGetDouble()
[all …]

12345678910>>...185