Searched defs:Address (Results 1 - 25 of 107) sorted by relevance

12345

/external/chromium_org/components/autofill/core/browser/
H A Daddress.cc21 Address::Address() {} function in class:autofill::Address
23 Address::Address(const Address& address) : FormGroup() { function in class:autofill::Address
27 Address::~Address() {}
29 Address& Address::operator=(const Address
[all...]
H A Daddress.h18 class Address : public FormGroup { class in namespace:autofill
20 Address();
21 Address(const Address& address);
22 virtual ~Address();
24 Address& operator=(const Address& address);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
H A Dglx_getproc.c41 __GLXextFuncPtr Address; member in struct:name_address_pair
192 return GLX_functions[i].Address;
/external/llvm/include/llvm/CodeGen/
H A DMachineCodeInfo.h27 void *Address; // The address of the function in memory member in class:llvm::MachineCodeInfo
30 MachineCodeInfo() : Size(0), Address(nullptr) {}
37 Address = a;
45 return Address;
/external/llvm/include/llvm/Support/
H A DMemory.h31 MemoryBlock() : Address(nullptr), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
33 void *base() const { return Address; }
36 void *Address; ///< Address of first byte of memory area member in class:llvm::sys::MemoryBlock
/external/llvm/lib/MC/
H A DMCDisassembler.cpp20 uint64_t Address, bool IsBranch,
25 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address,
31 uint64_t Address) const {
34 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
19 tryAddingSymbolicOperand(MCInst &Inst, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) const argument
H A DMCExternalSymbolizer.cpp24 // symbolic information at the Address for this instruction. If that returns
34 uint64_t Address,
43 !GetOpInfo(DisInfo, Address, Offset, InstSize, 1, &SymbolicOp)) {
65 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address,
145 // in a literal pool near the Address of the instruction. The Address of the
155 uint64_t Address) {
159 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
31 tryAddingSymbolicOperand(MCInst &MI, raw_ostream &cStream, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) argument
153 tryAddingPcLoadReferenceComment(raw_ostream &cStream, int64_t Value, uint64_t Address) argument
/external/llvm/tools/lli/
H A DRemoteTarget.cpp32 uint64_t &Address) {
41 Address = reinterpret_cast<uint64_t>(Mem.base());
46 bool RemoteTarget::loadData(uint64_t Address, const void *Data, size_t Size) { argument
47 memcpy ((void*)Address, Data, Size);
51 bool RemoteTarget::loadCode(uint64_t Address, const void *Data, size_t Size) { argument
52 memcpy ((void*)Address, Data, Size);
53 sys::MemoryBlock Mem((void*)Address, Size);
58 bool RemoteTarget::executeCode(uint64_t Address, int &RetVal) { argument
59 int (*fn)(void) = (int(*)(void))Address;
31 allocateSpace(size_t Size, unsigned Alignment, uint64_t &Address) argument
H A DRemoteTarget.h43 /// @param[out] Address Remote address of the allocated memory.
49 uint64_t &Address);
51 bool isAllocatedMemory(uint64_t Address, uint32_t Size) { argument
52 uint64_t AddressEnd = Address + Size;
56 if (Address >= (uint64_t)I->base() &&
65 /// @param Address Destination address in the target process.
71 virtual bool loadData(uint64_t Address,
77 /// @param Address Destination address in the target process.
83 virtual bool loadCode(uint64_t Address,
90 /// @param Address Addres
[all...]
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_getproc.c41 __GLXextFuncPtr Address; member in struct:name_address_pair
192 return GLX_functions[i].Address;
/external/llvm/include/llvm/ExecutionEngine/
H A DJITEventListener.h35 uintptr_t Address; member in struct:llvm::JITEvent_EmittedFunctionDetails::LineStart
/external/llvm/lib/DebugInfo/
H A DDWARFDebugArangeSet.h41 uint64_t Address; member in struct:llvm::DWARFDebugArangeSet::Descriptor
43 uint64_t getEndAddress() const { return Address + Length; }
H A DDWARFDebugAranges.h24 uint32_t findAddress(uint64_t Address) const;
51 bool containsAddress(uint64_t Address) const {
52 return LowPC <= Address && Address < HighPC();
64 uint64_t Address; member in struct:llvm::DWARFDebugAranges::RangeEndpoint
68 RangeEndpoint(uint64_t Address, uint32_t CUOffset, bool IsRangeStart) argument
69 : Address(Address), CUOffset(CUOffset), IsRangeStart(IsRangeStart) {}
72 return Address < Other.Address;
[all...]
H A DDWARFFormValue.cpp372 uint64_t Address; local
373 if (cu->getAddrOffsetSectionItem(uvalue, Address))
374 OS << format("0x%016" PRIx64, Address);
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp49 /// symbolic information at the Address for this instrution. If that returns
53 /// Address + Value is done and if a symbol is found an MCExpr is created with
54 /// that, else an MCExpr with Address + Value is created. If GetOpInfo()
61 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address,
74 !GetOpInfo(DisInfo, Address, 0 /* Offset */, InstSize, 1, &SymbolicOp)) {
77 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType,
78 Address, &ReferenceName);
84 SymbolicOp.Value = Address + Value;
100 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address,
103 0xfffffffffffff000LL & (Address
60 tryAddingSymbolicOperand( MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) argument
[all...]
/external/nist-sip/java/javax/sip/address/
H A DAddress.java6 public interface Address extends Cloneable, Serializable { interface in inherits:Cloneable,Serializable
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DAddress.java35 * <p>HTTP requests that share the same {@code Address} may also share the same
38 public final class Address { class
48 public Address(String uriHost, int uriPort, SocketFactory socketFactory, method in class:Address
126 if (other instanceof Address) {
127 Address that = (Address) other;
/external/smack/src/org/xbill/DNS/
H A DAddress.java15 public final class Address { class
21 Address() {} method in class:Address
121 byte [] v4addr = Address.toByteArray(tokens[i], IPv4);
209 byte [] address = Address.toByteArray(s, IPv4);
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_address.cc26 Address* CreateAddressInternal(const base::DictionaryValue& dictionary,
96 Address* address = new Address(country_name_code,
119 Address::Address() {} function in class:autofill::wallet::Address
121 Address::Address(const AutofillProfile& profile) function in class:autofill::wallet::Address
141 Address::Address(const std::string& country_name_code, function in class:autofill::wallet::Address
166 Address
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglprocs.h37 _glapi_proc Address; member in struct:__anon13460
/external/lldb/include/lldb/Core/
H A DAddress.h1 //===-- Address.h -----------------------------------------------*- C++ -*-===//
24 /// @class Address Address.h "lldb/Core/Address.h"
27 /// The Address class allows addresses to be relative to a section
55 class Address class in namespace:lldb_private
59 /// Dump styles allow the Address::Dump(Stream *,DumpStyle) const
60 /// function to display Address contents in a variety of ways.
102 Address () : function in class:lldb_private::Address
112 /// Makes a copy of the another Address objec
117 Address (const Address& rhs) : function in class:lldb_private::Address
136 Address (const lldb::SectionSP &section_sp, lldb::addr_t offset) : function in class:lldb_private::Address
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h36 nub_addr_t Address() const { return m_addr; } function in class:DNBBreakpoint
120 nub_addr_t m_addr; // Address of this breakpoint
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp86 uintptr_t Address, DebugLoc Loc) {
88 Result.vma = Address;
141 *Details.MF, Filenames, I->Address, I->Loc));
84 LineStartToOProfileFormat( const MachineFunction &MF, FilenameCache &Filenames, uintptr_t Address, DebugLoc Loc) argument
/external/llvm/lib/Target/R600/
H A DR600EmitClauseMarkers.cpp38 int Address; member in class:__anon26115::R600EmitClauseMarkers
280 .addImm(Address++) // ADDR
294 R600EmitClauseMarkers() : MachineFunctionPass(ID), TII(nullptr), Address(0) {
/external/llvm/lib/Target/X86/InstPrinter/
H A DX86ATTInstPrinter.cpp151 int64_t Address; local
152 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
153 O << formatHex((uint64_t)Address);

Completed in 1119 milliseconds

12345