Searched refs:peek (Results 1 - 25 of 129) sorted by relevance

123456

/macosx-10.9.5/ncurses-42/ncurses/ncurses/
H A Dfifo_defs.h45 /* peek points to next uninterpreted character */
46 #define peek sp->_fifopeek macro
52 #define p_inc() { peek == FIFO_SIZE-1 ? peek = 0 : peek++;}
54 #define cooked_key_in_fifo() ((head != -1) && (peek != head))
55 #define raw_key_in_fifo() ((head != -1) && (peek != tail))
/macosx-10.9.5/ruby-104/ruby/test/rexml/
H A Dtest_pullparser.rb76 peek = parser.peek()
77 peek.inspect
92 peek = parser.peek()
93 assert_equal( :start_element, peek.event_type )
94 assert_equal( names[0], peek[0] )
/macosx-10.9.5/awk-18/src/
H A Dlex.c94 int peek(void) function
214 if (peek() == '\n') {
216 } else if (peek() == '\r') {
224 if (peek() == '&') {
229 if (peek() == '|') {
234 if (peek() == '=') {
236 } else if (peek() == '~') {
244 if (peek() == '=') {
250 if (peek() == '=') {
256 if (peek()
[all...]
/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A Dlib_ungetch.c53 T(("head = %d, tail = %d, peek = %d", head, tail, peek));
72 peek = tail; /* no raw keys */
H A Dlib_getch.c121 int ch = sp->_fifo[peek];
122 TR(TRACE_IEVENT, ("peeking at %d", peek));
135 if (peek == head) {
137 peek = head;
236 head = peek = tail;
253 tail = peek = 0;
576 ** (that is head==-1 || peek==head)
597 peek = head; /* the keys stay uninterpreted */
602 peek = head; /* the keys stay uninterpreted */
614 peek
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/drb/
H A Dtimeridconv.rb40 obj = peek(key)
52 obj = peek(key)
58 def peek(key) method in class:DRb.TimerIdConv.TimerHolder2
/macosx-10.9.5/JavaScriptCore-7537.78.1/yarr/
H A DYarrParser.h266 ASSERT(peek() == '\\');
274 switch (peek()) {
346 if (peek() >= '8') {
453 ASSERT(peek() == '[');
461 switch (peek()) {
490 ASSERT(peek() == '(');
529 ASSERT(peek() == ')');
575 switch (peek()) {
726 int peek() function in class:JSC::Yarr::Parser
734 return !atEndOfPattern() && WTF::isASCIIDigit(peek());
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DSharedBufferChunkReader.h57 size_t peek(Vector<char>&, size_t);
/macosx-10.9.5/cups-372.4/cups/ppdc/
H A Dppdc-file.cxx20 // ppdcFile::peek() - Look at the next character from a file.
93 // 'ppdcFile::peek()' - Look at the next character from a file.
97 ppdcFile::peek() function in class:ppdcFile
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dlex.c710 enum lextok peek; local
789 peek = LEXERR;
795 peek = STRING;
807 peek = ENDINPUT;
809 peek = NEWLIN;
812 return peek;
918 peek = INOUTANG;
925 peek = INANG;
927 peek = TRINANG;
929 peek
1021 enum lextok peek; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DInputStreamPreprocessor.h52 // The only way we can fail to peek is if there are no more
54 ALWAYS_INLINE bool peek(SegmentedString& source) function in class:WebCore::InputStreamPreprocessor
76 return peek(source);
/macosx-10.9.5/groff-38/groff/src/preproc/pic/
H A Dpic.h75 virtual int peek() = 0;
92 int peek();
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dcp-demangle.c1030 char peek = d_peek_char (di); local
1032 if (peek == 'G' || peek == 'T')
1069 peek = d_peek_char (di);
1070 if (dc == NULL || peek == '\0' || peek == 'E')
1092 char peek = d_peek_char (di); local
1095 switch (peek)
1212 char peek; local
1216 peek
1275 char peek; local
1332 char peek; local
1783 char peek; local
1953 char peek; local
2023 char peek; local
2094 char peek; local
2292 char peek; local
2608 char peek; local
[all...]
H A Dcp-demangle.c.orig1030 char peek = d_peek_char (di);
1032 if (peek == 'G' || peek == 'T')
1069 peek = d_peek_char (di);
1070 if (dc == NULL || peek == '\0' || peek == 'E')
1092 char peek = d_peek_char (di);
1095 switch (peek)
1212 char peek;
1216 peek
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Dlogger.pl10 peek => [],
89 if (@{$args{peek}}) {
90 for (@{$args{peek}}) {
103 # otherwise, peek at all sites
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Dlogger.pl10 peek => [],
89 if (@{$args{peek}}) {
90 for (@{$args{peek}}) {
103 # otherwise, peek at all sites
/macosx-10.9.5/WebCore-7537.78.1/platform/network/qt/
H A DQtMIMETypeSniffer.cpp50 QByteArray data = m_reply->peek(m_sniffer.dataSize());
/macosx-10.9.5/WebCore-7537.78.1/xml/parser/
H A DMarkupTokenizerInlines.h87 if (source.isEmpty() || !m_inputStreamPreprocessor.peek(source)) \
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/tests/
H A Dqsort.test30 binary scan [::ffidl::peek $p1 [::ffidl::sizeof int]] [::ffidl::format int] v1
31 binary scan [::ffidl::peek $p2 [::ffidl::sizeof int]] [::ffidl::format int] v2
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOSharedDataQueue.h106 * @function peek
107 * @abstract Used to peek at the next entry on the queue.
108 * @discussion This function can be used to look at the next entry which allows the entry to be received without having to copy it with dequeue. In order to do this, call peek to get the entry. Then call dequeue with a NULL data pointer. That will cause the head to be moved to the next entry, but no memory to be copied.
111 virtual IODataQueueEntry * peek();
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_rdengine_oo.tcl68 set pos [$mystackloc peek]
70 set children [lreverse [$mystackast peek [$mystackast size]]] ; # SaveToMark
73 return [$mystackast peek]
123 method ast {} { return [$mystackast peek] }
211 set pos [$mystackloc peek]
319 set at [$mystackloc peek]
339 set pos [$mystackloc peek]
349 set mark [$mystackmark peek];# Old size of stack before current nt pushed more.
352 set pos [$mystackloc peek]
358 # peek
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/wip/
H A Dwip.tcl63 method peek {} {} ; # peek at next word in input
248 while {[llength $program] && [struct::set contains $accept [$self peek]]} {
256 while {[llength $program] && ![struct::set contains $reject [$self peek]]} {
264 if {[llength $program] && [struct::set contains $accept [$self peek]]} {
272 if {[llength $program] && ![struct::set contains $reject [$self peek]]} {
337 method peek {} {
451 next peek peekall run_next
H A Dwip2.tcl67 method peek {} {} ; # peek at next word in input
255 while {[llength $program] && [struct::set contains $accept [$self peek]]} {
263 while {[llength $program] && ![struct::set contains $reject [$self peek]]} {
271 if {[llength $program] && [struct::set contains $accept [$self peek]]} {
279 if {[llength $program] && ![struct::set contains $reject [$self peek]]} {
338 method peek {} {
452 next peek peekall run_next
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/
H A Druby_lex.rb247 def peek(i = 0) method in class:tokenize
433 proc{|op, io| @prev_char_no == 0 && peek(0) =~ /\s/}) do
439 until ( peek_equal?("=end") && peek(4) =~ /\s/ ) do
495 c = peek(0)
575 if @space_seen and peek(0) =~ /[0-9]/
580 elsif @lex_state != EXPR_END and peek(0) =~ /[0-9]/
592 if peek(0) =~ /[0-9]/
622 if @lex_state == EXPR_END || peek(0) =~ /\s/
647 elsif peek(0) == '='
651 elsif @lex_state == EXPR_ARG and @space_seen and peek(
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSourceMap.js188 if (stringCharIterator.peek() === ",")
191 while (stringCharIterator.peek() === ";") {
201 if (this._isSeparator(stringCharIterator.peek())) {
213 if (!this._isSeparator(stringCharIterator.peek()))
290 peek: function() method in class:WebInspector.SourceMap.StringCharIterator

Completed in 324 milliseconds

123456