Home
last modified time | relevance | path

Searched refs:push (Results 1 – 25 of 50) sorted by path

12

/PHP-5.5/
H A DNEWS552 . Fixed bug #69017 (Fail to push to the empty array with the constant value
996 . Fixed bug #67693 (incorrect push to the empty array) (Tjerk)
1832 all the stack push operatins don't require checks for stack overflow
H A DREADME.RELEASE_PROCESS89 ``git push --tags origin HEAD``
90 ``git push origin {main branch}``
91 ``git push origin {release branch}``
141 5. Commit and push those changes:
143 a. ``git commit -a && git push origin master``
172 8. Push the tag f.e. "``git push origin php-5.4.1``"
181 11. Commit and push all the tarballs and signature files to web/php-distributions.git,
189 git push;``
/PHP-5.5/Zend/tests/
H A Dbug69017.phpt2 #69017 (Fail to push to the empty array with the constant value defined in class scope)
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic5872 # assembler instructions: mov si,sp;push ax;pop es;push ax;pop ds;sti;cld
5913 # assembler instructions: push ax;pop es;push ax;pop ds;cld;mov si,7c1b
6226 # assembler instructions: lodsb;and al,al;jz 0xb;push si;mov ah,
6822 # BOOTSEL definitions contains assembler instructions: int 0x13;pop dx;push dx;push dx
6825 # xchg ecx,edx;addl ecx,edx;movw lba_info,si;movb 0x42,ah;pop dx;push dx;int 0x13
6833 # not NO_CHS definitions contains assembler instructions: pop dx;push dx;movb $8,ah;int0x13
6835 …CK definitions contains assembler instructions: movw 0x55aa,bx;movb 0x41,ah;pop dx;push dx;int 0x13
/PHP-5.5/ext/json/
H A DJSON_parser.c202 push(JSON_parser jp, int mode) in push() function
255 push(jp, MODE_DONE); in new_JSON_parser()
593 if (!push(jp, MODE_KEY)) { in parse_JSON_ex()
626 if (!push(jp, MODE_ARRAY)) { in parse_JSON_ex()
695 if (pop(jp, MODE_OBJECT) && push(jp, MODE_KEY)) { in parse_JSON_ex()
725 if (pop(jp, MODE_KEY) && push(jp, MODE_OBJECT)) { in parse_JSON_ex()
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeARM_32.c833 sljit_uw push; in sljit_emit_enter() local
841 push = PUSH | (1 << 14); in sljit_emit_enter()
845 push |= 1 << reg_map[i]; in sljit_emit_enter()
848 push |= 1 << reg_map[i]; in sljit_emit_enter()
850 FAIL_IF(push_inst(compiler, push)); in sljit_emit_enter()
H A DsljitNativeARM_T2_32.c1135 sljit_ins push; in sljit_emit_enter() local
1141 push = (1 << 4); in sljit_emit_enter()
1145 push |= 1 << reg_map[i]; in sljit_emit_enter()
1148 push |= 1 << reg_map[i]; in sljit_emit_enter()
1150 FAIL_IF((push & 0xff00) in sljit_emit_enter()
1151 ? push_inst32(compiler, PUSH_W | (1 << 14) | push) in sljit_emit_enter()
1152 : push_inst16(compiler, PUSH | (1 << 8) | push)); in sljit_emit_enter()
/PHP-5.5/ext/spl/internal/
H A Dspldoublylinkedlist.inc73 public function push($data)
239 return $this->push($value);
H A Dsplqueue.inc17 * - enqueue() is an alias of push()
52 * @note dequeue is an alias of push()
53 * @see splDoublyLinkedList::push()
67 return parent::push($data);
/PHP-5.5/ext/spl/
H A Dspl_dllist.c559 SPL_METHOD(SplDoublyLinkedList, push) in SPL_METHOD() argument
1362 SPL_MA(SplQueue, enqueue, SplDoublyLinkedList, push, arginfo_dllist_push, ZEND_ACC_PUBLIC)
1370 SPL_ME(SplDoublyLinkedList, push, arginfo_dllist_push, ZEND_ACC_PUBLIC)
/PHP-5.5/ext/spl/tests/
H A DSplDoublyLinkedList_bottom_pass_array.phpt9 $list->push("top");
H A DSplDoublyLinkedList_bottom_pass_float.phpt9 $list->push("top");
H A DSplDoublyLinkedList_bottom_pass_integer.phpt9 $list->push("top");
H A DSplDoublyLinkedList_bottom_pass_null.phpt9 $list->push("top");
H A DSplDoublyLinkedList_debug-info.phpt11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
H A DSplDoublyLinkedList_isEmpty_not-empty-with-parameter.phpt11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
H A DSplDoublyLinkedList_isEmpty_not-empty.phpt11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
H A DSplDoublyLinkedList_lifoMode.phpt9 $list->push('o');
10 $list->push('o');
11 $list->push('f');
H A DSplDoublyLinkedList_offsetExists_success.phpt10 $list->push('abc');
11 $list->push('def');
H A DSplDoublyLinkedList_offsetGet_missing_param.phpt8 $dll->push(1);
9 $dll->push(2);
H A DSplDoublyLinkedList_offsetUnset_greater_than_elements.phpt11 $ll->push('1');
12 $ll->push('2');
13 $ll->push('3');
H A DSplDoublyLinkedList_offsetUnset_negative-parameter.phpt11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
H A DSplDoublyLinkedList_offsetUnset_parameter-larger-num-elements.phpt11 $dll->push(1);
12 $dll->push(2);
13 $dll->push(3);
H A DSplDoublyLinkedList_pop_noParams.phpt8 $ll->push(1);
9 $ll->push(2);
H A DSplDoublyLinkedList_push_missing_parameter.phpt2 Check that SplDoublyLinkedList::push generate a warning and return NULL with missing param
8 var_dump($dll->push());
11 Warning: SplDoublyLinkedList::push() expects exactly 1 parameter, 0 given in %s on line %d

Completed in 116 milliseconds

12