Home
last modified time | relevance | path

Searched defs:make (Results 1 – 25 of 384) sorted by relevance

12345678910>>...16

/external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/transform/detail/preprocessed/
Dmake_gcc_workaround.hpp11 struct make<proto::expr<Tag, Args, Arity>()> struct
25 return proto::expr<Tag, Args, Arity>::make( in operator ()() argument
32 struct make<proto::basic_expr<Tag, Args, Arity>()> struct
46 return proto::basic_expr<Tag, Args, Arity>::make( in operator ()() argument
54 struct make<proto::expr<Tag, Args, Arity>(A0)> struct
68 return proto::expr<Tag, Args, Arity>::make( in operator ()() argument
75 struct make<proto::basic_expr<Tag, Args, Arity>(A0)> struct
89 return proto::basic_expr<Tag, Args, Arity>::make( in operator ()() argument
97 struct make<proto::expr<Tag, Args, Arity>(A0 , A1)> struct
111 return proto::expr<Tag, Args, Arity>::make( in operator ()() argument
[all …]
Dmake.hpp52 struct make<Object()> struct
59 typedef typename detail::make_if_<Object, Expr, State, Data>::type result_type; argument
154 struct make<Object(A0)> struct
161 typedef typename detail::make_if_<Object, Expr, State, Data>::type result_type; argument
188 struct make<Object(A0...)> struct
193 : make< argument
278 struct make<Object(A0 , A1)> struct
285 typedef typename detail::make_if_<Object, Expr, State, Data>::type result_type; argument
312 struct make<Object(A0 , A1...)> struct
317 : make< argument
[all …]
/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/statement/detail/preprocessed/
Dcatch_push_back_30.hpp32 make( in make() function
64 make( in make() function
94 make( in make() function
133 make( in make() function
165 make( in make() function
195 make( in make() function
234 make( in make() function
266 make( in make() function
296 make( in make() function
335 make( in make() function
[all …]
Dcatch_push_back_50.hpp32 make( in make() function
64 make( in make() function
94 make( in make() function
133 make( in make() function
165 make( in make() function
195 make( in make() function
234 make( in make() function
266 make( in make() function
296 make( in make() function
335 make( in make() function
[all …]
Dcatch_push_back_40.hpp32 make( in make() function
64 make( in make() function
94 make( in make() function
133 make( in make() function
165 make( in make() function
195 make( in make() function
234 make( in make() function
266 make( in make() function
296 make( in make() function
335 make( in make() function
[all …]
Dcatch_push_back_20.hpp32 make( in make() function
64 make( in make() function
94 make( in make() function
133 make( in make() function
165 make( in make() function
195 make( in make() function
234 make( in make() function
266 make( in make() function
296 make( in make() function
335 make( in make() function
[all …]
Dcatch_push_back_10.hpp32 make( in make() function
64 make( in make() function
94 make( in make() function
133 make( in make() function
165 make( in make() function
195 make( in make() function
234 make( in make() function
266 make( in make() function
296 make( in make() function
335 make( in make() function
[all …]
/external/protobuf/examples/
DREADME.md44 ### C++
63 ### Python
77 ### Java
92 ### Go
122 ### Dart
/external/cronet/third_party/protobuf/examples/
DREADME.md44 ### C++
63 ### Python
77 ### Java
92 ### Go
122 ### Dart
/external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/transform/detail/
Dmake_gcc_workaround.hpp53 struct make<proto::expr<Tag, Args, Arity>(BOOST_PP_ENUM_PARAMS(N, A))> struct
68 return proto::expr<Tag, Args, Arity>::make( in operator ()() argument
76 struct make<proto::basic_expr<Tag, Args, Arity>(BOOST_PP_ENUM_PARAMS(N, A))> struct
91 return proto::basic_expr<Tag, Args, Arity>::make( in operator ()() argument
Dmake.hpp145 struct make<Object(BOOST_PP_ENUM_PARAMS(N, A))> struct
151 /// \brief <tt>boost::result_of\<make\<Object\>(Expr, State, Data)\>::type</tt> argument
182 struct make<Object(BOOST_PP_ENUM_PARAMS(N, A)...)> struct
187 : make< argument
/external/javassist/src/main/javassist/
DCtNewConstructor.java66 public static CtConstructor make(String src, CtClass declaring) in make() method in CtNewConstructor
96 public static CtConstructor make(CtClass[] parameters, in make() method in CtNewConstructor
197 public static CtConstructor make(CtClass[] parameters, in make() method in CtNewConstructor
311 public static CtConstructor make(CtClass[] parameters, in make() method in CtNewConstructor
DCtNewMethod.java47 public static CtMethod make(String src, CtClass declaring) in make() method in CtNewMethod
70 public static CtMethod make(String src, CtClass declaring, in make() method in CtNewMethod
105 public static CtMethod make(CtClass returnType, in make() method in CtNewMethod
132 public static CtMethod make(int modifiers, CtClass returnType, in make() method in CtNewMethod
/external/deqp/scripts/
Dmake_release.py107 def make (self, packageBuildInfo): member in DstFile
115 def make (self, packageBuildInfo): member in CopyFile
125 def make (self, packageBuildInfo): member in GenReleaseInfoFileTarget
144 def make (self, packageBuildInfo): member in GenCMake
179 def make (self, packageBuildInfo): member in FileTargetGroup
197 def make (self, packageBuildInfo): member in SingleFileTarget
210 def make (self, packageBuildInfo): member in BuildTarget
226 def make (self, packageBuildInfo): member in BuildAndroidTarget
252 def make (self, packageBuildInfo): member in FetchExternalSourcesTarget
264 def make (self, packageBuildInfo): member in RemoveSourcesTarget
[all …]
/external/clang/test/SemaTemplate/
Dclass-template-spec.cpp179 template<typename Dummy> struct make<0, 0, Dummy> { typedef integer_sequence<T> type; }; struct
180 template<typename Dummy> struct make<1, 1, Dummy> { typedef integer_sequence<T, 0> type; }; struct
181 …template<T N, typename Dummy> struct make<N, 0, Dummy> : __make_integer_sequence_impl<make_integer… struct
182 …template<T N, typename Dummy> struct make<N, 1, Dummy> : __make_integer_sequence_impl<make_integer… struct
/external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/
DInnerClassNonStaticCore384Test.java42 private String make; field in InnerClassNonStaticCore384Test.Vehicle
45 protected Vehicle(String make, String model) { in Vehicle()
57 public void setMake(String make) { in setMake()
88 public Car(String make, String model, int seatingCapacity, double topSpeed) { in Car()
132 public Truck(String make, String model, double payloadCapacity) { in Truck()
/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/statement/detail/
Dcatch_push_back.hpp76 make( in make() function
115 make( in make() function
152 make( in make() function
/external/clang/test/PCH/
Dcxx1y-default-initializer.cpp14 template<typename T> constexpr A make() { return A {}; } in make() function
15 template<typename T> constexpr A make(T t) { return A { t }; } in make() function
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp12.cpp18 static Temp<A::Public> make() { return Temp<A::Public>(); } in make() function in test1::Temp
46 …template <> class Temp<A::Private> Temp<int>::make() { // expected-error {{'Private' is a private … in make() function in test2::Temp
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DFactory.java131 public CLDRFile make( in make() method in Factory
137 public CLDRFile make(String localeID, boolean resolved, boolean includeDraft) { in make() method in Factory
142 public CLDRFile make(String localeID, boolean resolved) { in make() method in Factory
225 public static Factory make(String path, String string) { in make() method in Factory
241 public static Factory make(String mainDirectory, String string, DraftStatus approved) { in make() method in Factory
/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/core/detail/cpp03/preprocessed/
Dexpression_10.hpp43 … static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0) in make() function
84 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
125 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
166 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
207 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
248 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
289 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
330 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
371 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
412 …static type make(typename boost::add_reference<typename boost::add_const<A0>::type>::type a0 , typ… in make() function
/external/cronet/third_party/libc++/src/test/libcxx/algorithms/alg.modifying.operations/
Dcopy_move_trivial.pass.cpp81 T make(int from) { in make() function
87 T make(int i) { in make() function
94 FuncPtr make(int) { in make() function
100 MemObjPtr make(int) { in make() function
106 MemFuncPtr make(int) { in make() function
112 BitfieldS make(int x) { in make() function
121 AlignedS make(int x) { in make() function
/external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/detail/
Dbasic_expr.hpp132 static basic_expr const make(A0 &a0) in make() function
141 static basic_expr const make(A0 const &a0) in make() function
151 static basic_expr const make(BOOST_PP_ENUM_BINARY_PARAMS(ARG_COUNT, A, const &a)) in make() function
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/
Dargument_expression.hpp34 static type make() in make() function
49 static type make() in make() function
/external/skia/modules/skparagraph/src/
DParagraphBuilderImpl.cpp65 std::unique_ptr<ParagraphBuilder> ParagraphBuilder::make(const ParagraphStyle& style, in make() function in skia::textlayout::ParagraphBuilder
70 std::unique_ptr<ParagraphBuilder> ParagraphBuilderImpl::make(const ParagraphStyle& style, in make() function in skia::textlayout::ParagraphBuilderImpl
82 std::unique_ptr<ParagraphBuilder> ParagraphBuilder::make(const ParagraphStyle& style, in make() function in skia::textlayout::ParagraphBuilder
88 std::unique_ptr<ParagraphBuilder> ParagraphBuilderImpl::make(const ParagraphStyle& style, in make() function in skia::textlayout::ParagraphBuilderImpl

12345678910>>...16