/external/pcre/dist/ |
D | pcrecpp.h | 536 const Arg& ptr1 = no_arg, 537 const Arg& ptr2 = no_arg, 538 const Arg& ptr3 = no_arg, 539 const Arg& ptr4 = no_arg, 540 const Arg& ptr5 = no_arg, 541 const Arg& ptr6 = no_arg, 542 const Arg& ptr7 = no_arg, 543 const Arg& ptr8 = no_arg, 544 const Arg& ptr9 = no_arg, 545 const Arg& ptr10 = no_arg, [all …]
|
D | pcrecpp.cc | 59 Arg RE::no_arg((void*)NULL); member in pcrecpp::RE 73 extern Arg no_arg 171 if (&ptr1 == &no_arg) goto done; args[n++] = &ptr1; in FullMatch() 172 if (&ptr2 == &no_arg) goto done; args[n++] = &ptr2; in FullMatch() 173 if (&ptr3 == &no_arg) goto done; args[n++] = &ptr3; in FullMatch() 174 if (&ptr4 == &no_arg) goto done; args[n++] = &ptr4; in FullMatch() 175 if (&ptr5 == &no_arg) goto done; args[n++] = &ptr5; in FullMatch() 176 if (&ptr6 == &no_arg) goto done; args[n++] = &ptr6; in FullMatch() 177 if (&ptr7 == &no_arg) goto done; args[n++] = &ptr7; in FullMatch() 178 if (&ptr8 == &no_arg) goto done; args[n++] = &ptr8; in FullMatch() [all …]
|
D | pcre_scanner.h | 83 const Arg& arg0 = RE::no_arg, 84 const Arg& arg1 = RE::no_arg, 85 const Arg& arg2 = RE::no_arg
|
D | configure.ac | 479 # Older versions of pcre defined pcrecpp::no_arg, but in new versions 480 # it's called pcrecpp::RE::no_arg. For backwards ABI compatibility, 492 class RE { static int no_arg; }; 493 int RE::no_arg;
|
D | configure | 18220 # it's called pcrecpp::RE::no_arg. For backwards ABI compatibility, 18235 class RE { static int no_arg; }; 18236 int RE::no_arg;
|
D | ChangeLog | 2471 16. Added comments and documentation about mis-use of no_arg in the C++ 2622 pre-7.6 versions, which defined a global no_arg variable instead of putting 2752 5. Applied Craig's patch that moves no_arg into the RE class in the C++ code. 2753 This is an attempt to solve the reported problem "pcrecpp::no_arg is not
|
/external/pcre/ |
D | pcrecpp.h | 536 const Arg& ptr1 = no_arg, 537 const Arg& ptr2 = no_arg, 538 const Arg& ptr3 = no_arg, 539 const Arg& ptr4 = no_arg, 540 const Arg& ptr5 = no_arg, 541 const Arg& ptr6 = no_arg, 542 const Arg& ptr7 = no_arg, 543 const Arg& ptr8 = no_arg, 544 const Arg& ptr9 = no_arg, 545 const Arg& ptr10 = no_arg, [all …]
|
D | pcre_scanner.h | 83 const Arg& arg0 = RE::no_arg, 84 const Arg& arg1 = RE::no_arg, 85 const Arg& arg2 = RE::no_arg
|
/external/v8/src/mips64/ |
D | builtins-mips64.cc | 1511 Label no_arg; in Generate_FunctionPrototypeApply() local 1519 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_FunctionPrototypeApply() 1522 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_FunctionPrototypeApply() 1524 __ bind(&no_arg); in Generate_FunctionPrototypeApply() 1629 Label no_arg; in Generate_ReflectApply() local 1637 __ Branch(&no_arg, lt, a0, Operand(zero_reg)); in Generate_ReflectApply() 1641 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_ReflectApply() 1644 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_ReflectApply() 1646 __ bind(&no_arg); in Generate_ReflectApply() 1694 Label no_arg; in Generate_ReflectConstruct() local [all …]
|
/external/v8/src/mips/ |
D | builtins-mips.cc | 1521 Label no_arg; in Generate_FunctionPrototypeApply() local 1529 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_FunctionPrototypeApply() 1532 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_FunctionPrototypeApply() 1534 __ bind(&no_arg); in Generate_FunctionPrototypeApply() 1639 Label no_arg; in Generate_ReflectApply() local 1647 __ Branch(&no_arg, lt, a0, Operand(zero_reg)); in Generate_ReflectApply() 1651 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_ReflectApply() 1654 __ Branch(&no_arg, lt, a0, Operand(sp)); in Generate_ReflectApply() 1656 __ bind(&no_arg); in Generate_ReflectApply() 1704 Label no_arg; in Generate_ReflectConstruct() local [all …]
|
/external/pcre/dist/doc/ |
D | pcre.txt | 9875 NOTE: Do not use no_arg, which is used internally to mark the end of a
|