Home
last modified time | relevance | path

Searched refs:overload (Results 1 – 25 of 92) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas112 procedure Rewind(const Marker: Integer); overload;
125 procedure Rewind; overload;
347 function ToString(const Start, Stop: Integer): String; overload;
355 function ToString(const Start, Stop: IToken): String; overload;
469 function ToString: String; overload; in ToString()
470 function ToString(const TokenNames: TStringArray): String; overload; in ToString()
817 procedure ConsumeUntil(const Input: IIntStream; const TokenType: Integer); overload;
820 procedure ConsumeUntil(const Input: IIntStream; const BitSet: IBitSet); overload;
965 function GetTokens: IList<IToken>; overload;
966 function GetTokens(const Start, Stop: Integer): IList<IToken>; overload;
[all …]
DAntlr.Runtime.Tree.pas73 function CreateNode(const Payload: IToken): IANTLRInterface; overload;
162 function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload; in BecomeRoot()
209 …ction BecomeRoot(const NewRoot: IToken; const OldRoot: IANTLRInterface): IANTLRInterface; overload;
217 … function CreateNode(const TokenType: Integer; const FromToken: IToken): IANTLRInterface; overload;
226 const Text: String): IANTLRInterface; overload;
234 function CreateNode(const TokenType: Integer; const Text: String): IANTLRInterface; overload;
369 function ToString(const Start, Stop: IANTLRInterface): String; overload; in ToString()
370 function ToString: String; overload; in ToString()
561 procedure SanityCheckParentAndChildIndexes; overload;
563 const I: Integer); overload;
[all …]
DAntlr.Runtime.Tools.pas143 procedure AddRange(const Values: array of T); overload;
144 procedure AddRange(const Collection: IEnumerable<T>); overload;
145 procedure AddRange(Collection: TEnumerable<T>); overload;
146 procedure AddRange(const List: IList<T>); overload;
150 procedure InsertRange(Index: Integer; const Values: array of T); overload;
151 procedure InsertRange(Index: Integer; const Collection: IEnumerable<T>); overload;
152 procedure InsertRange(Index: Integer; const Collection: TEnumerable<T>); overload;
153 procedure InsertRange(Index: Integer; const List: IList<T>); overload;
168 procedure Sort; overload;
169 procedure Sort(const AComparer: IComparer<T>); overload;
[all …]
DAntlr.Runtime.Collections.pas117 constructor Create; overload;
118 constructor Create(const ACapacity: Integer); overload;
156 class function ListToString(const Coll: IList<IANTLRInterface>): String; overload; static; in ListToString()
157 class function ListToString(const Coll: IList<String>): String; overload; static; in ListToString()
/external/caliper/examples/src/main/java/examples/
DCharacterBenchmark.java31 @Param private Overload overload; field in CharacterBenchmark
56 if (overload == Overload.CHAR) { in isSpace()
73 if (overload == Overload.CHAR) { in digit()
89 if (overload == Overload.CHAR) { in getNumericValue()
105 if (overload == Overload.CHAR) { in isDigit()
121 if (overload == Overload.CHAR) { in isIdentifierIgnorable()
137 if (overload == Overload.CHAR) { in isJavaIdentifierPart()
153 if (overload == Overload.CHAR) { in isJavaIdentifierStart()
169 if (overload == Overload.CHAR) { in isLetter()
185 if (overload == Overload.CHAR) { in isLetterOrDigit()
[all …]
/external/clang/test/SemaCUDA/
Daddr-of-overloaded-fn.cu8 __host__ void overload() {} in overload() function
9 __device__ void overload() {} in overload() function
14 void (*x)() = overload; in test_hd()
20 void (*x)() = overload; in test_host()
23 void (*x)() = overload; in test_device()
/external/syslinux/com32/lib/
Ddhcppack.c96 uint8_t overload; in dhcp_pack_packet() local
109 overload = 0; in dhcp_pack_packet()
112 overload |= 1; in dhcp_pack_packet()
117 overload |= 2; in dhcp_pack_packet()
137 if (overload) { in dhcp_pack_packet()
140 *q++ = overload; in dhcp_pack_packet()
147 if (overload & 1) { in dhcp_pack_packet()
156 if (overload & 2) { in dhcp_pack_packet()
Ddhcpunpack.c64 uint8_t overload; in dhcp_unpack_packet() local
77 overload = 0; in dhcp_unpack_packet()
79 overload = *(uint8_t *)opt[52].data; in dhcp_unpack_packet()
85 if (overload & 1) { in dhcp_unpack_packet()
100 if (overload & 2) { in dhcp_unpack_packet()
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp5-generic-lambda-1y.cpp14 template <class F1, class F2> struct overload : F1, F2 { struct
17 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { } in overload() function
26 overload<decltype(Base), decltype(NumParams)> O(Base, NumParams);
32 template <class F1, class F2> struct overload : F1, F2 { struct
35 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { } in overload() function
44 overload<decltype(Base), decltype(NumParams)> O(Base, NumParams);
/external/clang/test/SemaObjC/
Dovl-check.m4 // in overload resolution in ObjC.
55 // Overload resolution should occur silently, select the CFTypeRef overload,
/external/dnsmasq/src/
Drfc2131.c1475 unsigned char *ret, *overload; in option_find() local
1482 …if (!(overload = option_find1(&mess->options[0] + sizeof(u32), ((unsigned char *)mess) + size, OPT… in option_find()
1486 if ((overload[2] & 1) && in option_find()
1491 if ((overload[2] & 2) && in option_find()
1552 unsigned char *overload; in dhcp_packet_size() local
1587 overload = find_overload(mess); in dhcp_packet_size()
1589 if (overload && (option_uint(overload, 0, 1) & 1)) in dhcp_packet_size()
1598 if (overload && (option_uint(overload, 0, 1) & 2)) in dhcp_packet_size()
1637 unsigned char *overload; in free_space() local
1639 if (!(overload = find_overload(mess)) && in free_space()
[all …]
/external/v8/src/asmjs/
Dasm-types.cc318 void AsmOverloadedFunctionType::AddOverload(AsmType* overload) { in AddOverload() argument
319 DCHECK(overload->AsCallableType() != nullptr); in AddOverload()
320 overloads_.push_back(overload); in AddOverload()
Dasm-types.h163 void AddOverload(AsmType* overload);
/external/clang/test/SemaOpenCL/
Dcl20-device-side-enqueue.cl14 // Testing the first overload type
37 // Testing the second overload type
54 // Testing the third overload type
105 // Testing the forth overload type
/external/python/cpython3/Doc/library/
Dtyping.rst830 .. decorator:: overload
832 The ``@overload`` decorator allows describing functions and methods
834 of ``@overload``-decorated definitions must be followed by exactly one
835 non-``@overload``-decorated definition (for the same function/method).
836 The ``@overload``-decorated definitions are for the benefit of the
838 non-``@overload``-decorated definition, while the latter is used at
840 a ``@overload``-decorated function directly will raise
841 ``NotImplementedError``. An example of overload that gives a more
844 @overload
847 @overload
[all …]
/external/ImageMagick/m4/
Dax_cxx_bool.m413 # overload a function such that it accepts either the basic type or the
/external/clang/test/SemaObjCXX/
Dunknown-anytype.mm47 // - get this call through overload resolution somehow,
Doverload.mm173 // it's okay to overload Class with id.
/external/libcxx/include/experimental/
Dcoroutine228 // NOTE: this overload isn't required by the standard but is needed so
229 // the deleted _Promise* overload doesn't make from_address(nullptr)
/external/syslinux/core/lwip/src/core/
Ddhcp.c1471 u32_t overload = dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_OVERLOAD); in dhcp_parse_reply() local
1473 if (overload == DHCP_OVERLOAD_FILE) { in dhcp_parse_reply()
1476 } else if (overload == DHCP_OVERLOAD_SNAME) { in dhcp_parse_reply()
1479 } else if (overload == DHCP_OVERLOAD_SNAME_FILE) { in dhcp_parse_reply()
1484 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("invalid overload option: %d\n", (int)overload)); in dhcp_parse_reply()
/external/deqp/doc/testspecs/GLES31/
Dfunctional.shaders.arrays_of_arrays.txt43 overload functions
/external/clang/include/clang/Basic/
DAttrDocs.td190 which overload is selected based on the values of the function's arguments.
207 overload candidate could not be selected to be displayed in diagnostics. The
217 evaluation, then this overload will not be chosen and the provided string may
241 share ODR-equivalent enable_if expressions, the overload resolution is
242 ambiguous. Otherwise, enable_if overload resolution continues with the next
245 overload out of a number of viable overloads using enable_if.
287 Because ``enable_if`` evaluation happens during overload resolution,
364 ``pass_object_size`` plays a part in overload resolution. If two overload
365 candidates are otherwise equally good, then the overload with one or more
376 // OK -- overload A has no parameters with pass_object_size.
[all …]
DOperatorKinds.def101 // ?: can *not* be overloaded, but we need the overload
/external/libcxx/
DTODO.TXT66 * INCOMPLETE - Late 36: permissions() error_code overload should be noexcept
/external/clang/include/clang/AST/
DCommentCommands.td221 def Overload : DeclarationVerbatimLineCommand<"overload">;

1234