Home
last modified time | relevance | path

Searched refs:from (Results 651 - 675 of 3572) sorted by relevance

1...<<21222324252627282930>>...143

/third_party/node/test/parallel/
H A Dtest-stream-readable-event.js38 r.push(Buffer.from('blerg'));
58 r.push(Buffer.from('bl'));
77 r.push(Buffer.from('blerg'));
/third_party/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_internal.h46 #define PAD(from, to) \
48 from = (from + to - 1) & ~(to - 1); \
/third_party/rust/crates/bindgen/bindgen-tests/tests/quickchecking/src/
H A Dbin.rs27 Err(_) => Err(String::from( in validate_generate_range()
37 Err(_) => Err(String::from( in validate_tests_count()
47 false => Err(String::from("Provided directory path does not exist.")), in validate_path()
/third_party/skia/third_party/externals/tint/src/
H A Dclone_context.cc30 Program const* from, in CloneContext()
32 : dst(to), src(from) { in CloneContext()
37 from->Symbols().Foreach([&](Symbol s, const std::string&) { Clone(s); }); in CloneContext()
29 CloneContext(ProgramBuilder* to, Program const* from, bool auto_clone_symbols) CloneContext() argument
/third_party/skia/tools/perf-canvaskit-puppeteer/
H A Dbenchmark.js31 // This allows us to make sure the noise from the first few renders (e.g shader
32 // compilation, caches) is removed from the data we capture.
82 'total_frame_ms': Array.from(totalFrame).slice(0, idx),
84 'with_flush_ms': Array.from(withFlush).slice(0, idx),
87 'without_flush_ms': Array.from(withoutFlush).slice(0, idx),
/third_party/typescript/tests/baselines/reference/
H A DdeclarationEmitDefaultExportWithStaticAssignment.js7 import {Foo} from './foo';
12 import {Foo} from './foo';
98 import { Foo } from './foo';
H A DdeclarationsForFileShadowingGlobalNoError.js8 import { Node } from './custom'
9 import { DOMNode } from './dom'
62 import { DOMNode } from './dom';
H A DelidedJSImport2(module=commonjs).js4 import { Foo } from "./other.js";
5 import * as other from "./other.js";
6 import defaultFoo from "./other.js";
H A DmoduleSameValueDuplicateExportedBindings2.js4 export * from "./b";
5 export * from "./c";
8 export {Animals} from "./c";
H A DesModuleInterop.js12 import { sayHello } from "./hybrid";
13 import path from "./path";
14 import * as fs from "./fs";
H A DesModuleInteropNamedDefaultImports.js7 import Foo from "./mod";
8 import { default as Foo2 } from "./mod";
9 import { Bar, default as Foo3 } from "./mod";
H A DjsDeclarationsExportFormsErr.js11 import * as ns from "./cls";
15 export * from "./cls";
78 export * from "./cls";
/third_party/icu/icu4c/source/test/intltest/
H A Ddadrcal.cpp12 * 07/09/2007 srl Copied from dadrcoll.cpp
88 // Get 'from' time in testOps()
109 // Headers { "locale","from","operation","params","to" } in testOps()
128 // #2 'from' info in testOps()
129 param = "from"; in testOps()
130 UnicodeString from = testSetting=currentCase->getString(param, status); in testOps() local
137 if(from.startsWith(kMILLIS)){ in testOps()
138 UnicodeString millis = UnicodeString(from, kMILLIS.length()); in testOps()
198 UnicodeString caseContentsString = locale+": from "+from in testOps()
413 UnicodeString from = currentCase->getString("from", status); testConvert() local
[all...]
/third_party/node/deps/v8/src/strings/
H A Dstring-builder-inl.h69 static inline void AddSubjectSlice(FixedArrayBuilder* builder, int from, in AddSubjectSlice() argument
71 DCHECK_GE(from, 0); in AddSubjectSlice()
72 int length = to - from; in AddSubjectSlice()
75 StringBuilderSubstringPosition::is_valid(from)) { in AddSubjectSlice()
77 StringBuilderSubstringPosition::encode(from); in AddSubjectSlice()
82 builder->Add(Smi::FromInt(from)); in AddSubjectSlice()
86 void AddSubjectSlice(int from, int to) { in AddSubjectSlice() argument
88 AddSubjectSlice(&array_builder_, from, to); in AddSubjectSlice()
89 IncrementCharacterCount(to - from); in AddSubjectSlice()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Diapp.c181 /* Send IAPP ADD-notify to remove possible association from other APs in iapp_send_add()
261 struct sockaddr_in *from, in iapp_process_add_notify()
278 "Received IAPP ADD-notify (seq# %d) from %s:%d%s", in iapp_process_add_notify()
280 inet_ntoa(from->sin_addr), ntohs(from->sin_port), in iapp_process_add_notify()
308 struct sockaddr_in from; in iapp_receive_udp() local
314 fromlen = sizeof(from); in iapp_receive_udp()
316 (struct sockaddr *) &from, &fromlen); in iapp_receive_udp()
323 if (from.sin_addr.s_addr == iapp->own.s_addr) in iapp_receive_udp()
328 "Received %d byte IAPP frame from in iapp_receive_udp()
260 iapp_process_add_notify(struct iapp_data *iapp, struct sockaddr_in *from, struct iapp_hdr *hdr, int len) iapp_process_add_notify() argument
[all...]
/third_party/zlib/examples/
H A Dgzappend.c8 arising from the use of this software.
20 3. This notice may not be removed or altered from any source distribution.
47 gzappend takes a gzip file and appends to it, compressing files from the
48 command line or data from stdin. The gzip file is written to directly, to
53 zlib 1.2.x's inflate() function. This option returns from inflate() at each
71 data from the gzip file to initialize the dictionary. If the total
74 last bits from the original deflate stream. From here on, the data to
127 unsigned char *start, *last, *to, *from; in rotate() local
156 start = from = list + cycles; /* start index is arbitrary */ in rotate()
157 tmp = *from; /* sav in rotate()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/declaration/svg/
H A Dsvg_animate_declaration.h36 std::string from; member
158 return attribute.from; in GetFrom()
161 void SetFrom(const std::string& from) in SetFrom() argument
164 attribute.from = from; in SetFrom()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_navigation_function.cpp26 "from", &JsNavigationTransitionProxy::GetFromContentInfo, &JsNavigationTransitionProxy::SetFromContentInfo); in JSBind()
43 TAG_LOGI(AceLogTag::ACE_NAVIGATION, "navigation transition proxy can not support modify from attribute"); in SetFromContentInfo()
48 RefPtr<NG::NavDestinationContext> from; in GetFromContentInfo() local
50 from = proxy_->GetPreDestinationContext(); in GetFromContentInfo()
52 auto fromVal = ConvertContentInfo(from); in GetFromContentInfo()
121 JSRef<JSVal> JsNavigationFunction::Execute(RefPtr<NG::NavDestinationContext> from, in Execute() argument
124 JSRef<JSVal> fromVal = JsNavigationTransitionProxy::ConvertContentInfo(from); in Execute()
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dlazy_for_each_node.h76 void OnDataMoved(size_t from, size_t to) override;
80 void OnDataMoveToNewPlace(size_t from, size_t to) override;
146 void RecycleItems(int32_t from, int32_t to) override;
162 void MoveData(int32_t from, int32_t to) override;
163 void FireOnMove(int32_t from, int32_t to) override;
/foundation/communication/netstack/frameworks/native/tls_socket/src/
H A Dtls_config_enhanced.cpp150 if (!range.from && !range.to) { in ToHeaderString()
153 std::string from = range.from ? std::to_string(range.from.value()) : ""; in ToHeaderString() local
155 s.append(from).append("-").append(to).append(", "); in ToHeaderString()
/third_party/icu/icu4c/source/python/icutools/databuilder/renderers/
H A Dmakefile.py6 from __future__ import print_function
8 from . import *
9 from .. import *
10 from .. import utils
11 from ..request_types import *
214 # To keep from repeating the same dep files many times, make a variable.
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
H A Dutils.h14 // from this software without specific prior written permission.
228 // that wants to prevent anyone from instantiating it. This is
257 // spanning from and including 'from', to but not including 'to'.
258 Vector<T> SubVector(int from, int to) { in SubVector() argument
260 DOUBLE_CONVERSION_ASSERT(from < to); in SubVector()
261 DOUBLE_CONVERSION_ASSERT(0 <= from); in SubVector()
262 return Vector<T>(start() + from, to - from); in SubVector()
383 // Bit_cast uses the memcpy exception to move the bits from
[all...]
/third_party/icu/icu4c/source/i18n/
H A Ddouble-conversion-utils.h19 // from this software without specific prior written permission.
238 // that wants to prevent anyone from instantiating it. This is
270 // spanning from and including 'from', to but not including 'to'.
271 Vector<T> SubVector(int from, int to) { in SubVector() argument
273 DOUBLE_CONVERSION_ASSERT(from < to); in SubVector()
274 DOUBLE_CONVERSION_ASSERT(0 <= from); in SubVector()
275 return Vector<T>(start() + from, to - from); in SubVector()
396 // Bit_cast uses the memcpy exception to move the bits from
[all...]
/third_party/mesa3d/src/asahi/compiler/
H A Dagx_optimizer.c45 * lookup the fabs from the fround source and do the replacement). By contrast
82 agx_compose_float_src(agx_index to, agx_index from) in agx_compose_float_src() argument
85 from.neg = false; in agx_compose_float_src()
86 from.abs = true; in agx_compose_float_src()
89 from.neg ^= to.neg; in agx_compose_float_src()
91 return from; in agx_compose_float_src()
/third_party/node/lib/internal/repl/
H A Dawait.js198 replace(from, to, str) {
199 for (let i = from; i < to; i++) {
202 if (from === to) str += wrappedArray[from];
203 wrappedArray[from] = str;
243 // this expression from an async function, the caller will await `y`, too,

Completed in 13 milliseconds

1...<<21222324252627282930>>...143