/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | ExamplesTableSchema.java | 122 PhoneRegion.of(parts.get(0)), ValidNumberType.valueOf(parts.get(1))); in read()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | RegexGenerator.java | 122 // graph (i.e. we can generate "(?:<re>)?" but only if "<re>" is non-empty). We just get in toRegex() 137 RangeTree leftoverRanges = ranges.subtract(subgraphRanges.get()); in recursivelyOptimizeSubgroups() 140 String optimizedRegex = leftoverRegex + "|" + generateFactorizedRegex(subgraphRanges.get()); in recursivelyOptimizeSubgroups()
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/ |
H A D | MatcherCompilerTest.java | 92 // Subtract the length of the jump table to get relative offset in remaining code. in testMapOperation() 95 Assert.assertEquals(single(index), remainder.get(jump)); in testMapOperation() 96 Assert.assertEquals(TERMINATOR, remainder.get(jump + 1)); in testMapOperation()
|
/third_party/rust/crates/codespan/codespan-reporting/src/ |
H A D | files.rs | 305 .get(line_index) in line_start() 378 pub fn get(&self, file_id: usize) -> Result<&SimpleFile<Name, Source>, Error> { in get() functions 379 self.files.get(file_id).ok_or(Error::FileMissing) in get() 393 Ok(self.get(file_id)?.name().clone()) in name() 397 Ok(self.get(file_id)?.source().as_ref()) in source() 401 self.get(file_id)?.line_index((), byte_index) in line_index() 405 self.get(file_id)?.line_range((), line_index) in line_range()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | bitfield-method-same-name.rs | 54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get() functions 129 ::std::mem::transmute(self._bitfield_1.get(0usize, 3u8) as u8) in type__bindgen_bitfield()
|
/third_party/python/Tools/demo/ |
H A D | eiffel.py | 36 pre = dict.get("%s_pre" % m) 37 post = dict.get("%s_post" % m)
|
/third_party/rust/crates/aho-corasick/src/packed/ |
H A D | pattern.rs | 158 pub fn get(&self, id: PatternID) -> Pattern<'_> { in get() functions 218 let p = self.patterns.get(id);
|
/third_party/python/Lib/ctypes/ |
H A D | _aix.py | 106 # 3. get info (lines starting with [0-9]) 250 libpaths = environ.get("LD_LIBRARY_PATH") 252 libpaths = environ.get("LIBPATH") 313 # To get here, a member in an archive has not been found
|
/third_party/python/Lib/test/support/ |
H A D | warnings_helper.py | 100 quiet = kwargs.get('quiet') 160 registry = frame.f_globals.get('__warningregistry__')
|
/third_party/python/Lib/asyncio/ |
H A D | windows_utils.py | 131 assert not kwds.get('universal_newlines') 132 assert kwds.get('bufsize', 0) == 0
|
/third_party/python/Lib/ |
H A D | graphlib.py | 55 if (result := self._node2info.get(node)) is None: 171 if (nodeinfo := n2i.get(node)) is None: 215 # else go on to get next successor
|
/third_party/python/Lib/distutils/ |
H A D | dir_util.py | 44 if _path_created.get(os.path.abspath(name)): 62 if _path_created.get(abs_head): 90 # First get the list of directories to create
|
/third_party/python/Lib/idlelib/ |
H A D | percolator.py | 101 (pin if var1.get() else pout)(t1) 103 (pin if var2.get() else pout)(t2)
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiBufferAndImageAllocationUtil.cpp | 102 memory = allocateDedicated(vkInstance, vk, vkPhysicalDevice, vkDevice, buffer.get(), requirement); in createTestBuffer() 184 memory = allocateDedicated(vkInstance, vk, vkPhysicalDevice, vkDevice, image.get(), requirement); in createTestImage()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineMatchedAttachmentsTests.cpp | 84 const ShaderWrapper vertexShaderModule (ShaderWrapper(vk, vkDevice, context.getBinaryCollection().get("color_vert"), 0)); in testMatchedAttachments() 85 const ShaderWrapper fragmentShaderModule (ShaderWrapper(vk, vkDevice, context.getBinaryCollection().get("color_frag"), 0)); in testMatchedAttachments()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmUboMatrixPaddingTests.cpp | 275 addComputeUboMatrixPaddingTest(group.get()); in createUboMatrixPaddingComputeGroup() 283 addGraphicsUboMatrixPaddingTest(group.get()); in createUboMatrixPaddingGraphicsGroup()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Overlay.h | 88 rx::OverlayImpl *getImplementation() const { return mImplementation.get(); } in getImplementation() 98 return rx::GetAs<Widget>(mState.mOverlayWidgets[id].get()); in getWidgetAs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | IndirectBrExpandPass.cpp | 19 /// get the builtin non-jump-table lowering of a switch even when the input 149 ConstantInt *BBIndexC = ConstantInt::get(ITy, BBIndex); in runOnFunction() 160 // cannot get a valid input and we can replace all of them with unreachable. in runOnFunction() 216 SI->addCase(ConstantInt::get(CommonITy, i + 1), BBs[i]); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCSchedule.cpp | 70 unsigned SchedClass = MCII.get(Inst.getOpcode()).getSchedClass(); in computeInstrLatency() 113 unsigned SchedClass = MCII.get(Inst.getOpcode()).getSchedClass(); in getReciprocalThroughput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | IRObjectFile.cpp | 32 SymTab.addModule(M.get()); in IRObjectFile() 102 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
|
H A D | Minidump.cpp | 65 const minidump::MemoryInfoListHeader &H = ExpectedHeader.get()[0]; in getMemoryInfoList() 83 size_t ListSize = ExpectedSize.get()[0]; in getListStream()
|
H A D | ObjectFile.cpp | 180 std::unique_ptr<MemoryBuffer> Buffer = std::move(FileOrErr.get()); in createObjectFile() 186 std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get()); in createObjectFile()
|
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/ |
H A D | EGLContextASANTest.cpp | 166 drawQuad(program.get(), essl1_shaders::PositionAttrib(), 0.5f); in TEST_P() 180 drawQuad(program.get(), essl1_shaders::PositionAttrib(), 0.5f); in TEST_P()
|
/third_party/skia/src/core/ |
H A D | SkDeferredDisplayListRecorder.cpp | 172 return SkToBool(fSurface.get()); in init() 202 fContext->priv().moveRenderTasksToDDL(ddl.get()); in detach()
|
H A D | SkPictureData.h | 73 return reader->validate(index > 0 && index <= array.count()) ? array[index - 1].get() : nullptr; in read_index_base_1_or_null() 102 return reader->validateIndex(index, fImages.count()) ? fImages[index].get() : nullptr; in getImage()
|