Searched refs:tuple (Results 1 - 25 of 382) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/Platform/IPC/
H A DArguments.h36 static void encode(ArgumentEncoder& encoder, const std::tuple<Elements...>& tuple) argument
38 encoder << std::get<sizeof...(Elements) - index>(tuple);
39 TupleCoder<index - 1, Elements...>::encode(encoder, tuple);
42 static bool decode(ArgumentDecoder& decoder, std::tuple<Elements...>& tuple) argument
44 if (!decoder.decode(std::get<sizeof...(Elements) - index>(tuple)))
46 return TupleCoder<index - 1, Elements...>::decode(decoder, tuple);
52 static void encode(ArgumentEncoder&, const std::tuple<Elements...>&)
56 static bool decode(ArgumentDecoder&, std::tuple<Element
63 encode(ArgumentEncoder& encoder, const std::tuple<Elements...>& tuple) argument
68 decode(ArgumentDecoder& decoder, std::tuple<Elements...>& tuple) argument
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/tr1/
H A Dtuple_iterate.h1 // class template tuple -*- C++ -*-
43 struct tuple_size<tuple<_GLIBCXX_TEMPLATE_ARGS> >
48 const int tuple_size<tuple<_GLIBCXX_TEMPLATE_ARGS> >::value;
53 class tuple class in namespace:std
55 class tuple<_GLIBCXX_TEMPLATE_ARGS>
61 tuple() function in class:std::tuple
66 tuple(const std::pair<_U1, _U2>& __u) : function in class:std::tuple
71 tuple&
81 explicit tuple(_GLIBCXX_TUPLE_ADD_CREF) : function in class:std::tuple
86 tuple(cons function in class:std::tuple
99 tuple(const tuple& __in) : function in class:std::tuple
105 tuple(const tuple&) argument
[all...]
H A Dtuple_defs.h1 // class template tuple -*- C++ -*-
43 template<_GLIBCXX_TEMPLATE_PARAMS_NULL_CLASS> class tuple;
45 // Returns a const reference to the ith element of a tuple.
48 typename __add_ref<typename tuple_element<__i, tuple<_GLIBCXX_TEMPLATE_ARGS> >::type>::type
49 get(tuple<_GLIBCXX_TEMPLATE_ARGS>& __t)
51 return __get_helper<__i, tuple<_GLIBCXX_TEMPLATE_ARGS> >::get_value(__t);
55 typename __add_c_ref<typename tuple_element<__i, tuple<_GLIBCXX_TEMPLATE_ARGS> >::type>::type
56 get(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t)
58 return __get_helper<__i, tuple<_GLIBCXX_TEMPLATE_ARGS> >::get_value(__t);
63 operator==(const tuple<_GLIBCXX_TEMPLATE_ARG
[all...]
H A Dmu_iterate.h43 class result<_CVMu(_CVArg, tuple<_GLIBCXX_TEMPLATE_ARGS>)>
48 operator()(_CVArg& __arg, const tuple<_GLIBCXX_TEMPLATE_ARGS>& __tuple)
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/marshal/
H A DMarshalledKey.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
28 * Construct the key tuple entry from the key object.
33 * Construct the key object from the key tuple entry.
H A DMarshalledEnt.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
H A DPartKey.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
17 * <p> In this sample, PartKey is bound to the stored key tuple entry by
H A DSupplierKey.java11 import com.sleepycat.bind.tuple.TupleInput;
12 import com.sleepycat.bind.tuple.TupleOutput;
17 * <p> In this sample, SupplierKey is bound to the stored key tuple entry by
/macosx-10.10/ruby-106/ruby/lib/rinda/
H A Drinda.rb27 # Raised when a hash-based tuple has an invalid key.
32 # Raised when trying to use a canceled tuple.
37 # Raised when trying to use an expired tuple.
42 # A tuple is the elementary object in Rinda programming.
43 # Tuples may be matched against templates if the tuple and
60 # The number of elements in the tuple.
63 @tuple.size
67 # Accessor method for elements of the tuple.
70 @tuple[k]
74 # Fetches item +k+ from the tuple
[all...]
H A Dtuplespace.rb25 # nil, or true to indicate when the tuple has expired.
30 @tuple = make_tuple(ary)
50 # Return the object which makes up the tuple itself: the Array
53 def value; @tuple.value; end
61 # Has this tuple expired? (true/false).
63 # A tuple has expired when its expiry timer based on the +sec+ argument to
109 # Retrieves +key+ from the tuple.
112 @tuple[key]
116 # Fetches +key+ from the tuple.
119 @tuple
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DMarshalledTupleEntry.java9 package com.sleepycat.bind.tuple;
32 * Construct the key or data tuple entry from the key or data object.
34 * @param dataOutput is the output tuple.
39 * Construct the key or data object from the key or data tuple entry.
41 * @param dataInput is the input tuple.
H A DMarshalledTupleKeyEntity.java9 package com.sleepycat.bind.tuple;
17 * <p>Note that a marshalled tuple key extractor is somewhat less efficient
18 * than a non-marshalled key tuple extractor because more conversions are
32 * @param keyOutput is the output tuple.
40 * @param keyInput is the input tuple.
49 * @param keyOutput is the output tuple.
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/factory/
H A DPartKey.java11 import com.sleepycat.bind.tuple.MarshalledTupleEntry;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
18 * <p> In this sample, PartKey is bound to the stored key tuple entry by
H A DSupplierKey.java11 import com.sleepycat.bind.tuple.MarshalledTupleEntry;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
18 * <p> In this sample, SupplierKey is bound to the stored key tuple entry by
H A DShipmentKey.java11 import com.sleepycat.bind.tuple.MarshalledTupleEntry;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
18 * <p> In this sample, ShipmentKey is bound to the stored key tuple entry by
/macosx-10.10/WebKit2-7600.1.25/Scripts/webkit2/
H A DMessagesSuperclass-expected.h46 typedef std::tuple<String> DecodeType;
57 const std::tuple<const String&>& arguments() const
63 std::tuple<const String&> m_arguments;
H A DLegacyMessages-expected.h69 typedef std::tuple<String> DecodeType;
80 const std::tuple<const String&>& arguments() const
86 std::tuple<const String&> m_arguments;
92 typedef std::tuple<String> DecodeType;
103 const std::tuple<const String&>& arguments() const
109 std::tuple<const String&> m_arguments;
116 typedef std::tuple<WebKit::WebTouchEvent> DecodeType;
127 const std::tuple<const WebKit::WebTouchEvent&>& arguments() const
133 std::tuple<const WebKit::WebTouchEvent&> m_arguments;
140 typedef std::tuple<WebKi
[all...]
H A DMessages-expected.h69 typedef std::tuple<String> DecodeType;
80 const std::tuple<const String&>& arguments() const
86 std::tuple<const String&> m_arguments;
92 typedef std::tuple<String> DecodeType;
103 const std::tuple<const String&>& arguments() const
109 std::tuple<const String&> m_arguments;
116 typedef std::tuple<WebKit::WebTouchEvent> DecodeType;
127 const std::tuple<const WebKit::WebTouchEvent&>& arguments() const
133 std::tuple<const WebKit::WebTouchEvent&> m_arguments;
140 typedef std::tuple<WebKi
[all...]
/macosx-10.10/ruby-106/ruby/sample/drb/
H A Dring_echo.rb23 ts.read_all([:name, :RingEcho, nil, nil]).each do |tuple|
24 p tuple[2]
25 puts tuple[2].echo('Hello, World') rescue nil
H A Dold_tuplespace.rb22 def match(tuple)
23 return nil if tuple.size != self.size
25 unless @list[i] === tuple[i]
41 def wakeup_waiting(tuple)
42 sz = tuple.length
49 if x[0].match(tuple)
91 def put_que(tuple)
92 sz = tuple.length
94 @que[sz].push tuple
100 tuples.each do |tuple|
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/tuple/
H A DPartKey.java9 package collections.ship.tuple;
14 * <p> In this sample, PartKey is bound to the key's tuple storage entry using
H A DShipmentData.java9 package collections.ship.tuple;
H A DSupplierKey.java9 package collections.ship.tuple;
14 * <p> In this sample, SupplierKey is bound to the key's tuple storage entry
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/serial/
H A DTupleSerialMarshalledBinding.java11 import com.sleepycat.bind.tuple.MarshalledTupleKeyEntity;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
34 * Creates a tuple-serial marshalled binding object.
50 * Creates a tuple-serial marshalled binding object.
H A DTupleSerialMarshalledKeyCreator.java11 import com.sleepycat.bind.tuple.MarshalledTupleKeyEntity;
12 import com.sleepycat.bind.tuple.TupleInput;
13 import com.sleepycat.bind.tuple.TupleOutput;
29 * Creates a tuple-serial marshalled key creator.
31 * @param binding is the binding used for the tuple-serial entity.

Completed in 245 milliseconds

1234567891011>>