/third_party/protobuf/csharp/src/Google.Protobuf/Collections/ |
H A D | ReadOnlyDictionary.cs | 44 private readonly IDictionary<TKey, TValue> wrapped;
field in Google.Protobuf.Collections.ReadOnlyDictionary 46 public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped)
in ReadOnlyDictionary() argument 48 this.wrapped = wrapped;
in ReadOnlyDictionary() 58 return wrapped.ContainsKey(key);
in ContainsKey() 63 get { return wrapped.Keys; }
73 return wrapped.TryGetValue(key, out value);
in TryGetValue() 78 get { return wrapped.Values; }
83 get { return wrapped[key]; }
99 return wrapped in Contains() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | wrapped_avframe.c | 46 AVFrame *wrapped = av_frame_clone(frame); in wrapped_avframe_encode() local 48 int size = sizeof(*wrapped) + AV_INPUT_BUFFER_PADDING_SIZE; in wrapped_avframe_encode() 50 if (!wrapped) in wrapped_avframe_encode() 55 av_frame_free(&wrapped); in wrapped_avframe_encode() 63 av_frame_free(&wrapped); in wrapped_avframe_encode() 68 av_frame_move_ref((AVFrame*)data, wrapped); in wrapped_avframe_encode() 69 av_frame_free(&wrapped); in wrapped_avframe_encode() 72 pkt->size = sizeof(*wrapped); in wrapped_avframe_encode()
|
/third_party/node/lib/internal/bootstrap/switches/ |
H A D | does_own_process_state.js | 12 const wrapped = wrapPosixCredentialSetters(credentials); 14 process.initgroups = wrapped.initgroups; 15 process.setgroups = wrapped.setgroups; 16 process.setegid = wrapped.setegid; 17 process.seteuid = wrapped.seteuid; 18 process.setgid = wrapped.setgid; 19 process.setuid = wrapped.setuid;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | AllocatorList.h | 115 : base_type(X.wrapped()) {} in IteratorImpl() 119 reference operator*() const { return base_type::wrapped()->V; } in operator *() 123 return L.wrapped() == R.wrapped(); in operator ==() 188 return iterator(List.insert(I.wrapped(), *create(std::forward<Ts>(Vs)...))); in emplace() 192 return iterator(List.insert(I.wrapped(), *create(std::move(V)))); in insert() 195 return iterator(List.insert(I.wrapped(), *create(V))); in insert() 201 List.insert(I.wrapped(), *create(*First)); in insert() 205 return iterator(List.eraseAndDispose(I.wrapped(), Disposer(*this))); in erase() 210 List.eraseAndDispose(First.wrapped(), Las in erase() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | intersectionAsWeakTypeSource.js | 18 const wrapped = create({ first: { view: 0, styleMedia: "???" } }); 19 const vs: ViewStyle = wrapped.first // error, first is a branded number 25 var wrapped = create({ first: { view: 0, styleMedia: "???" } });
variable 26 var vs = wrapped.first; // error, first is a branded number
|
/third_party/node/lib/internal/bootstrap/ |
H A D | node.js | 52 // This file is compiled as if it's wrapped in a function with arguments 197 const wrapped = perThreadSetup.wrapProcessMethods(rawMethods); 198 process._rawDebug = wrapped._rawDebug; 199 process.cpuUsage = wrapped.cpuUsage; 200 process.resourceUsage = wrapped.resourceUsage; 201 process.memoryUsage = wrapped.memoryUsage; 203 process.kill = wrapped.kill; 204 process.exit = wrapped.exit;
|
/third_party/node/deps/npm/node_modules/@isaacs/cliui/build/lib/ |
H A D | index.js | 168 let wrapped; 175 wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n'); 178 wrapped = col.text.split('\n'); 181 wrapped.unshift('.' + '-'.repeat(this.negatePadding(col) + 2) + '.'); 182 wrapped.push("'" + '-'.repeat(this.negatePadding(col) + 2) + "'"); 186 wrapped.unshift(...new Array(col.padding[top] || 0).fill('')); 187 wrapped.push(...new Array(col.padding[bottom] || 0).fill('')); 189 wrapped.forEach((str, r) => {
|
/third_party/python/Lib/idlelib/ |
H A D | searchengine.py | 143 wrapped = 0 152 if wrapped and line > startline: 158 wrapped = 1 165 wrapped = 0 174 if wrapped and line < startline: 180 wrapped = 1
|
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | disassemble.cpp | 449 auto wrapped = static_cast<WrappedDisassembler*>(user_data); 450 return wrapped->disassembler()->HandleHeader(endian, version, generator, 457 auto wrapped = static_cast<WrappedDisassembler*>(user_data); 459 if (wrapped->word_count() == parsed_instruction->num_words && 460 std::equal(wrapped->inst_binary(), 461 wrapped->inst_binary() + wrapped->word_count(), 466 wrapped->disassembler()->HandleInstruction(*parsed_instruction)) 532 WrappedDisassembler wrapped(&disassembler, instCode, instWordCount); 533 spvBinaryParse(context, &wrapped, cod [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | disassemble.cpp | 449 auto wrapped = static_cast<WrappedDisassembler*>(user_data); 450 return wrapped->disassembler()->HandleHeader(endian, version, generator, 457 auto wrapped = static_cast<WrappedDisassembler*>(user_data); 459 if (wrapped->word_count() == parsed_instruction->num_words && 460 std::equal(wrapped->inst_binary(), 461 wrapped->inst_binary() + wrapped->word_count(), 466 wrapped->disassembler()->HandleInstruction(*parsed_instruction)) 532 WrappedDisassembler wrapped(&disassembler, instCode, instWordCount); 533 spvBinaryParse(context, &wrapped, cod [all...] |
/third_party/spirv-tools/source/ |
H A D | disassemble.cpp | 173 auto wrapped = static_cast<WrappedDisassembler*>(user_data); in DisassembleTargetHeader() local 174 return wrapped->disassembler()->HandleHeader(endian, version, generator, in DisassembleTargetHeader() 181 auto wrapped = static_cast<WrappedDisassembler*>(user_data); in DisassembleTargetInstruction() local 183 if (wrapped->word_count() == parsed_instruction->num_words && in DisassembleTargetInstruction() 184 std::equal(wrapped->inst_binary(), in DisassembleTargetInstruction() 185 wrapped->inst_binary() + wrapped->word_count(), in DisassembleTargetInstruction() 190 wrapped->disassembler()->HandleInstruction(*parsed_instruction)) in DisassembleTargetInstruction() 516 WrappedDisassembler wrapped(&disassembler, instCode, instWordCount); 517 spvBinaryParse(context, &wrapped, cod [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-shadowrealm-gen.cc | 30 TNode<JSObject> wrapped = AllocateJSObjectFromMap(map); in AllocateJSWrappedFunction() local 32 wrapped, JSWrappedFunction::kWrappedTargetFunctionOffset, target); in AllocateJSWrappedFunction() 33 StoreObjectFieldNoWriteBarrier(wrapped, JSWrappedFunction::kContextOffset, in AllocateJSWrappedFunction() 35 return wrapped; in AllocateJSWrappedFunction() 78 // The intermediate wrapped functions are not user-visible. And calling a in TF_BUILTIN() 79 // wrapped function won't cause a side effect in the creation realm. in TF_BUILTIN() 128 // 2. Let wrapped be ! MakeBasicObject(internalSlotsList). in TF_BUILTIN() 129 // 3. Set wrapped.[[Prototype]] to in TF_BUILTIN() 131 // 4. Set wrapped.[[Call]] as described in 2.1. in TF_BUILTIN() 132 // 5. Set wrapped in TF_BUILTIN() 137 TNode<JSObject> wrapped = TF_BUILTIN() local [all...] |
/third_party/python/Objects/ |
H A D | iterobject.c | 304 PyObject *wrapped; member 312 Py_XDECREF(obj->wrapped); in anextawaitable_dealloc() 320 Py_VISIT(obj->wrapped); in anextawaitable_traverse() 328 assert(obj->wrapped != NULL); in anextawaitable_getiter() 329 PyObject *awaitable = _PyCoro_GetAwaitableIter(obj->wrapped); in anextawaitable_getiter() 436 "send(arg) -> send 'arg' into the wrapped iterator,\n\ 441 "throw(typ[,val[,tb]]) -> raise exception in the wrapped iterator,\n\ 505 anext->wrapped = awaitable; in PyAnextAwaitable_New()
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
H A D | Utils.java | 153 IRubyObject wrapped = runtime.newString(((ByteString) value).toStringUtf8()); in wrapPrimaryValue() 154 wrapped.setFrozen(true); in wrapPrimaryValue() 155 return wrapped; in wrapPrimaryValue() 158 IRubyObject wrapped = runtime.newString(value.toString()); in wrapPrimaryValue() 159 wrapped.setFrozen(true); in wrapPrimaryValue() 160 return wrapped; in wrapPrimaryValue()
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/ |
H A D | algorithm-discards-context.https.window.js | 190 let wrapped = await crypto.subtle.wrapKey("raw", key, wrapKey, wrapAlgorithm); 193 "raw", wrapped, wrapKey, wrapAlgorithm, keyAlgorithm, true, keyUsages); 207 let wrapped = await crypto.subtle.wrapKey("raw", key, wrapKey, wrapAlgorithm); 210 "raw", wrapped, wrapKey, wrapAlgorithm, keyAlgorithm, true, keyUsages);
|
/third_party/python/Include/cpython/ |
H A D | descrobject.h | 6 void *wrapped); 9 void *wrapped, PyObject *kwds);
|
/third_party/node/test/js-native-api/test_general/ |
H A D | test_general.c | 177 napi_value wrapped; in unwrap() local 180 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &wrapped, NULL, NULL)); in unwrap() 181 NODE_API_CALL(env, napi_unwrap(env, wrapped, &data)); in unwrap() 188 napi_value wrapped; in remove_wrap() local 191 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &wrapped, NULL, NULL)); in remove_wrap() 192 NODE_API_CALL(env, napi_remove_wrap(env, wrapped, &data)); in remove_wrap()
|
/third_party/python/Lib/test/ |
H A D | test_decorators.py | 297 def __init__(self, wrapped): 298 self.__wrapped__ = wrapped 304 def __init__(self, wrapped): 305 self.__wrapped__ = wrapped 311 def decorator(wrapped): 312 return Wrapper(wrapped)
|
H A D | test_reprlib.py | 389 wrapped = __repr__ variable in MyContainer3 390 wrapper = recursive_repr()(wrapped) 407 wrapped = MyContainer3.wrapped 410 self.assertIs(getattr(wrapper, name), getattr(wrapped, name))
|
/third_party/python/Lib/ |
H A D | signal.py | 48 def _wraps(wrapped): 50 wrapper.__doc__ = wrapped.__doc__
|
H A D | functools.py | 36 wrapped, 39 """Update a wrapper function to look like the wrapped function 42 wrapped is the original function 44 from the wrapped function to the wrapper function (defaults to 47 are updated with the corresponding attribute from the wrapped 52 value = getattr(wrapped, attr) 58 getattr(wrapper, attr).update(getattr(wrapped, attr, {})) 60 # from the wrapped function when updating __dict__ 61 wrapper.__wrapped__ = wrapped 65 def wraps(wrapped, [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/ |
H A D | TextureMTL.h | 48 NSPRef<id<MTLTexture>> wrapped); 67 NSPRef<id<MTLTexture>> wrapped);
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | aes.rs | 187 /// * `in_`: The input buffer, storing the key to be wrapped 223 /// * `key`: The key-encrypting-key to decrypt the wrapped key. Must be a decrypting key 304 let mut wrapped = [0; 24]; in test_wrap_unwrap() variables 306 wrap_key(&enc_key, None, &mut wrapped, &key_data).unwrap(), in test_wrap_unwrap() 309 assert_eq!(&wrapped[..], &expected_ciphertext[..]); in test_wrap_unwrap() 314 unwrap_key(&dec_key, None, &mut unwrapped, &wrapped).unwrap(), in test_wrap_unwrap()
|
/third_party/node/lib/internal/repl/ |
H A D | await.js | 156 const wrapped = `${wrapPrefix}${src} })()`; 157 const wrappedArray = StringPrototypeSplit(wrapped, ''); 160 root = parser.parse(wrapped, { ecmaVersion: 'latest' });
|
H A D | utils.js | 156 let wrapped = false; 302 !StringPrototypeEndsWith(input, ';') && !wrapped) { 304 wrapped = true; 397 wrapped = false; 465 if (wrapped) { 468 wrapped = false;
|