Home
last modified time | relevance | path

Searched defs:p4 (Results 1 – 25 of 240) sorted by relevance

12345678910

/external/googletest/googlemock/include/gmock/
Dgmock-more-actions.h203 #define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ argument
206 #define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ argument
209 #define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
213 #define GMOCK_INTERNAL_DECL_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
217 #define GMOCK_INTERNAL_DECL_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
221 #define GMOCK_INTERNAL_DECL_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
244 #define GMOCK_INTERNAL_INIT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)\ argument
249 #define GMOCK_INTERNAL_INIT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)\ argument
256 #define GMOCK_INTERNAL_INIT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)\ argument
263 #define GMOCK_INTERNAL_INIT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)\ argument
[all …]
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-generated-actions.h1050 #define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ argument
1053 #define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ argument
1056 #define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
1060 #define GMOCK_INTERNAL_DECL_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
1064 #define GMOCK_INTERNAL_DECL_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
1068 #define GMOCK_INTERNAL_DECL_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
1088 #define GMOCK_INTERNAL_INIT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)\ argument
1092 #define GMOCK_INTERNAL_INIT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)\ argument
1097 #define GMOCK_INTERNAL_INIT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)\ argument
1102 #define GMOCK_INTERNAL_INIT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)\ argument
[all …]
/external/clang/test/Sema/
Denable_if.c100 void *p4 = (void *)isdigit2; in test5() local
128 …void *p4 = (void*)f2; // expected-error{{address of overloaded function 'f2' is ambiguous}} expect… in test6() local
137 …void *p4 = (void*)f3; // expected-error{{address of overloaded function 'f3' does not match requir… in test7() local
/external/llvm-project/clang/test/Sema/
Denable_if.c100 void *p4 = (void *)isdigit2; in test5() local
128 …void *p4 = (void*)f2; // expected-error{{address of overloaded function 'f2' is ambiguous}} expect… in test6() local
137 …void *p4 = (void*)f3; // expected-error{{address of overloaded function 'f3' does not match requir… in test7() local
Dmatrix-type-builtins.c28 void column_major_load(float *p1, int *p2, _Bool *p3, struct Foo *p4) { in column_major_load()
70 …olumn_major_store(sx5x10_t *m1, ix3x2_t *m2, float *p1, int *p2, struct Foo *p3, const float *p4) { in column_major_store()
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DAggregationData.java66 Function<? super LastValueDataDouble, T> p4, in match()
106 Function<? super LastValueDataDouble, T> p4, in match()
149 Function<? super LastValueDataDouble, T> p4, in match()
192 Function<? super LastValueDataDouble, T> p4, in match()
247 Function<? super LastValueDataDouble, T> p4, in match()
404 Function<? super LastValueDataDouble, T> p4, in match()
506 Function<? super LastValueDataDouble, T> p4, in match()
549 Function<? super LastValueDataDouble, T> p4, in match()
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dcppcoreguidelines-pro-bounds-pointer-arithmetic-pr36489.cpp17 auto p4 = getPtr(); in auto_deduction_binary() local
41 auto p4 = getPtrAuto()[5]; in auto_deduction_subscript() local
/external/libjpeg-turbo/
Djerror.h252 #define ERREXIT4(cinfo, code, p1, p2, p3, p4) \ argument
259 #define ERREXIT6(cinfo, code, p1, p2, p3, p4, p5, p6) \ argument
307 #define TRACEMS4(cinfo, lvl, code, p1, p2, p3, p4) \ argument
312 #define TRACEMS5(cinfo, lvl, code, p1, p2, p3, p4, p5) \ argument
318 #define TRACEMS8(cinfo, lvl, code, p1, p2, p3, p4, p5, p6, p7, p8) \ argument
/external/libchrome/ui/gfx/geometry/
Dquad_f.h30 const PointF& p4) in QuadF()
49 constexpr const PointF& p4() const { return p4_; } in p4() function
/external/clang/test/SemaCXX/
Dnullability.cpp78 …void *_Nonnull p4 = nullable; // expected-warning{{implicit conversion from nullable pointer 'void… in AssignAndInitNonNull() local
93 …void *_Nonnull p4 = ReturnNullable(); // expected-warning{{implicit conversion from nullable point… in AssignAndInitNonNullFromFn() local
Dcxx11-ast-print.cpp28 const char *p4 = 0x129_bar; variable
/external/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/
Dappend_op.pass.cpp32 path p4 = p1 / "def"; in main() local
/external/libaom/libaom/aom_dsp/mips/
Dconvolve8_horiz_dspr2.c32 uint32_t p1, p2, p3, p4; in convolve_horiz_4_dspr2() local
138 uint32_t p1, p2, p3, p4, n1; in convolve_horiz_8_dspr2() local
300 uint32_t p1, p2, p3, p4, p5; in convolve_horiz_16_dspr2() local
565 uint32_t p1, p2, p3, p4, p5; in convolve_horiz_64_dspr2() local
/external/testng/src/test/java/test/parameters/
DInheritFromSuiteChild2.java18 public void inheritedparameter(String p1, String p2, String p3, @Optional("abc")String p4) { in inheritedparameter()
DInheritFromSuiteChild1.java18 public void inheritedparameter(String p1, String p2, @Optional("foobar")String p3, String p4) { in inheritedparameter()
DInheritFromSuiteChild3.java17 public void inheritedparameter(String p1, String p2, String p3, String p4) { in inheritedparameter()
/external/llvm-project/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/
Dappend_op.pass.cpp31 path p4 = p1 / "def"; in main() local
/external/clang/test/Analysis/
DNewDelete+MismatchedDeallocator_intersections.cpp26 int *p4 = (int *)malloc(sizeof(int)); in testMallocFreeNoWarn() local
DNewDelete-variadic.cpp22 int *p4 = new (x) int[0]; // no warn in testGlobalCustomVariadicNew() local
/external/llvm-project/clang/test/Analysis/
DNewDelete+MismatchedDeallocator_intersections.cpp35 int *p4 = (int *)malloc(sizeof(int)); in testMallocFreeNoWarn() local
DNewDelete-variadic.cpp22 int *p4 = new (x) int[0]; // no warn in testGlobalCustomVariadicNew() local
/external/libvpx/libvpx/vpx_dsp/mips/
Dconvolve8_horiz_dspr2.c30 uint32_t p1, p2, p3, p4; in convolve_horiz_4_dspr2() local
136 uint32_t p1, p2, p3, p4, n1; in convolve_horiz_8_dspr2() local
298 uint32_t p1, p2, p3, p4, p5; in convolve_horiz_16_dspr2() local
563 uint32_t p1, p2, p3, p4, p5; in convolve_horiz_64_dspr2() local
Dconvolve8_avg_horiz_dspr2.c31 uint32_t p1, p2, p3, p4; in convolve_avg_horiz_4_dspr2() local
148 uint32_t p1, p2, p3, p4, n1; in convolve_avg_horiz_8_dspr2() local
334 uint32_t p1, p2, p3, p4, p5; in convolve_avg_horiz_16_dspr2() local
642 uint32_t p1, p2, p3, p4, p5; in convolve_avg_horiz_64_dspr2() local
/external/llvm-project/clang/test/AST/
Dast-print-record-decl.c188 KW T *p4; in defSelfRef() local
220 KW T *p4; // expected-warning {{'T' is deprecated}} in declsOnly() local
/external/llvm-project/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Ddeduct.pass.cpp71 std::pair<int&, char> p4(i, 'c'); in test_primary_template() local
122 std::pair<int&, char> p4(i, 'c'); in test_primary_template() local

12345678910