Home
last modified time | relevance | path

Searched refs:get (Results 1651 - 1675 of 15584) sorted by relevance

1...<<61626364656667686970>>...624

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DLocaleDistanceTest.java33 private static final boolean REFORMAT = false; // set to true to get a reformatted data file listed
47 this.desired = new ULocale.Builder().setLanguageTag(args.get(0)).build(); // use more complicated expression to check syntax in Arguments()
48 this.supported = new ULocale.Builder().setLanguageTag(args.get(1)).build(); in Arguments()
49 this.desiredToSupported = Integer.parseInt(args.get(2)); in Arguments()
50 this.supportedToDesired = args.size() > 3 ? Integer.parseInt(args.get(3)) : this.desiredToSupported; in Arguments()
162 String switchArg = arguments.get(0); in handleParams()
164 favorSubtag = FavorSubtag.valueOf(arguments.get(1)); in handleParams()
166 threshold = Integer.valueOf(arguments.get(1)); in handleParams()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleDistanceTest.java30 private static final boolean REFORMAT = false; // set to true to get a reformatted data file listed
44 this.desired = new ULocale.Builder().setLanguageTag(args.get(0)).build(); // use more complicated expression to check syntax in Arguments()
45 this.supported = new ULocale.Builder().setLanguageTag(args.get(1)).build(); in Arguments()
46 this.desiredToSupported = Integer.parseInt(args.get(2)); in Arguments()
47 this.supportedToDesired = args.size() > 3 ? Integer.parseInt(args.get(3)) : this.desiredToSupported; in Arguments()
159 String switchArg = arguments.get(0); in handleParams()
161 favorSubtag = FavorSubtag.valueOf(arguments.get(1)); in handleParams()
163 threshold = Integer.valueOf(arguments.get(1)); in handleParams()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DJavaTimeZone.java139 doy1 = javacal.get(java.util.Calendar.DAY_OF_YEAR); in getOffset()
140 hour1 = javacal.get(java.util.Calendar.HOUR_OF_DAY); in getOffset()
141 min1 = javacal.get(java.util.Calendar.MINUTE); in getOffset()
142 sec1 = javacal.get(java.util.Calendar.SECOND); in getOffset()
143 mil1 = javacal.get(java.util.Calendar.MILLISECOND); in getOffset()
158 offsets[0] = javacal.get(java.util.Calendar.ZONE_OFFSET); in getOffset()
159 offsets[1] = javacal.get(java.util.Calendar.DST_OFFSET); in getOffset()
/third_party/node/lib/
H A Dcrypto.js263 get() {
291 get() {
346 get: getFips,
353 get: deprecate(getDefaultEncoding,
369 get() { return lazyWebCrypto().crypto; },
377 get() { return lazyWebCrypto().crypto.subtle; },
385 get: () => getRandomValues,
/third_party/node/deps/npm/lib/commands/
H A Drun-script.js69 const scriptShell = this.npm.config.get('script-shell') || undefined
89 if (this.npm.config.get('if-present')) {
101 if (!this.npm.config.get('ignore-scripts')) {
143 if (this.npm.config.get('json')) {
148 if (this.npm.config.get('parseable')) {
223 if (this.npm.config.get('json')) {
233 if (this.npm.config.get('parseable')) {
/third_party/mesa3d/src/panfrost/perf/
H A Dpan_gen_perf.py53 self.name = self.xml.get("name")
54 self.desc = self.xml.get("description")
55 self.units = self.xml.get("units")
56 self.offset = int(self.xml.get("offset"))
57 self.underscore_name = self.xml.get("counter").lower()
66 self.name = self.xml.get("name")
80 self.name = self.xml.getroot().get('id')
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_percolator.py81 self.assertEqual(self.text.get('1.0', END), 'foo\n')
88 self.assertEqual(self.text.get('1.0', END), 'BAR\n')
96 self.assertEqual(self.text.get('1.0', END), 'bar\n')
101 self.assertEqual(self.text.get('1.0', END), '\n')
104 self.assertEqual(self.text.get('1.0', END), '\n')
108 self.assertEqual(self.text.get('1.0', 'end'), 'hello\n')
113 self.assertEqual(self.text.get('1.0', END), 'o\n')
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/
H A Davailable_instructions_test.cpp148 ASSERT_TRUE(fuzzerutil::IsValidAndWellFormed(context.get(), validator_options, in TEST()
163 context.get(), in TEST()
173 context.get(), in TEST()
218 context.get(), in TEST()
250 context.get(), [](opt::IRContext*, opt::Instruction* inst) -> bool { in TEST()
308 ASSERT_TRUE(fuzzerutil::IsValidAndWellFormed(context.get(), validator_options, in TEST()
312 context.get(), in TEST()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLSurfacelessContextTest.cpp108 glBindFramebuffer(GL_FRAMEBUFFER, fbo->get()); in createFramebuffer()
110 glBindTexture(GL_TEXTURE_2D, tex->get()); in createFramebuffer()
113 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex->get(), 0); in createFramebuffer()
199 glBindFramebuffer(GL_FRAMEBUFFER, fbo.get()); in TEST_P()
217 glBindFramebuffer(GL_FRAMEBUFFER, fbo.get()); in TEST_P()
244 glBindFramebuffer(GL_FRAMEBUFFER, fbo.get()); in TEST_P()
251 glBindFramebuffer(GL_FRAMEBUFFER, fbo.get()); in TEST_P()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
H A DByteArray.java69 public int get(int index) { in get() method in ByteArray
85 public int get(int index, byte[] b) { in get() method in ByteArray
86 return this.get(index, b, 0, b.length); in get()
99 public int get(int index, byte[] b, int offset, int length) { in get() method in ByteArray
233 while ((bytesRead = this.get(index + srcOffset, b, 0, bufferLength)) > 0) { in copyTo()
266 while ((bytesRead = this.get(index + offset, b, 0, bufferLength)) > 0) { in copyTo()
341 * @param index the location to get from
380 int r = this.get(i + offset); in toString()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/
H A Davailable_instructions_test.cpp148 ASSERT_TRUE(fuzzerutil::IsValidAndWellFormed(context.get(), validator_options, in TEST()
163 context.get(), in TEST()
173 context.get(), in TEST()
218 context.get(), in TEST()
250 context.get(), [](opt::IRContext*, opt::Instruction* inst) -> bool { in TEST()
308 ASSERT_TRUE(fuzzerutil::IsValidAndWellFormed(context.get(), validator_options, in TEST()
312 context.get(), in TEST()
/third_party/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp129 colorSpace = rgb.get(); in SkCreateCGImageRefWithColorspace()
133 info, dataRef.get(), nullptr, false, kCGRenderingIntentDefault); in SkCreateCGImageRefWithColorspace()
146 CGContextDrawImage(cg, r, img.get()); in SkCGDrawBitmap()
173 bitsPerComponent, rb, cs.get(), cg_bitmap_info); in SkCreateCGContext()
197 rowBytes, cs.get(), cg_bitmap_info)); in SkCopyPixelsFromCGImage()
204 CGContextSetBlendMode(cg.get(), kCGBlendModeCopy); in SkCopyPixelsFromCGImage()
206 CGContextDrawImage(cg.get(), CGRectMake(0, 0, info.width(), info.height()), image); in SkCopyPixelsFromCGImage()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86RetpolineThunks.cpp200 auto Type = FunctionType::get(Type::getVoidTy(Ctx), false); in createThunkFunction()
233 addRegOffset(BuildMI(&MBB, DebugLoc(), TII->get(MovOpc)), SPReg, false, 0) in insertRegReturnAddrClobber()
259 BuildMI(Entry, DebugLoc(), TII->get(CallOpc)).addSym(TargetSym); in populateThunk()
274 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::PAUSE)); in populateThunk()
275 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::LFENCE)); in populateThunk()
276 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::JMP_1)).addMBB(CaptureSpec); in populateThunk()
285 BuildMI(CallTarget, DebugLoc(), TII->get(RetOpc)); in populateThunk()
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_generator.cc146 output.get(), '$', in Generate()
153 annotations.SerializeToZeroCopyStream(info_output.get()); in Generate()
165 output.get(), '$', in Generate()
172 annotations.SerializeToZeroCopyStream(info_output.get()); in Generate()
183 io::Printer printer(output.get(), '$'); in Generate()
201 io::Printer printer(output.get(), '$'); in Generate()
209 io::Printer printer(output.get(), '$'); in Generate()
/third_party/vk-gl-cts/framework/common/
H A DtcuEither.hpp60 const Type& get (void) const;
92 static const First& get (const Either<First, Second>& either) in get() function
101 static const Second& get (const Either<First, Second>& either) in get() function
108 const Type& get (const Either<First, Second>& either) in get() function
110 return Get<Type, First, Second>::get(either); in get()
252 const Type& Either<First, Second>::get (void) const in get() function in tcu::Either
254 return EitherDetail::get<Type, First, Second>(*this); in get()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dbitfield_align.rs54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get() functions
133 ::std::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u32) in b1()
146 ::std::mem::transmute(self._bitfield_1.get(1usize, 1u8) as u32) in b2()
159 ::std::mem::transmute(self._bitfield_1.get(2usize, 1u8) as u32) in b3()
172 ::std::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u32) in b4()
185 ::std::mem::transmute(self._bitfield_1.get(4usize, 1u8) as u32) in b5()
198 ::std::mem::transmute(self._bitfield_1.get(5usize, 1u8) as u32) in b6()
211 ::std::mem::transmute(self._bitfield_1.get(6usize, 1u8) as u32) in b7()
224 ::std::mem::transmute(self._bitfield_1.get(7usize, 1u8) as u32) in b8()
237 ::std::mem::transmute(self._bitfield_1.get( in b9()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktDynamicRenderingUnusedAttachmentsTests.cpp530 dsImageView = makeImageView(ctx.vkd, ctx.device, dsImage->get(), dsImageViewType, dsFormat, dsSRR); in iterate()
548 const auto vertModule = createShaderModule(ctx.vkd, ctx.device, binaries.get(vk12Support ? "vert-spv15" : "vert-spv10")); in iterate()
549 const auto fragModule = createShaderModule(ctx.vkd, ctx.device, binaries.get("frag")); in iterate()
585 [](const ImageWithBufferPtr& ib) { return (ib.get() ? ib->getImageView() : VK_NULL_HANDLE); }); in iterate()
595 const auto& imgView = dsImageView.get(); in iterate()
614 if (depthAttachmentPtr.get() && depthAttachmentPtr->imageView == VK_NULL_HANDLE) in iterate()
617 if (stencilAttachmentPtr.get() && stencilAttachmentPtr->imageView == VK_NULL_HANDLE) in iterate()
649 const auto pipeline = makeGraphicsPipeline(ctx.vkd, ctx.device, pipelineLayout.get(), in iterate()
650 vertModule.get(), VK_NULL_HANDLE, VK_NULL_HANDLE, VK_NULL_HANDLE, fragModule.get(), in iterate()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
H A DlibEGL.cpp173 egl::Display *display = egl::Display::get(dpy); in Initialize()
202 egl::Display *display = egl::Display::get(dpy); in Terminate()
229 egl::Display *display = egl::Display::get(dpy); in QueryString()
269 egl::Display *display = egl::Display::get(dpy); in GetConfigs()
299 egl::Display *display = egl::Display::get(dpy); in ChooseConfig()
333 egl::Display *display = egl::Display::get(dpy); in GetConfigAttrib()
355 egl::Display *display = egl::Display::get(dpy); in CreatePlatformWindowSurface()
404 egl::Display *display = egl::Display::get(dpy); in CreatePbufferSurface()
421 egl::Display *display = egl::Display::get(dpy); in CreatePlatformPixmapSurface()
457 egl::Display *display = egl::Display::get(dp in DestroySurface()
[all...]
/third_party/skia/tests/
H A DSerializationTest.cpp285 (SkImageFilter_Base*)xfermodeImageFilter.get(), shouldSucceed, reporter)); in TestBitmapSerialization()
308 TestFlattenableSerialization(as_CFB(filter.get()), true, reporter)); in TestColorFilterSerialization()
389 sk_sp<SkPicture> loadedPicture(SkPicture::MakeFromStream(inputStream.get(), deserial_procs)); in serialize_and_compare_typeface()
458 sk_sp<SkTypeface> cloneTypeface = SkTypeface::MakeDeserialize(typefaceStream.get()); in TestTypefaceSerialization()
643 writer.writeToMemory(buf.get()); in DEF_TEST()
645 SkReadBuffer reader(buf.get(), writer.bytesWritten()); in DEF_TEST()
658 writer.writeToMemory(buf.get()); in DEF_TEST()
660 SkReadBuffer reader(buf.get(), writer.bytesWritten()); in DEF_TEST()
672 writer.writeToMemory(buf.get()); in DEF_TEST()
674 SkReadBuffer reader(buf.get(), write in DEF_TEST()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DMetadata.h188 static MetadataAsValue *get(LLVMContext &Context, Metadata *MD);
359 static ValueAsMetadata *get(Value *V);
362 return cast<ConstantAsMetadata>(get(C)); in getConstant()
366 return cast<LocalAsMetadata>(get(Local)); in getLocal()
410 static ConstantAsMetadata *get(Constant *C) { in get() function in llvm::ConstantAsMetadata
436 static LocalAsMetadata *get(Value *Local) { in get() function in llvm::LocalAsMetadata
616 static MDString *get(LLVMContext &Context, StringRef Str);
617 static MDString *get(LLVMContext &Context, const char *Str) { in get() function in llvm::MDString
618 return get(Context, Str ? StringRef(Str) : StringRef()); in get()
730 Metadata *get() cons function in llvm::MDOperand
1141 static MDTuple *get(LLVMContext &Context, ArrayRef<Metadata *> MDs) { get() function in llvm::MDTuple
1174 MDTuple *MDNode::get(LLVMContext &Context, ArrayRef<Metadata *> MDs) { get() function in llvm::MDNode
1254 MDTuple *get() const { return const_cast<MDTuple *>(N); } get() function in llvm::MDTupleTypedArrayWrapper
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DMetadata.h174 static MetadataAsValue *get(LLVMContext &Context, Metadata *MD);
345 static ValueAsMetadata *get(Value *V);
347 return cast<ConstantAsMetadata>(get(C)); in getConstant()
350 return cast<LocalAsMetadata>(get(Local)); in getLocal()
392 static ConstantAsMetadata *get(Constant *C) { in get() function in llvm::ConstantAsMetadata
418 static LocalAsMetadata *get(Value *Local) { in get() function in llvm::LocalAsMetadata
597 static MDString *get(LLVMContext &Context, StringRef Str);
598 static MDString *get(LLVMContext &Context, const char *Str) { in get() function in llvm::MDString
599 return get(Context, Str ? StringRef(Str) : StringRef()); in get()
690 Metadata *get() cons function in llvm::MDOperand
1099 static MDTuple *get(LLVMContext &Context, ArrayRef<Metadata *> MDs) { get() function in llvm::MDTuple
1132 MDTuple *MDNode::get(LLVMContext &Context, ArrayRef<Metadata *> MDs) { get() function in llvm::MDNode
1211 MDTuple *get() const { return const_cast<MDTuple *>(N); } get() function in llvm::MDTupleTypedArrayWrapper
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeBasicComputeShaderTests.cpp251 ComputePipelineWrapper pipeline(vk, device, m_computePipelineConstructionType, m_context.getBinaryCollection().get("comp")); in iterate()
252 pipeline.setDescriptorSetLayout(descriptorSetLayout.get()); in iterate()
265 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, pipeline.getPipelineLayout(), 0u, 1u, &descriptorSet.get(), 0u, DE_NULL); in iterate()
433 ComputePipelineWrapper pipeline(vk, device, m_computePipelineConstructionType, m_context.getBinaryCollection().get("comp")); in iterate()
434 pipeline.setDescriptorSetLayout(descriptorSetLayout.get()); in iterate()
447 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, pipeline.getPipelineLayout(), 0u, 1u, &descriptorSet.get(), 0u, DE_NULL); in iterate()
618 ComputePipelineWrapper pipeline(vk, device, m_computePipelineConstructionType, m_context.getBinaryCollection().get("comp")); in iterate()
619 pipeline.setDescriptorSetLayout(descriptorSetLayout.get()); in iterate()
632 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, pipeline.getPipelineLayout(), 0u, 1u, &descriptorSet.get(), 0u, DE_NULL); in iterate()
823 ComputePipelineWrapper pipeline(vk, device, m_computePipelineConstructionType, m_context.getBinaryCollection().get("com
[all...]
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/
H A Dsubheader.js378 get icon() {
379 return this.__icon.get();
386 get primaryTitle() {
387 return this.__primaryTitle.get();
394 get primaryTitleModifier() {
395 return this.__primaryTitleModifier.get();
402 get secondaryTitle() {
403 return this.__secondaryTitle.get();
410 get secondaryTitleModifier() {
411 return this.__secondaryTitleModifier.get();
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonSplitDouble.cpp598 MachineInstr *NewI = BuildMI(B, MI, DL, TII->get(Opc)); in createHalfInstr()
652 LowI = BuildMI(B, MI, DL, TII->get(Hexagon::L2_loadri_io), P.first) in splitMemRef()
655 HighI = BuildMI(B, MI, DL, TII->get(Hexagon::L2_loadri_io), P.second) in splitMemRef()
661 LowI = BuildMI(B, MI, DL, TII->get(Hexagon::S2_storeri_io)) in splitMemRef()
665 HighI = BuildMI(B, MI, DL, TII->get(Hexagon::S2_storeri_io)) in splitMemRef()
679 BuildMI(B, MI, DL, TII->get(Hexagon::A2_addi), NewR) in splitMemRef()
721 BuildMI(B, MI, DL, TII->get(Hexagon::A2_tfrsi), P.first) in splitImmediate()
723 BuildMI(B, MI, DL, TII->get(Hexagon::A2_tfrsi), P.second) in splitImmediate()
741 BuildMI(B, MI, DL, TII->get(Hexagon::A2_tfrsi), P.second) in splitCombine()
744 BuildMI(B, MI, DL, TII->get(TargetOpcod in splitCombine()
[all...]
/third_party/node/src/crypto/
H A Dcrypto_tls.cc325 SSL_CTX_set_tlsext_status_cb(sc->ctx().get(), TLSExtStatusCallback); in ConfigureSecureContext()
326 SSL_CTX_set_tlsext_status_arg(sc->ctx().get(), nullptr); in ConfigureSecureContext()
427 SSL_set_bio(ssl_.get(), enc_in_, enc_out_); in InitSSL()
430 SSL_set_verify(ssl_.get(), SSL_VERIFY_NONE, VerifyCallback); in InitSSL()
433 SSL_set_mode(ssl_.get(), SSL_MODE_RELEASE_BUFFERS); in InitSSL()
438 // left sitting in the incoming enc_in_ and never get processed. in InitSSL()
440 SSL_set_mode(ssl_.get(), SSL_MODE_AUTO_RETRY); in InitSSL()
445 SSL_set_renegotiate_mode(ssl_.get(), ssl_renegotiate_freely); in InitSSL()
448 SSL_set_app_data(ssl_.get(), this); in InitSSL()
454 SSL_set_info_callback(ssl_.get(), SSLInfoCallbac in InitSSL()
[all...]

Completed in 25 milliseconds

1...<<61626364656667686970>>...624