Home
last modified time | relevance | path

Searched refs:getAddress (Results 1 – 25 of 210) sorted by relevance

123456789

/external/mockito/src/test/java/org/mockitousage/stubbing/
DDeepStubbingTest.java30 public Address getAddress() { in getAddress() method in DeepStubbingTest.Person
34 public Address getAddress(String addressName) { in getAddress() method in DeepStubbingTest.Person
212 given(person.getAddress().getStreet().getName()).willReturn("Norymberska"); in shouldStubbingBasicallyWorkFine()
215 String street = person.getAddress().getStreet().getName(); in shouldStubbingBasicallyWorkFine()
224 person.getAddress().getStreet().getName(); in shouldVerificationBasicallyWorkFine()
227 verify(person.getAddress().getStreet()).getName(); in shouldVerificationBasicallyWorkFine()
233 person.getAddress("111 Mock Lane").getStreet(); in verification_work_with_argument_Matchers_in_nested_calls()
234 person.getAddress("111 Mock Lane").getStreet(Locale.ITALIAN).getName(); in verification_work_with_argument_Matchers_in_nested_calls()
237 verify(person.getAddress(anyString())).getStreet(); in verification_work_with_argument_Matchers_in_nested_calls()
238 verify(person.getAddress(anyString()).getStreet(Locale.CHINESE), never()).getName(); in verification_work_with_argument_Matchers_in_nested_calls()
[all …]
/external/guava/guava/src/com/google/common/net/
DInetAddresses.java361 byte[] bytes = ip.getAddress(); in toAddrString()
553 byte[] bytes = ip.getAddress(); in isCompatIPv4Address()
573 return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 12, 16)); in getCompatIPv4Address()
591 byte[] bytes = ip.getAddress(); in is6to4Address()
606 return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6)); in get6to4IPv4Address()
681 byte[] bytes = ip.getAddress(); in isTeredoAddress()
697 byte[] bytes = ip.getAddress(); in getTeredoInfo()
738 byte[] bytes = ip.getAddress(); in isIsatapAddress()
762 return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 12, 16)); in getIsatapIPv4Address()
877 byte[] bytes = ip.getAddress(); in getCoercedIPv4Address()
[all …]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
DRealConnection.java99 Address address = route.getAddress(); in connect()
101 if (route.getAddress().getSslSocketFactory() == null in connect()
148 if (route.getAddress().getSslSocketFactory() != null) { in connectSocket()
159 .socket(socket, route.getAddress().url().host(), source, sink) in connectSocket()
175 Address address = route.getAddress(); in connectTls()
294 route.getAddress().getAuthenticator(), response, route.getProxy()); in createTunnel()
314 .url(route.getAddress().url()) in createTunnelRequest()
315 .header("Host", Util.hostHeader(route.getAddress().url(), true)) in createTunnelRequest()
396 + route.getAddress().url().host() + ":" + route.getAddress().url().port() in toString()
/external/clang/lib/CodeGen/
DCGExprAgg.cpp52 return ReturnValueSlot(Dest.getAddress(), Dest.isVolatile(), in getReturnValueSlot()
300 dest.getAddress(), in EmitCopy()
301 src.getAddress(), in EmitCopy()
309 CGF.EmitAggregateCopy(dest.getAddress(), src.getAddress(), type, in EmitCopy()
322 Address ArrayPtr = Array.getAddress(); in VisitCXXStdInitializerListExpr()
345 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType()); in VisitCXXStdInitializerListExpr()
586 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E)); in VisitCastExpr()
606 Builder.CreateElementBitCast(Dest.getAddress(), CGF.ConvertType(Ty)); in VisitCastExpr()
657 CGF.EmitNullInitialization(Dest.getAddress(), atomicType); in VisitCastExpr()
661 CGF.Builder.CreateStructGEP(valueDest.getAddress(), 0, in VisitCastExpr()
[all …]
DCGStmtOpenMP.cpp74 return CGF.EmitLValue(&DRE).getAddress(); in OMPLexicalScope()
167 CapturedVars.push_back(EmitLValue(*I).getAddress().getPointer()); in GenerateOpenMPCapturedVars()
178 AddrLV.getAddress().getPointer(), Ctx.getUIntPtrType(), in castValueFromUintptr()
182 .getAddress(); in castValueFromUintptr()
288 Address ArgAddr = ArgLVal.getAddress(); in GenerateOpenMPCapturedStmtFunction()
436 InitRVal = RValue::getAggregate(LV.getAddress()); in emitInitWithReductionInitializer()
610 Address OriginalAddr = EmitLValue(&DRE).getAddress(); in EmitOMPFirstprivateClause()
719 MasterAddr = EmitLValue(&DRE).getAddress(); in EmitOMPCopyinClause()
728 Address PrivateAddr = EmitLValue(*IRef).getAddress(); in EmitOMPCopyinClause()
792 return EmitLValue(&DRE).getAddress(); in EmitOMPLastprivateClauseInit()
[all …]
DCGValue.h331 Address getAddress() const { return Address(getPointer(), getAlignment()); } in getAddress() function
436 return RValue::getAggregate(getAddress(), isVolatileQualified()); in asAggregateRValue()
529 return forAddr(LV.getAddress(),
562 Address getAddress() const { in getAddress() function
582 return RValue::getAggregate(getAddress(), isVolatile()); in asRValue()
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
DInterpreterProcess.java73 String result = mProxy.getAddress().getHostName(); in getHost()
88 return mProxy.getAddress().getPort(); in getPort()
91 public InetSocketAddress getAddress() { in getAddress() method in InterpreterProcess
92 return mProxy.getAddress(); in getAddress()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Ddisassembler.cc85 llvm::Expected<uint64_t> a_address_or_error = a.getAddress(); in DisassembleObjectFile()
87 llvm::Expected<uint64_t> b_address_or_error = b.getAddress(); in DisassembleObjectFile()
104 uint64_t section_address = section.getAddress(); in DisassembleObjectFile()
111 llvm::Expected<uint64_t> address = symbol.getAddress(); in DisassembleObjectFile()
119 llvm::Expected<uint64_t> next_address = symbols[i + 1].getAddress(); in DisassembleObjectFile()
/external/nist-sip/java/gov/nist/javax/sip/header/
DAddressParametersHeader.java52 public Address getAddress() { in getAddress() method in AddressParametersHeader
101 … return this.getAddress().equals( o.getAddress() ) && this.equalParameters( (Parameters) o ); in equals()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DJITSymbol.h58 : JITSymbolBase(Sym.getFlags()), CachedAddr(Sym.getAddress()) {} in JITSymbol()
65 TargetAddress getAddress() { in getAddress() function
76 return RuntimeDyld::SymbolInfo(getAddress(), getFlags()); in toRuntimeDyldSymbol()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp48 uint8_t *Src = Sections[RE.SectionID].getAddress() + RE.Offset; in memcpyAddend()
75 uint64_t SectionBaseAddr = TargetSI->getAddress(); in processScatteredVANILLA()
131 uint64_t Addr = Sec.getAddress(); in getRelocationValueRef()
143 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress(); in makeValueAddendPCRel()
149 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; in dumpRelocationToResolve()
167 uint64_t SAddr = SI->getAddress(); in getSectionByAddress()
331 uint8_t *P = EHFrame->getAddress(); in registerEHFrames()
337 MemMgr.registerEHFrames(EHFrame->getAddress(), EHFrame->getLoadAddress(), in registerEHFrames()
DRuntimeDyld.cpp83 if (S.getAddress() == nullptr) { in dumpSectionMemory()
90 uint8_t *DataAddr = S.getAddress(); in dumpSectionMemory()
156 if (Sections[i].getAddress() == LocalAddress) { in mapSectionAddress()
166 Expected<uint64_t> AddressOrErr = Sym.getAddress(); in getOffset()
169 Result = *AddressOrErr - Sec.getAddress(); in getOffset()
236 if (auto AddrOrErr = I->getAddress()) in loadObjectImpl()
896 if (Sections[RE.SectionID].getAddress() == nullptr) in resolveRelocationList()
920 Addr = Resolver.findSymbolInLogicalDylib(Name.data()).getAddress(); in resolveExternalSymbols()
923 Addr = Resolver.findSymbol(Name.data()).getAddress(); in resolveExternalSymbols()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothFacade.java94 if (!DiscoveredDevices.containsKey(device.getAddress())) { in onReceive()
99 DiscoveredDevices.put(device.getAddress(), device); in onReceive()
165 device.getAddress()); in deviceMatch()
195 Log.d(bd.getAliasName() + " " + bd.getAddress()); in getDevice()
197 Log.d("Found match " + bd.getAliasName() + " " + bd.getAddress()); in getDevice()
214 Log.d("Found match " + bd.getAliasName() + " " + bd.getAddress()); in deviceExists()
285 return mBluetoothAdapter.getAddress(); in bluetoothGetLocalAddress()
DBluetoothDiscoveryHelper.java79 mListener.addDevice(device.getName(), device.getAddress()); in onReceive()
99 mListener.addBondedDevice(device.getName(), device.getAddress()); in startDiscovery()
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java186 byte[] buffer = _addr.getAddress(); in write()
228 byte[] buffer = _addr.getAddress(); in write()
299 if ((this.getAddress() == null) && (address.getAddress() != null)) { in sameValue()
302 return this.getAddress().equals(address.getAddress()); in sameValue()
310 InetAddress getAddress() { in getAddress() method in DNSRecord.Address
320 byte[] buffer = this.getAddress().getAddress(); in toByteArray()
417 …aLog.append(" address: '" + (this.getAddress() != null ? this.getAddress().getHostAddress() : "nul… in toString()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DUDPMessageChannel.java318 this.peerAddress = packet.getAddress(); in processIncomingDataPacket()
388 … if (pingBackRecord.get(packet.getAddress().getHostAddress() + ":" + packet.getPort()) == null ) { in processIncomingDataPacket()
390 …ramPacket keepalive = new DatagramPacket(retval,0,retval.length,packet.getAddress(),packet.getPort… in processIncomingDataPacket()
392 … this.sipStack.getTimer().schedule(new PingBackTimerTask(packet.getAddress().getHostAddress(), in processIncomingDataPacket()
424 this.peerPacketSourceAddress = packet.getAddress(); in processIncomingDataPacket()
427 this.peerAddress = packet.getAddress(); in processIncomingDataPacket()
450 this.peerPacketSourceAddress = packet.getAddress(); in processIncomingDataPacket()
452 this.peerAddress = packet.getAddress(); in processIncomingDataPacket()
/external/llvm/unittests/ExecutionEngine/Orc/
DGlobalMappingLayerTest.cpp40 EXPECT_EQ(BarSym.getAddress(), static_cast<TargetAddress>(0x4567)) in TEST()
46 EXPECT_EQ(FooSym2.getAddress(), static_cast<TargetAddress>(0x0123)) in TEST()
DObjectTransformLayerTest.cpp111 EXPECT_EQ(MockSymbol.getAddress(), Returned.getAddress()) in verifyFindSymbol()
133 EXPECT_EQ(MockSymbol.getAddress(), Returned.getAddress()) in verifyFindSymbolIn()
/external/swiftshader/third_party/LLVM/include/llvm/Object/
DObjectFile.h107 error_code getAddress(uint64_t &Result) const;
145 error_code getAddress(uint64_t &Result) const;
182 error_code getAddress(uint64_t &Result) const;
322 inline error_code SymbolRef::getAddress(uint64_t &Result) const { in getAddress() function
373 inline error_code SectionRef::getAddress(uint64_t &Result) const { in getAddress() function
429 inline error_code RelocationRef::getAddress(uint64_t &Result) const { in getAddress() function
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
Dllvm-objdump.cpp149 if (error(a.getAddress(a_addr))) return false; in RelocAddressLess()
150 if (error(b.getAddress(b_addr))) return false; in RelocAddressLess()
175 if (error(i->getAddress(SectionAddr))) break; in DisassembleObject()
303 if (error(rel_cur->getAddress(addr))) goto skip_print_rel; in DisassembleObject()
339 if (error(ri->getAddress(address))) continue; in PrintRelocations()
358 if (error(si->getAddress(Address))) return; in PrintSectionHeaders()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugRangeList.cpp33 entry.StartAddress = data.getAddress(offset_ptr); in extract()
34 entry.EndAddress = data.getAddress(offset_ptr); in extract()
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
DPServedUser.java153 return this.getAddress().equals(((PServedUser) other).getAddress()); in equals()
/external/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileJITEventListener.cpp98 ErrorOr<uint64_t> AddrOrErr = Sym.getAddress(); in NotifyObjectEmitted()
132 ErrorOr<uint64_t> AddrOrErr = I->getAddress(); in NotifyFreeingObject()
/external/swiftshader/third_party/LLVM/unittests/Support/
DDataExtractorTest.cpp41 EXPECT_EQ(0x8090FFFF80000000ULL, DE.getAddress(&offset)); in TEST()
63 EXPECT_EQ(0xFFFF9080U, DE.getAddress(&offset)); in TEST()
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DWaltUsbConnection.java142 int ep_out = endpointOut.getAddress(); in syncClock()
143 int ep_in = endpointIn.getAddress(); in syncClock()

123456789