Searched defs:Prefix (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/tools/mcld/lib/
H A DTripleOptions.cpp42 llvm::cl::Prefix);
63 llvm::StringRef Prefix; local
73 llvm::StringRef Prefix = ProgNameRef.slice(0, LastComponent); local
75 if (!mcld::TargetRegistry::lookupTarget(Prefix, IgnoredError))
77 return Prefix.str();
/frameworks/base/core/tests/coretests/src/android/net/
H A DRouteInfoTest.java35 private IpPrefix Prefix(String prefix) { method in class:RouteInfoTest
51 assertEquals(Prefix("::/0"), r.getDestination());
56 assertEquals(Prefix("0.0.0.0/0"), r.getDestination());
61 r = new RouteInfo(Prefix("2001:db8:beef:cafe::/48"), null, "lo");
62 assertEquals(Prefix("2001:db8:beef::/48"), r.getDestination());
66 r = new RouteInfo(Prefix("192.0.2.5/24"), null);
67 assertEquals(Prefix("192.0.2.0/24"), r.getDestination());
87 r = new PatchedRouteInfo(Prefix("2001:db8:f00::ace:d00d/127"), null, "rmnet0");
94 r = new PatchedRouteInfo(Prefix("192.0.2.0/23"), null, "wlan0");
100 PatchedRouteInfo ipv6Default = new PatchedRouteInfo(Prefix("
[all...]

Completed in 94 milliseconds