/third_party/python/Tools/c-analyzer/c_parser/parser/ |
H A D | _compound_decl_body.py | 55 ending, 110 if ending == ',': 128 ending = None 129 while ending != '}': 142 name, init, ending, 145 ending = '}'
|
/third_party/node/test/parallel/ |
H A D | test-stream-writableState-ending.js | 10 function testStates(ending, finished, ended) { 11 assert.strictEqual(writable._writableState.ending, ending);
|
H A D | test-child-process-fork-net.js | 74 debug(`[${id}] ending ${i}/${needEnd.length}`); 80 debug(`[${id}] process disconnect, ending`); 82 debug(`[${id}] ending ${i}/${needEnd.length}`);
|
H A D | test-net-server-max-connections-close-makes-more-available.js | 42 console.error(`ending ${index}`);
|
/third_party/node/src/ |
H A D | inspector_profiler.h | 54 // 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 D | writable.js | 107 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 D | duplex.js | 72 this._writableState.ending = true;
|
H A D | destroy.js | 180 w.ending = w.writable === false;
|
H A D | duplexify.js | 53 this._writableState.ending = true;
|
/third_party/node/lib/internal/http2/ |
H A D | compat.js | 480 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 D | core.js | 1916 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 D | dng_string.h | 137 void SetLineEndings (char ending);
|
H A D | dng_string.cpp | 1815 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 D | version.c | 42 * 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 D | pdf-comparison.py | 107 def getfilesoftype(directory, ending): 111 if f.endswith(ending):
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCommandLine.cpp | 720 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 D | function_rebase_path.cc | 21 // 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 D | SkPathRef.cpp | 328 void SkPathRef::interpolate(const SkPathRef& ending, SkScalar weight, SkPathRef* out) const { 329 const SkScalar* inValues = &ending.getPoints()->fX;
|
H A D | SkPath.cpp | 143 // 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 D | SkPathRef.h | 347 void interpolate(const SkPathRef& ending, SkScalar weight, SkPathRef* out) const;
|
/third_party/ffmpeg/tests/fate/ |
H A D | mov.mak | 62 # 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 D | inspect.js | 1695 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 D | SkPath.h | 178 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 D | resolve.js | 85 ''}. Mapping specifiers ending in "/" is no longer supported.`,
|
/third_party/vulkan-loader/loader/ |
H A D | loader.c | 2822 // 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);
|