/external/python/absl-py/absl/flags/ |
D | _defines.pyi | 23 from typing import Text, List, Any, TypeVar, Optional, Union, Type, Iterable, overload, Literal 29 @overload 43 @overload 57 @overload 66 @overload 86 # @overload 95 # @overload 103 # @overload 113 @overload 124 @overload [all …]
|
/external/skia/resources/sksl/errors/ |
D | ReadonlyWriteonly.compute | 7 void overload(readonly texture2D t) {} 8 void overload(writeonly texture2D t, int) {} 18 overload(src); // OK: overload(readonly texture2D t) exists 19 overload(src, 1); // BAD: overload(readonly texture2D t, int) missing 20 overload(dest); // BAD: overload(writeonly texture2D t) missing 21 overload(dest, 1); // OK: overload(writeonly texture2D t, int) exists 50 no match for overload(readonlyTexture2D, int) 51 no match for overload(writeonlyTexture2D)
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.pas | 112 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 …]
|
D | Antlr.Runtime.Tree.pas | 73 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 …]
|
D | Antlr.Runtime.Tools.pas | 143 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 …]
|
D | Antlr.Runtime.Collections.pas | 117 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/ |
D | CharacterBenchmark.java | 31 @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/ |
D | addr-of-overloaded-fn.cu | 8 __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/skia/tests/sksl/errors/ |
D | ReadonlyWriteonly.glsl | 15 error: 19: no match for overload(readonlyTexture2D, int) 16 overload(src, 1); // BAD: overload(readonly texture2D t, int) missing 18 error: 20: no match for overload(writeonlyTexture2D) 19 overload(dest); // BAD: overload(writeonly texture2D t) missing
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p5-generic-lambda-1y.cpp | 14 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/tensorflow/tensorflow/python/autograph/converters/ |
D | logical_expressions.py | 80 overload = self._overload_of(op) 81 if overload is None: 83 return self._as_binary_function(overload, left, right) 111 overload = self._overload_of(node.op) 112 if overload is None: 115 return self._as_unary_function(overload, node.operand)
|
/external/python/absl-py/absl/ |
D | app.pyi | 2 …mport Any, Callable, Collection, Iterable, List, NoReturn, Optional, Text, TypeVar, Union, overload 46 @overload 54 @overload 83 @overload 92 @overload
|
/external/skia/src/sksl/ir/ |
D | SkSLFunctionDeclaration.h | 75 void setNextOverload(FunctionDeclaration* overload) { in setNextOverload() argument 76 SkASSERT(!overload || overload->name() == this->name()); in setNextOverload() 77 fNextOverload = overload; in setNextOverload()
|
/external/cronet/third_party/protobuf/python/google/protobuf/internal/ |
D | containers.py | 58 overload, 83 @overload 87 @overload 199 @overload 203 @overload 336 @overload 340 @overload 412 @overload 416 @overload 524 @overload [all …]
|
/external/protobuf/python/google/protobuf/internal/ |
D | containers.py | 58 overload, 83 @overload 87 @overload 199 @overload 203 @overload 336 @overload 340 @overload 412 @overload 416 @overload 524 @overload [all …]
|
/external/python/pyfakefs/pyfakefs/ |
D | helpers.py | 23 from typing import Union, Optional, Any, AnyStr, overload, cast 49 @overload 53 @overload 95 @overload 99 @overload 103 @overload
|
/external/tensorflow/tensorflow/compiler/xla/python/xla_extension/ |
D | ops.pyi | 17 from typing import Any, List, Optional, Sequence, Tuple, overload 139 @overload 143 @overload 250 @overload 252 @overload 290 @overload 300 @overload 311 @overload 316 @overload 325 @overload [all …]
|
/external/catch2/docs/ |
D | tostring.md | 5 [operator << overload for std::ostream](#operator--overload-for-stdostream)<br> 16 ## operator << overload for std::ostream 32 If you don't want to provide an ```operator <<``` overload, or you want to convert your type differ… 76 Enums that already have a `<<` overload for `std::ostream` will convert to strings as expected.
|
/external/dokka/core/testdata/format/website/ |
D | sample.md | 10 <div class="overload-group" markdown="1"> 25 <div class="overload-group" markdown="1">
|
D | overloadGroup.md | 10 <div class="overload-group" markdown="1"> 23 <div class="overload-group" markdown="1">
|
/external/dokka/core/testdata/format/website-samples/ |
D | sample.md | 10 <div class="overload-group" markdown="1"> 35 <div class="overload-group" markdown="1">
|
/external/dokka/core/testdata/format/website/dataTagsInGroupNode/ |
D | multiplatform.md | 10 <div class="overload-group" data-platform="JVM" markdown="1"> 18 <div class="overload-group" data-platform="JS" markdown="1">
|
/external/clang/test/SemaObjC/ |
D | ovl-check.m | 4 // in overload resolution in ObjC. 55 // Overload resolution should occur silently, select the CFTypeRef overload,
|
/external/dnsmasq/src/ |
D | rfc2131.c | 1290 unsigned char *ret, *overload; in option_find() local 1298 if (!(overload = option_find1(&mess->options[0] + sizeof(u32), ((unsigned char*) mess) + size, in option_find() 1303 if ((overload[2] & 1) && in option_find() 1308 if ((overload[2] & 2) && in option_find() 1359 unsigned char* overload; in dhcp_packet_size() local 1388 overload = find_overload(mess); in dhcp_packet_size() 1390 if (overload && (option_uint(overload, 0, 1) & 1)) { in dhcp_packet_size() 1397 if (overload && (option_uint(overload, 0, 1) & 2)) { in dhcp_packet_size() 1431 unsigned char* overload; in free_space() local 1433 if (!(overload = find_overload(mess)) && (mess->file[0] == 0 || mess->sname[0] == 0)) { in free_space() [all …]
|
/external/clang/test/SemaOpenCL/ |
D | cl20-device-side-enqueue.cl | 14 // Testing the first overload type 37 // Testing the second overload type 54 // Testing the third overload type 105 // Testing the forth overload type
|