Searched refs:tuple (Results 1 - 25 of 382) sorted by last modified time

1234567891011>>

/macosx-10.10/xnu-2782.1.97/makedefs/
H A DMakeInc.cmd201 # $(1) is an expanded kernel config from a TARGET_CONFIGS_UC tuple
202 # $(2) is an expanded arch config from a TARGET_CONFIGS_UC tuple
203 # $(3) is an expanded machine config from a TARGET_CONFIGS_UC tuple
206 # $(1) is an un-expanded kernel config from a TARGET_CONFIGS_UC tuple
207 # $(2) is an un-expanded arch config from a TARGET_CONFIGS_UC tuple
208 # $(3) is an un-expanded machine config from a TARGET_CONFIGS_UC tuple
/macosx-10.10/llvmCore-3425.0.34/utils/lit/lit/
H A DShUtil.py65 assert isinstance(tok, tuple) and len(tok) == 1
189 if isinstance(tok, tuple):
207 assert isinstance(tok, tuple)
237 assert isinstance(operator, tuple) and len(operator) == 1
H A DTestFormats.py182 path_in_suite + tuple(suffix.split(os.sep)),
H A Dmain.py200 return ts, tuple(relative + tuple(components))
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/
H A Dgtest-printers.h76 // // Prints the fields of a tuple tersely to a string vector, one
484 // Overload for ::std::tr1::tuple. Needed for printing function arguments,
487 // Helper function for printing a tuple. T must be instantiated with
488 // a tuple type.
494 // regardless of whether tr1::tuple is implemented using the
497 inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) {
502 void PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) {
507 void PrintTo(const ::std::tr1::tuple<T1, T2>& t, ::std::ostream* os) {
512 void PrintTo(const ::std::tr1::tuple<T1, T2, T3>& t, ::std::ostream* os) {
517 void PrintTo(const ::std::tr1::tuple<T
[all...]
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util-generated.h43 // by the maximum arity of the implementation of tr1::tuple which is
2839 : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
2841 typedef ::std::tr1::tuple<T1, T2> ParamType;
2954 : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3> > {
2956 typedef ::std::tr1::tuple<T1, T2, T3> ParamType;
3086 : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4> > {
3088 typedef ::std::tr1::tuple<T1, T2, T3, T4> ParamType;
3237 : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4, T5> > {
3239 typedef ::std::tr1::tuple<T1, T2, T3, T4, T5> ParamType;
3405 : public ParamGeneratorInterface< ::std::tr1::tuple<T
[all...]
H A Dgtest-port.h62 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
72 // Test's own tr1 tuple implementation should be
436 // Determines whether Google Test can use tr1/tuple. You can define
437 // this macro to 0 to prevent Google Test from using tuple (any
438 // feature depending on tuple with be disabled in this mode).
444 // Determines whether Google Test's own tr1 tuple implementation
449 // We use our own TR1 tuple if we aren't sure the user has an
451 // 2010 are the only mainstream compilers that come with a TR1 tuple
453 // defining __GNUC__ and friends, but cannot compile GCC's tuple
454 // implementation. MSVC 2008 (9.0) provides TR1 tuple i
[all...]
H A Dgtest-tuple.h34 // Implements a subset of TR1 tuple needed by Google Test and Google Mock.
42 // tuple template as a friend (it complains that tuple is redefined). This
50 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \
54 // GTEST_n_TUPLE_(T) is the type of an n-tuple.
55 #define GTEST_0_TUPLE_(T) tuple<>
56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \
58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \
60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \
62 #define GTEST_4_TUPLE_(T) tuple<
175 class tuple<> { class in namespace:std::tr1
177 tuple() {} function in class:std::tr1::tuple
178 tuple(const tuple& /* t */) {} function in class:std::tr1::tuple
187 tuple() : f0_() {} function
191 tuple(const tuple& t) : f0_(t.f0_) {} function
219 tuple() : f0_(), f1_() {} function
224 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function
229 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function
262 tuple() : f0_(), f1_(), f2_() {} function
267 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function
299 tuple() : f0_(), f1_(), f2_(), f3_() {} function
305 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function
340 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function
346 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
384 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function
391 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
431 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function
438 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
480 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function
488 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
532 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function
540 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
582 class tuple { class in namespace:std::tr1
586 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple
595 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple
[all...]
/macosx-10.10/dyld-353.2.1/src/
H A DImageLoader.cpp375 ImageLoader::InterposeTuple tuple; local
376 tuple.replacement = (uintptr_t)array[i].replacement;
377 tuple.neverImage = NULL;
378 tuple.onlyImage = this;
379 tuple.replacee = (uintptr_t)array[i].replacee;
382 if ( (it->replacee == tuple.replacee) && (it->onlyImage == this) ) {
383 tuple.replacee = it->replacement;
386 ImageLoader::fgInterposingTuples.push_back(tuple);
H A DImageLoaderMachO.cpp848 ImageLoader::InterposeTuple tuple; local
849 tuple.replacement = interposeArray[i].replacement;
850 tuple.neverImage = this;
851 tuple.onlyImage = NULL;
852 tuple.replacee = interposeArray[i].replacee;
854 if ( this->containsAddress((void*)tuple.replacement) ) {
857 if ( it->replacee == tuple.replacee ) {
858 tuple.replacee = it->replacement;
861 ImageLoader::fgInterposingTuples.push_back(tuple);
/macosx-10.10/curl-83.1.2/curl/packages/vms/
H A Dgnv_link_curl.com233 $! Version tuple is not a simple compare.
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPage.cpp69 typedef std::tuple<WKPageLoaderClientV0, WKPageLoaderClientV1, WKPageLoaderClientV2, WKPageLoaderClientV3, WKPageLoaderClientV4, WKPageLoaderClientV5> Versions;
73 typedef std::tuple<WKPagePolicyClientV0, WKPagePolicyClientV1, WKPagePolicyClientInternal> Versions;
77 typedef std::tuple<WKPageUIClientV0, WKPageUIClientV1, WKPageUIClientV2, WKPageUIClientV3> Versions;
H A DWKContext.cpp61 typedef std::tuple<WKContextDownloadClientV0> Versions;
64 typedef std::tuple<WKContextHistoryClientV0> Versions;
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DInlineTextBox.cpp108 for (const auto& tuple : intermediateTuples) {
109 if (tuple.first - previous > dilationAmount) {
111 result.append(tuple.first);
113 previous = tuple.second;
/macosx-10.10/WebKit2-7600.1.25/Scripts/webkit2/
H A Dmessages.py97 return 'std::tuple<%s>' % ', '.join(function_parameter_type(parameter.type) for parameter in message.parameters)
110 return 'std::tuple<%s>' % ', '.join(parameter.type for parameter in parameters)
471 headers.append('<%s/%s.h>' % tuple(split[0:2]))
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...]
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;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundlePageLoaderClient.h43 typedef std::tuple<WKBundlePageLoaderClientV0, WKBundlePageLoaderClientV1, WKBundlePageLoaderClientV2, WKBundlePageLoaderClientV3, WKBundlePageLoaderClientV4, WKBundlePageLoaderClientV5, WKBundlePageLoaderClientV6, WKBundlePageLoaderClientV7, WKBundlePageLoaderClientV8> Versions;
H A DInjectedBundlePageUIClient.h40 typedef std::tuple<WKBundlePageUIClientV0, WKBundlePageUIClientV1, WKBundlePageUIClientV2> Versions;
H A DInjectedBundlePageFormClient.h36 typedef std::tuple<WKBundlePageFormClientV0, WKBundlePageFormClientV1, WKBundlePageFormClientV2> Versions;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebFindClient.h37 typedef std::tuple<WKPageFindClientV0> Versions;
41 typedef std::tuple<WKPageFindMatchesClientV0> Versions;
H A DWebFormClient.h35 typedef std::tuple<WKPageFormClientV0> Versions;
/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/IOPCIFamily-239.1.2/
H A DIOPCIConfigurator.cpp590 char tuple[64]; local
593 len = snprintf(tuple, sizeof(tuple), "%u:%u:%u", PCI_ADDRESS_TUPLE(device));
594 if (device->isBridge && (len < sizeof(tuple)))
596 snprintf(&tuple[len], sizeof(tuple) - len, "(%u:%u)", device->secBusNum, device->subBusNum);
598 string = OSString::withCString(tuple);

Completed in 436 milliseconds

1234567891011>>