Home
last modified time | relevance | path

Searched refs:Ex (Results 1 – 25 of 91) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DintersectionMemberOfUnionNarrowsCorrectly.symbols9 type Ex<T, U> = T extends U ? T : never;
10 >Ex : Symbol(Ex, Decl(intersectionMemberOfUnionNarrowsCorrectly.ts, 0, 75))
17 declare let x: Ex<U, { kind?: 'A' }>
19 >Ex : Symbol(Ex, Decl(intersectionMemberOfUnionNarrowsCorrectly.ts, 0, 75))
DintersectionMemberOfUnionNarrowsCorrectly.types9 type Ex<T, U> = T extends U ? T : never;
10 >Ex : Ex<T, U>
12 declare let x: Ex<U, { kind?: 'A' }>
DintersectionMemberOfUnionNarrowsCorrectly.js3 type Ex<T, U> = T extends U ? T : never;
4 declare let x: Ex<U, { kind?: 'A' }>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonConstExtenders.cpp303 bool operator==(const ExtExpr &Ex) const { in operator ==()
304 return Rs == Ex.Rs && S == Ex.S && Neg == Ex.Neg; in operator ==()
306 bool operator!=(const ExtExpr &Ex) const { in operator !=()
307 return !operator==(Ex); in operator !=()
309 bool operator<(const ExtExpr &Ex) const { in operator <()
310 if (Rs != Ex.Rs) in operator <()
311 return Rs < Ex.Rs; in operator <()
312 if (S != Ex.S) in operator <()
313 return S < Ex.S; in operator <()
314 return !Neg && Ex.Neg; in operator <()
[all …]
/third_party/rust/crates/minimal-lexical/.github/PULL_REQUEST_TEMPLATE/
Ddocumentation.md16 Ex: Fixed a backtick leading to improper formatting in README.
17 Ex: Fixed code sample for `parse_partial` in README.
18 Ex: Updated outdated doc comments in `parse_float`.
/third_party/typescript/tests/cases/conformance/types/intersection/
DintersectionMemberOfUnionNarrowsCorrectly.ts2 type Ex<T, U> = T extends U ? T : never; alias
3 declare let x: Ex<U, { kind?: 'A' }>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h4103 Node *Ex = getDerived().parseExpr(); in parseNewExpr() local
4104 if (Ex == nullptr) in parseNewExpr()
4106 Names.push_back(Ex); in parseNewExpr()
4496 Node *Ex = getDerived().parseExpr(); in parseExpr() local
4497 if (Ex == nullptr) in parseExpr()
4498 return Ex; in parseExpr()
4499 return make<CastExpr>("const_cast", Ty, Ex); in parseExpr()
4530 Node *Ex = getDerived().parseExpr(); in parseExpr() local
4531 if (Ex == nullptr) in parseExpr()
4532 return Ex; in parseExpr()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h39 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections()
40 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
/third_party/ffmpeg/libavfilter/
Daf_arnndn.c511 static void frame_analysis(AudioRNNContext *s, DenoiseState *st, AVComplexFloat *X, float *Ex, cons… in frame_analysis() argument
520 compute_band_energy(Ex, X); in frame_analysis()
1035 … float *Ex, float *Ep, float *Exp, float *features, const float *in) in compute_frame_features() argument
1049 frame_analysis(s, st, X, Ex, in); in compute_frame_features()
1072 Exp[i] = Exp[i] / sqrtf(.001f+Ex[i]*Ep[i]); in compute_frame_features()
1086 Ly[i] = log10f(1e-2f + Ex[i]); in compute_frame_features()
1090 E += Ex[i]; in compute_frame_features()
1157 static void pitch_filter(AVComplexFloat *X, const AVComplexFloat *P, const float *Ex, const float *… in pitch_filter() argument
1170 r[i] *= sqrtf(Ex[i]/(1e-8+Ep[i])); in pitch_filter()
1179 norm[i] = sqrtf(Ex[i] / (1e-8+newE[i])); in pitch_filter()
[all …]
/third_party/rust/crates/minimal-lexical/.github/ISSUE_TEMPLATE/
Dquestion.md11 A clear and concise description of what the question is. Ex. how do I use minimal-lexical without a…
Ddocumentation.md13 Ex: Documentation for `parse_float` contains a typo.
Dfeature_request.md11 A clear and concise description of what the problem is. Ex. minimal-lexical does not parse standard…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWasmObjectFile.cpp1027 wasm::WasmExport Ex; in parseExportSection() local
1028 Ex.Name = readString(Ctx); in parseExportSection()
1029 Ex.Kind = readUint8(Ctx); in parseExportSection()
1030 Ex.Index = readVaruint32(Ctx); in parseExportSection()
1031 switch (Ex.Kind) { in parseExportSection()
1034 if (!isDefinedFunctionIndex(Ex.Index)) in parseExportSection()
1037 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
1040 if (!isValidGlobalIndex(Ex.Index)) in parseExportSection()
1045 if (!isValidEventIndex(Ex.Index)) in parseExportSection()
1056 Exports.push_back(Ex); in parseExportSection()
/third_party/benchmark/.github/ISSUE_TEMPLATE/
Dfeature_request.md11 A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
/third_party/skia/third_party/externals/angle2/src/third_party/ceval/
DREADME.md59Ex: `2,3` would give `3`; `4,3,0` would be equal to `0`; and `cos(_pi/2,_pi/3,_pi)` would return `…
62 Ex: `0.0314` could be written as `3.14e-2`; `1230000` could be subsituted by `1.23e6`
/third_party/mesa3d/docs/
Dcodingstyle.rst122 - Mesa usually uses camel case for local variables (Ex:
123 ``localVarname``) while Gallium typically uses underscores (Ex:
/third_party/libphonenumber/resources/carrier/en/
D594.txt16 # Search using prefix 0694X. Ex: 06945
D98.txt16 # MVNOs ranges are listed if the assignments are clear. Ex: 9991 range is
D596.txt16 # Search using prefix 0696X. Ex: 06965
/third_party/skia/third_party/externals/icu/source/data/brkitr/
Den.txt43 "Ex.",
/third_party/icu/icu4c/source/data/brkitr/
Den.txt43 "Ex.",
/third_party/node/deps/openssl/openssl/apps/
Drsa8192.pem33 4Ex/td4cuggpEj3FGJV74qRvdvj/MF/uF7IxC/3WapPIsFBFH4zrJsUYt6u3L68I
/third_party/openssl/apps/
Drsa8192.pem33 4Ex/td4cuggpEj3FGJV74qRvdvj/MF/uF7IxC/3WapPIsFBFH4zrJsUYt6u3L68I
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLint.cpp697 } else if (ExtractValueInst *Ex = dyn_cast<ExtractValueInst>(V)) { in findValueImpl() local
698 if (Value *W = FindInsertedValue(Ex->getAggregateOperand(), in findValueImpl()
699 Ex->getIndices())) in findValueImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp4614 auto extend = [&](Value *ScalarRoot, Value *Ex, Type *ScalarType) { in vectorizeTree() argument
4616 return Ex; in vectorizeTree()
4618 return Builder.CreateSExt(Ex, ScalarType); in vectorizeTree()
4619 return Builder.CreateZExt(Ex, ScalarType); in vectorizeTree()
4652 Value *Ex = Builder.CreateExtractElement(Vec, Lane); in vectorizeTree() local
4653 Ex = extend(ScalarRoot, Ex, Scalar->getType()); in vectorizeTree()
4656 ExternallyUsedValues.insert({Ex, Locs}); in vectorizeTree()
4659 Scalar->replaceAllUsesWith(Ex); in vectorizeTree()
4677 Value *Ex = Builder.CreateExtractElement(Vec, Lane); in vectorizeTree() local
4678 Ex = extend(ScalarRoot, Ex, Scalar->getType()); in vectorizeTree()
[all …]

1234