Home
last modified time | relevance | path

Searched refs:ADDR (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/net/
DStaticIpConfigurationTest.java37 private static final LinkAddress ADDR = new LinkAddress(ADDRSTR); field in StaticIpConfigurationTest
70 s.ipAddress = ADDR; in makeTestObject()
106 s.ipAddress = ADDR; in testHashCodeAndEquals()
155 s.ipAddress = ADDR; in testToLinkProperties()
156 expected.addLinkAddress(ADDR); in testToLinkProperties()
198 expected.removeLinkAddress(ADDR); in testToLinkProperties()
/frameworks/rs/rsov/compiler/tests/single_kernel/
Dinvert.ll12 ; CHECK:%[[ADDR:.*]] = OpAccessChain {{.*}} %[[BUF_VAR]]
13 ; CHECK:OpLoad {{.*}} %[[ADDR]]
/frameworks/compile/mclinker/include/mcld/Script/
DOperator.h66 ADDR = 33, enumerator
143 Operator& Operator::create<Operator::ADDR>();
DUnaryOp.h62 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module&,
/frameworks/compile/mclinker/lib/Script/
DOperator.cpp106 Operator& Operator::create<Operator::ADDR>() { in create()
107 static UnaryOp<Operator::ADDR> op; in create()
DRpnExpr.cpp83 expr->push_back(&Operator::create<Operator::ADDR>()); in buildHelperExpr()
DUnaryOp.cpp70 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module& pModule, in eval()
DScriptParser.yy123 %token ADDR
780 | ADDR '(' string ')'
784 &Operator::create<Operator::ADDR>());
DScriptScanner.ll112 <EXPRESSION>"ADDR" { return token::ADDR; }
/frameworks/base/tests/net/java/com/android/server/connectivity/
DNat464XlatTest.java55 static final LinkAddress ADDR = new LinkAddress("192.0.2.5/29"); field in Nat464XlatTest
84 when(mConfig.getLinkAddress()).thenReturn(ADDR); in setUp()