OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Address
(Results
1 - 25
of
148
) sorted by null
1
2
3
4
5
6
/external/clang/test/Modules/Inputs/PR20399/
SecondHeader.h
7
struct
Address
{};
10
struct
Address
<std::vector<bool>>
11
:
Address
<std::vector<bool>::iterator> {};
/frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h
21
typedef uint8_t*
Address
;
MemoryRegion.h
19
typedef NonConstTraits<uint8_t>::pointer
Address
;
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_getproc.c
41
__GLXextFuncPtr
Address
;
184
* Return
address
of named glX function, or NULL if not found.
192
return GLX_functions[i].
Address
;
/frameworks/base/core/tests/coretests/src/android/net/
NetworkUtilsTest.java
29
private InetAddress
Address
(String addr) {
34
return (Inet4Address)
Address
(addr);
/frameworks/compile/mclinker/include/mcld/LD/
RelocationFactory.h
29
typedef Relocation::
Address
Address
;
43
Relocation* produce(Type pType, FragmentRef& pFragRef,
Address
pAddend = 0);
EhFrameReader.h
30
typedef char*
Address
;
Relocator.h
27
typedef Relocation::
Address
Address
;
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
Address.java
20
package org.apache.james.mime4j.field.
address
;
32
public abstract class
Address
{
35
* Adds any mailboxes represented by this
address
41
final void addMailboxesTo(ArrayList<
Address
> results) {
46
* Adds any mailboxes represented by this
address
50
protected abstract void doAddMailboxesTo(ArrayList<
Address
> results);
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/
Address.java
20
package org.apache.james.mime4j.field.
address
;
32
public abstract class
Address
{
35
* Adds any mailboxes represented by this
address
41
final void addMailboxesTo(ArrayList<
Address
> results) {
46
* Adds any mailboxes represented by this
address
50
protected abstract void doAddMailboxesTo(ArrayList<
Address
> results);
/external/jetty/src/java/org/eclipse/jetty/client/
Address.java
26
public class
Address
31
public static
Address
from(String hostAndPort)
46
return new
Address
(host, port);
49
public
Address
(String host, int port)
63
Address
that = (
Address
)obj;
/external/llvm/include/llvm/Support/
Memory.h
24
/// This class encapsulates the notion of a memory block which has an
address
31
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
58
/// The actual allocated
address
is not guaranteed to be near the requested
59
///
address
.
70
/// If the
address
following \p NearBlock is not so aligned, it will be
/external/llvm/lib/DebugInfo/DWARF/
SyntaxHighlighting.h
20
enum HighlightColor {
Address
, String, Tag, Attribute, Enumerator };
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCOFF.cpp
64
uint64_t
Address
;
65
if (Sym.getAddress(
Address
))
68
if (
Address
== UnknownAddressOrSize)
80
return
Address
- SectionAddress;
/frameworks/compile/mclinker/include/mcld/Fragment/
FragmentRef.h
30
typedef NonConstTraits<unsigned char>::pointer
Address
;
57
/// @pDest - the destination
address
60
/// the start
address
offset from fragment[offset()]
Relocation.h
31
typedef uint64_t
Address
; // FIXME: use SizeTrait<T>::
Address
instead
42
Address
pAddend,
63
Address
pAddend = 0);
71
/// symValue - S value - the symbol
address
72
Address
symValue() const;
75
Address
addend() const { return m_Addend; }
77
/// place - P value -
address
of the place being relocated
78
Address
place() const;
104
void setAddend(
Address
pAddend)
[
all
...]
/external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugArangeSet.h
32
// The size in bytes of an
address
on the target architecture. For segmented
33
// addressing, this is the size of the offset portion of the
address
.
36
// If the target system uses a flat
address
space, this value is 0.
41
uint64_t
Address
;
43
uint64_t getEndAddress() const { return
Address
+ Length; }
DWARFDebugAranges.h
24
uint32_t findAddress(uint64_t
Address
) const;
51
bool containsAddress(uint64_t
Address
) const {
52
return LowPC <=
Address
&&
Address
< HighPC();
58
uint64_t LowPC; // Start of
address
range.
59
uint32_t Length; // End of
address
range (not including this
address
).
64
uint64_t
Address
;
68
RangeEndpoint(uint64_t
Address
, uint32_t CUOffset, bool IsRangeStart)
69
:
Address
(Address), CUOffset(CUOffset), IsRangeStart(IsRangeStart) {
[
all
...]
/external/llvm/include/llvm/ExecutionEngine/
JITEventListener.h
38
/// The
address
at which the current line changes.
39
uintptr_t
Address
;
49
/// The list of line boundary information, sorted by
address
.
72
/// with section headers updated to reflect the
address
at which sections
/external/nist-sip/java/javax/sip/address/
Address.java
1
package javax.sip.
address
;
6
public interface
Address
extends Cloneable, Serializable {
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iphlpapi.h
66
DWORD WINAPI AddIPAddress(IPAddr
Address
,IPMask IpMask,DWORD IfIndex,PULONG NTEContext,PULONG NTEInstance);
143
WCHAR
Address
[DNS_MAX_NAME_BUFFER_LENGTH];
nettypes.h
41
UCHAR
Address
[HARDWARE_ADDRESS_LENGTH];
/external/llvm/lib/Target/X86/InstPrinter/
X86ATTInstPrinter.cpp
150
// that
address
in hex.
152
int64_t
Address
;
153
if (BranchTarget && BranchTarget->EvaluateAsAbsolute(
Address
)) {
154
O << formatHex((uint64_t)
Address
);
X86IntelInstPrinter.cpp
131
// that
address
in hex.
133
int64_t
Address
;
134
if (BranchTarget && BranchTarget->EvaluateAsAbsolute(
Address
)) {
135
O << formatHex((uint64_t)
Address
);
/external/llvm/tools/llvm-pdbdump/
LinePrinter.h
64
Address
,
Completed in 594 milliseconds
1
2
3
4
5
6