HomeSort by relevance Sort by last modified time
    Searched full:sequence (Results 51 - 75 of 7716) sorted by null

1 23 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
remove_if.hpp 33 template< typename Sequence, typename U > struct apply
37 , identity<Sequence>
38 , apply2<InsertOp,Sequence,U>
44 typename Sequence
50 Sequence
61 typename Sequence
67 Sequence
O1_size.hpp 25 // returns sequence size if it's an O(1) operation; otherwise returns -1
27 typename BOOST_MPL_AUX_NA_PARAM(Sequence)
30 : O1_size_impl< typename sequence_tag<Sequence>::type >
31 ::template apply< Sequence >
33 BOOST_MPL_AUX_LAMBDA_SUPPORT(1, O1_size, (Sequence))
fold.hpp 27 typename BOOST_MPL_AUX_NA_PARAM(Sequence)
34 ::boost::mpl::O1_size<Sequence>::value
35 , typename begin<Sequence>::type
36 , typename end<Sequence>::type
41 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,fold,(Sequence,State,ForwardOp))
iter_fold.hpp 28 typename BOOST_MPL_AUX_NA_PARAM(Sequence)
35 ::boost::mpl::O1_size<Sequence>::value
36 , typename begin<Sequence>::type
37 , typename end<Sequence>::type
42 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,iter_fold,(Sequence,State,ForwardOp))
reverse_fold.hpp 27 typename BOOST_MPL_AUX_NA_PARAM(Sequence)
35 ::boost::mpl::O1_size<Sequence>::value
36 , typename begin<Sequence>::type
37 , typename end<Sequence>::type
43 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,reverse_fold,(Sequence,State,BackwardOp))
find.hpp 25 typename BOOST_MPL_AUX_NA_PARAM(Sequence)
29 : find_if< Sequence,same_as<T> >
31 BOOST_MPL_AUX_LAMBDA_SUPPORT(2,find,(Sequence,T))
for_each.hpp 88 typename Sequence
93 void for_each(F f, Sequence* = 0, TransformOp* = 0)
95 BOOST_MPL_ASSERT(( is_sequence<Sequence> ));
97 typedef typename begin<Sequence>::type first;
98 typedef typename end<Sequence>::type last;
105 typename Sequence
109 void for_each(F f, Sequence* = 0)
111 for_each<Sequence, identity<> >(f);
  /system/media/camera/docs/
metadata_properties.xsd 35 <sequence>
41 </sequence>
45 <sequence>
47 </sequence>
52 <sequence>
58 </sequence>
78 <sequence maxOccurs="unbounded">
84 </sequence>
88 <sequence>
90 </sequence>
    [all...]
  /external/valgrind/main/drd/docs/
drd-xml-output.xsd 5 <xs:sequence>
8 </xs:sequence>
13 <xs:sequence>
16 </xs:sequence>
21 <xs:sequence>
23 </xs:sequence>
28 <xs:sequence>
32 </xs:sequence>
37 <xs:sequence>
40 </xs:sequence>
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
alias.test 25 # A procedure to return a sequence of increasing integers.
42 db function sequence ::seq::value
48 SELECT x, sequence() FROM t1;
54 SELECT x, sequence() AS y FROM t1 WHERE y>0
60 SELECT x, sequence() AS y FROM t1 WHERE y>0 AND y<99
66 SELECT x, sequence() AS y FROM t1 WHERE y>0 AND y<99 AND y!=55
72 SELECT x, sequence() AS y FROM t1
80 SELECT x, sequence() AS y FROM t1 WHERE y BETWEEN 0 AND 99
86 # SELECT x, sequence() AS y FROM t1 WHERE y IN (55,66,3)
92 SELECT x, 1-sequence() AS y FROM t1 ORDER BY
    [all...]
sidedelete.test 24 # The sequence table is created to store a sequence of integers
30 CREATE TABLE sequence(a INTEGER PRIMARY KEY);
31 INSERT INTO sequence VALUES(1);
32 INSERT INTO sequence VALUES(2);
36 INSERT INTO sequence SELECT a+(SELECT max(a) FROM sequence) FROM sequence;
39 execsql {SELECT count(*) FROM sequence}
59 INSERT INTO t1 SELECT a, a FROM sequence WHERE a<=$i
    [all...]
  /external/chromium_org/net/quic/
quic_ack_notifier_manager.h 31 // a set of AckNotifiers and a map from sequence number to AckNotifier the sake
33 // interested in a given sequence number.
45 // If a packet has been retransmitted with a new sequence number, then this
47 // updates the internal set of sequence numbers in each matching AckNotifier.
55 // inform the AckNotifier of the sequence number which it should track.
64 // Once a given QuicAckNotifier has seen all the sequence numbers it is
69 // Maps from sequence number to the AckNotifiers which are registered
70 // for that sequence number. On receipt of an ACK for a given sequence
  /frameworks/base/core/java/android/print/
IPrintSpoolerCallbacks.aidl 30 void onGetPrintJobInfosResult(in List<PrintJobInfo> printJob, int sequence);
31 void onCancelPrintJobResult(boolean canceled, int sequence);
32 void onSetPrintJobStateResult(boolean success, int sequence);
33 void onSetPrintJobTagResult(boolean success, int sequence);
34 void onGetPrintJobInfoResult(in PrintJobInfo printJob, int sequence);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
size_impl.hpp 31 template< typename Sequence > struct apply
34 typename begin<Sequence>::type
35 , typename end<Sequence>::type
41 typename begin<Sequence>::type
42 , typename end<Sequence>::type
  /external/chromium_org/chrome/browser/resources/ssl/
ssl_errors_common.js 24 var sequence = 'proceed';
25 if (sequence.charCodeAt(keyPressState) == e.keyCode) {
27 if (keyPressState == sequence.length) {
  /external/iptables/include/net/netfilter/
nf_nat.h 23 /* NAT sequence number modifications */
25 /* position of the last TCP sequence number modification (if any) */
28 /* sequence number offset before and after last modification */
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1114040.js 29 var sequence = "";
36 sequence += a;
38 return sequence;
43 var sequence = "";
50 sequence += a;
52 return sequence;
regress-931.js 30 var sequence = ''; variable
35 function first() { sequence += "1"; return o; }
36 function second() { sequence += "2"; return "f"; }
37 function third() { sequence += "3"; return 3; }
38 function fourth() { sequence += "4"; return 4; }
42 assertEquals("1234", sequence);
44 function second_prime() { sequence += "2'"; return 2; }
48 assertEquals("123412'34", sequence);
  /external/v8/test/mjsunit/regress/
regress-1114040.js 29 var sequence = "";
36 sequence += a;
38 return sequence;
43 var sequence = "";
50 sequence += a;
52 return sequence;
regress-931.js 30 var sequence = ''; variable
35 function first() { sequence += "1"; return o; }
36 function second() { sequence += "2"; return "f"; }
37 function third() { sequence += "3"; return 3; }
38 function fourth() { sequence += "4"; return 4; }
42 assertEquals("1234", sequence);
44 function second_prime() { sequence += "2'"; return 2; }
48 assertEquals("123412'34", sequence);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUTF8.cpp 93 static inline int decodeNonASCIISequence(const uint8_t* sequence, unsigned length)
95 ASSERT(!isASCII(sequence[0]));
97 ASSERT(sequence[0] <= 0xDF);
98 if (sequence[0] < 0xC2)
100 if (sequence[1] < 0x80 || sequence[1] > 0xBF)
102 return ((sequence[0] << 6) + sequence[1]) - 0x00003080;
105 ASSERT(sequence[0] >= 0xE0 && sequence[0] <= 0xEF)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_iter.h 17 // "*internal_iter") that were live at the specified "sequence" number
23 SequenceNumber sequence,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/schema/
atom10_build.xsd 6 <xsd:sequence>
13 </xsd:sequence>
18 <xsd:sequence>
20 </xsd:sequence>
26 <xsd:sequence>
32 </xsd:sequence>
37 <xsd:sequence>
39 </xsd:sequence>
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellCheckRequester.cpp 93 requester->didCheckSucceed(m_requestData.sequence(), results);
102 requester->didCheckCancel(m_requestData.sequence());
105 void SpellCheckRequest::setCheckerAndSequence(SpellCheckRequester* requester, int sequence)
108 ASSERT(m_requestData.sequence() == unrequestedTextCheckingSequence);
110 m_requestData.m_sequence = sequence;
173 ASSERT(request->data().sequence() == unrequestedTextCheckingSequence);
174 int sequence = ++m_lastRequestSequence; local
175 if (sequence == unrequestedTextCheckingSequence)
176 sequence = ++m_lastRequestSequence;
178 request->setCheckerAndSequence(this, sequence);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/debug/
safe_base.h 1 // Safe sequence/iterator base implementation -*- C++ -*-
43 * type. It contains a pointer back to the sequence it references
54 /** The sequence this iterator references; may be NULL to indicate
61 * version number must equal the version number in the sequence
67 /** Pointer to the previous iterator in the sequence's list of
71 /** Pointer to the next iterator in the sequence's list of
81 /** Initialize the iterator to reference the sequence pointed to
92 /** Initializes the iterator to reference the same sequence that
111 /** Attaches this iterator to the given sequence, detaching it
112 * from whatever sequence it was attached to originally. If th
    [all...]

Completed in 850 milliseconds

1 23 4 5 6 7 8 91011>>