Home
last modified time | relevance | path

Searched refs:ending (Results 1 - 25 of 39) sorted by relevance

12

/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_compound_decl_body.py55 ending,
110 if ending == ',':
128 ending = None
129 while ending != '}':
142 name, init, ending,
145 ending = '}'
/third_party/node/test/parallel/
H A Dtest-stream-writableState-ending.js10 function testStates(ending, finished, ended) {
11 assert.strictEqual(writable._writableState.ending, ending);
H A Dtest-child-process-fork-net.js74 debug(`[${id}] ending ${i}/${needEnd.length}`);
80 debug(`[${id}] process disconnect, ending`);
82 debug(`[${id}] ending ${i}/${needEnd.length}`);
H A Dtest-net-server-max-connections-close-makes-more-available.js42 console.error(`ending ${index}`);
/third_party/node/src/
H A Dinspector_profiler.h54 // Return if the profile is ending and the response can be parsed.
55 virtual bool ending() const = 0;
90 bool ending() const override { return ending_; }
114 bool ending() const override { return ending_; }
134 bool ending() const override { return ending_; }
/third_party/node/lib/internal/streams/
H A Dwritable.js107 this.ending = false;
321 if (state.ending) {
491 const needDrain = !state.ending && !stream.destroyed && state.length === 0 &&
626 } else if (!state.errored && !state.ending) {
633 state.ending = true;
654 return (state.ending &&
797 !w.ending && !w.ended;
831 return this._writableState ? this._writableState.ending : false;
840 return !wState.destroyed && !wState.ending && wState.needDrain;
H A Dduplex.js72 this._writableState.ending = true;
H A Ddestroy.js180 w.ending = w.writable === false;
H A Dduplexify.js53 this._writableState.ending = true;
/third_party/node/lib/internal/http2/
H A Dcompat.js480 ending: false,
509 return state.ending;
514 return state.ending;
734 if (state.ending) {
767 if ((state.closed || state.ending) &&
779 state.ending = true;
833 endStream: state.ending,
479 ending: false, global() property
H A Dcore.js1916 const { ending } = stream._writableState;
1918 if (!ending) {
1932 if (!ending || stream.writableFinished || code !== NGHTTP2_NO_ERROR ||
2175 !this._writableState.ending ||
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_string.h137 void SetLineEndings (char ending);
H A Ddng_string.cpp1815 void dng_string::SetLineEndings (char ending) in SetLineEndings() argument
1837 if (ending) in SetLineEndings()
1839 *(dPtr++) = ending; in SetLineEndings()
1848 if (ending) in SetLineEndings()
1850 *(dPtr++) = ending; in SetLineEndings()
/third_party/mesa3d/src/mesa/main/
H A Dversion.c42 * Scans 'string' to see if it ends with 'ending'.
45 check_for_ending(const char *string, const char *ending) in check_for_ending() argument
48 const size_t len2 = strlen(ending); in check_for_ending()
53 return strcmp(string + (len1 - len2), ending) == 0; in check_for_ending()
/third_party/skia/experimental/tools/
H A Dpdf-comparison.py107 def getfilesoftype(directory, ending):
111 if f.endswith(ending):
/third_party/vk-gl-cts/framework/common/
H A DtcuCommandLine.cpp720 const std::string ending = ".txt"; in parseCaseList() local
721 readGroupFile = (line.length() > ending.length()) && in parseCaseList()
722 std::equal(ending.rbegin(), ending.rend(), line.rbegin()); in parseCaseList()
/third_party/gn/src/gn/
H A Dfunction_rebase_path.cc21 // We want the output to match the input in terms of ending in a slash or not.
180 strings. This means if you want a root path ("//" or "/") not ending in a
/third_party/skia/src/core/
H A DSkPathRef.cpp328 void SkPathRef::interpolate(const SkPathRef& ending, SkScalar weight, SkPathRef* out) const {
329 const SkScalar* inValues = &ending.getPoints()->fX;
H A DSkPath.cpp143 // ending with close, so countVerbs needs to be checked against 0.
243 bool SkPath::interpolate(const SkPath& ending, SkScalar weight, SkPath* out) const { in interpolate() argument
245 if (pointCount != ending.fPathRef->countPoints()) { in interpolate()
253 fPathRef->interpolate(*ending.fPathRef, weight, out->fPathRef.get()); in interpolate()
/third_party/skia/include/private/
H A DSkPathRef.h347 void interpolate(const SkPathRef& ending, SkScalar weight, SkPathRef* out) const;
/third_party/ffmpeg/tests/fate/
H A Dmov.mak62 # Makes sure that we handle edit lists ending on a B-frame correctly.
67 # Makes sure that we handle timestamps of packets in case of multiple edit lists with one of them ending on a B-frame correctly.
/third_party/node/lib/internal/util/
H A Dinspect.js1695 const ending = emptyItems > 1 ? 's' : '';
1696 const message = `<${emptyItems} empty item${ending}>`;
1709 const ending = remaining > 1 ? 's' : '';
1710 const message = `<${remaining} empty item${ending}>`;
/third_party/skia/include/core/
H A DSkPath.h178 average of this SkPoint array and ending SkPoint array, using the formula:
179 (Path Point * weight) + ending Point * (1 - weight).
181 weight is most useful when between zero (ending SkPoint array) and
186 the same size as ending SkPoint array. Call isInterpolatable() to check SkPath
189 @param ending SkPoint array averaged with this SkPoint array
191 one minus contribution of ending SkPoint array
197 bool interpolate(const SkPath& ending, SkScalar weight, SkPath* out) const;
762 /** Adds cubic from last point towards (x1, y1), then towards (x2, y2), ending at
781 /** Adds cubic from last point towards SkPoint p1, then towards SkPoint p2, ending at
/third_party/node/lib/internal/modules/esm/
H A Dresolve.js85 ''}. Mapping specifiers ending in "/" is no longer supported.`,
/third_party/vulkan-loader/loader/
H A Dloader.c2822 // Look for files ending with ".json" suffix in add_if_manifest_file()
4686 char ending = '.';
4689 ending = '!';
4696 ending);
4700 ending);
4705 ending);
4713 exp_layer_prop->info.layerName, ending);

Completed in 69 milliseconds

12