/PHP-5.6/ext/intl/tests/ |
H A D | formatter_get_set_attribute.phpt | 103 Setting attribute: ok 108 Setting attribute: ok 113 Setting attribute: ok 118 Setting attribute: ok 123 Setting attribute: ok 128 Setting attribute: ok 133 Setting attribute: ok 138 Setting attribute: ok 143 Setting attribute: ok 148 Setting attribute: ok [all …]
|
H A D | collator_get_error_message.phpt | 18 // Try specifying a correct attribute. 23 // Try specifying an incorrect attribute. 36 Error getting attribute value: U_ILLEGAL_ARGUMENT_ERROR
|
H A D | ut_common.inc | 161 function ut_nfmt_set_attribute( $fmt, $attribute, $value ) 163 …rn $GLOBALS['oo-mode'] ? $fmt->setAttribute( $attribute, $value ) : numfmt_set_attribute( $fmt, $a… 167 …OBALS['oo-mode'] ? $fmt->setTextAttribute( $attribute, $value ) : numfmt_set_text_attribute( $fmt,… 169 function ut_nfmt_set_symbol( $fmt, $attribute, $value ) 171 …return $GLOBALS['oo-mode'] ? $fmt->setSymbol( $attribute, $value ) : numfmt_set_symbol( $fmt, $att… 177 function ut_nfmt_get_attribute( $fmt, $attribute ) 179 …return $GLOBALS['oo-mode'] ? $fmt->getAttribute( $attribute ) : numfmt_get_attribute( $fmt, $attri… 181 function ut_nfmt_get_text_attribute( $fmt, $attribute ) 183 … $GLOBALS['oo-mode'] ? $fmt->getTextAttribute( $attribute ) : numfmt_get_text_attribute( $fmt, $at… 185 function ut_nfmt_get_symbol( $fmt, $attribute ) [all …]
|
H A D | collator_get_error_code.phpt | 26 // Try specifying a correct attribute. 31 // Try specifying an incorrect attribute.
|
/PHP-5.6/ext/tidy/tests/ |
H A D | 012.phpt | 53 ["attribute"]=> 74 ["attribute"]=> 98 ["attribute"]=> 121 ["attribute"]=> 146 ["attribute"]=> 271 ["attribute"]=> 310 ["attribute"]=> 330 ["attribute"]=> 410 ["attribute"]=> 430 ["attribute"]=> [all …]
|
H A D | 010.phpt | 34 ["attribute"]=> 60 ["attribute"]=> 83 ["attribute"]=> 129 ["attribute"]=> 160 ["attribute"]=> 191 ["attribute"]=> 214 ["attribute"]=> 235 ["attribute"]=> 260 ["attribute"]=> 290 ["attribute"]=> [all …]
|
H A D | 011.phpt | 9 var_dump($body->attribute); 10 foreach($body->attribute as $key=>$val) {
|
/PHP-5.6/ext/soap/ |
H A D | php_schema.h | 32 void delete_extra_attribute(void *attribute); 33 void delete_extra_attribute_persistent(void *attribute); 34 void delete_attribute(void *attribute); 35 void delete_attribute_persistent(void *attribute);
|
/PHP-5.6/ext/intl/collator/ |
H A D | collator_attr.c | 36 long attribute, value; in PHP_FUNCTION() local 42 &object, Collator_ce_ptr, &attribute ) == FAILURE ) in PHP_FUNCTION() 53 value = ucol_getAttribute( co->ucoll, attribute, COLLATOR_ERROR_CODE_P( co ) ); in PHP_FUNCTION() 67 long attribute, value; in PHP_FUNCTION() local 73 &object, Collator_ce_ptr, &attribute, &value ) == FAILURE) in PHP_FUNCTION() 85 ucol_setAttribute( co->ucoll, attribute, value, COLLATOR_ERROR_CODE_P( co ) ); in PHP_FUNCTION()
|
/PHP-5.6/ext/intl/formatter/ |
H A D | formatter_attr.c | 35 long attribute, value; in PHP_FUNCTION() local 40 &object, NumberFormatter_ce_ptr, &attribute ) == FAILURE ) in PHP_FUNCTION() 51 switch(attribute) { in PHP_FUNCTION() 71 value = unum_getAttribute(FORMATTER_OBJECT(nfo), attribute); in PHP_FUNCTION() 104 long attribute; in PHP_FUNCTION() local 113 &object, NumberFormatter_ce_ptr, &attribute ) == FAILURE ) in PHP_FUNCTION() 148 long attribute; in PHP_FUNCTION() local 154 &object, NumberFormatter_ce_ptr, &attribute, &value ) == FAILURE) in PHP_FUNCTION() 165 switch(attribute) { in PHP_FUNCTION() 186 unum_setAttribute(FORMATTER_OBJECT(nfo), attribute, Z_LVAL_PP(value)); in PHP_FUNCTION() [all …]
|
/PHP-5.6/ext/simplexml/tests/ |
H A D | profile07.phpt | 2 SimpleXML [profile]: Accessing an aliased namespaced attribute 10 <child reserved:attribute="Sample" /> 17 echo $rsattr['attribute']; 18 echo $myattr['attribute'];
|
H A D | profile10.phpt | 10 <child reserved:attribute="Sample" special:attribute="Test" /> 17 echo $rsattr['attribute']; 19 echo $spattr['attribute'];
|
H A D | profile03.phpt | 2 SimpleXML [profile]: Accessing an attribute 9 <child attribute="Sample" /> 13 echo $root->child['attribute'];
|
H A D | profile08.phpt | 2 SimpleXML [profile]: Accessing a namespaced attribute without a namespace 10 <child reserved:attribute="Sample" /> 14 echo $root->child['attribute'];
|
H A D | profile06.phpt | 2 SimpleXML [profile]: Accessing a namespaced attribute 10 <child reserved:attribute="Sample" /> 15 echo $attr['attribute'];
|
H A D | bug38406.phpt | 9 $item->attribute = b'something'; 10 var_dump($item->attribute); 12 $item->otherAttribute = $item->attribute;
|
H A D | 031.phpt | 18 /* Add new attribute in a new namespace */ 21 /* Try to add attribute again -> display warning as method is for new Attr only */ 24 /* Add new attribute w/o namespace */ 28 /* Try to add element to attribute -> display warning and do not add */
|
/PHP-5.6/ext/intl/doc/ |
H A D | formatter_api.php | 402 function numfmt_set_attribute($formatter, $attribute, $value) {} argument 415 function numfmt_set_text_attribute($formatter, $attribute, $value) {} argument 428 function numfmt_set_symbol($formatter, $attribute, $value) {} argument 445 * @param integer $attribute One of UNumberFormatAttribute constants 448 function numfmt_get_attribute($formatter, $attribute) {} argument 453 * @param integer $attribute One of UNumberFormatTextAttribute constants 456 function numfmt_get_text_attribute($formatter, $attribute) {} argument 461 * @param integer $attribute One of UNumberFormatSymbol constants specifying the symbol 464 function numfmt_get_symbol($formatter, $attribute) {} argument
|
/PHP-5.6/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_get_attribute.phpt | 25 function set_and_get($offset, $db, $attribute, $value) { 30 if (!$db->setAttribute($attribute, $value)) { 31 printf("[%03d] Cannot set attribute '%s' to value '%s'\n", 32 $offset, $attribute, var_export($tmp, true)); 37 …printf("[%03d] Call to PDO::setAttribute(int attribute, mixed value) has changed the type of value… 42 $tmp = $db->getAttribute($attribute); 45 …$offset, $attribute, var_export($value, true), gettype($value), var_export($tmp, true), gettype($t… 105 [001] Call to PDO::setAttribute(int attribute, mixed value) has changed the type of value from inte…
|
/PHP-5.6/ext/soap/tests/schema/ |
H A D | schema069.phpt | 10 <attribute name="str" type="string"/> 11 <attribute ref="tns:int"/> 13 <attribute name="int" type="int" default="5"/>
|
H A D | schema075.phpt | 10 <attribute name="int1" type="int"/> 11 <attribute name="int2" type="int" form="qualified"/> 12 <attribute name="int3" type="int" form="unqualified"/>
|
H A D | schema076.phpt | 10 <attribute name="int1" type="int"/> 11 <attribute name="int2" type="int" form="qualified"/> 12 <attribute name="int3" type="int" form="unqualified"/>
|
H A D | schema077.phpt | 10 <attribute name="int1" type="int"/> 11 <attribute name="int2" type="int" form="qualified"/> 12 <attribute name="int3" type="int" form="unqualified"/>
|
H A D | schema068.phpt | 10 <attribute name="str" type="string"/> 11 <attribute name="int" type="int" fixed="5"/>
|
/PHP-5.6/ext/ldap/tests/ |
H A D | ldap_add_error.phpt | 65 // Invalid attribute 83 /* Is this correct behaviour to still have "Undefined attribute type" as error/errno? 129 Warning: ldap_add(): Add: Undefined attribute type in %s on line %d 131 string(24) "Undefined attribute type" 134 Warning: ldap_add(): Unknown attribute in the data in %s on line %d
|