Home
last modified time | relevance | path

Searched refs:implies (Results 1 – 25 of 201) sorted by relevance

123456789

/external/clang/lib/Analysis/
DThreadSafetyLogical.cpp20 static bool implies(const LExpr *LHS, bool LNeg, const LExpr *RHS, bool RNeg) { in implies() function
25 return implies(A->left(), LNeg, RHS, RNeg) && in implies()
26 implies(A->right(), LNeg, RHS, RNeg); in implies()
29 return implies(LHS, LNeg, A->left(), RNeg) && in implies()
30 implies(LHS, LNeg, A->right(), RNeg); in implies()
35 return implies(A->left(), LNeg, RHS, RNeg) || in implies()
36 implies(A->right(), LNeg, RHS, RNeg); in implies()
39 return implies(LHS, LNeg, A->left(), RNeg) || in implies()
40 implies(LHS, LNeg, A->right(), RNeg); in implies()
62 return implies(LHS, LNeg, cast<Not>(RHS)->exp(), !RNeg); in implies()
[all …]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DProtectionDomainTest.java151 assertFalse(new ProtectionDomain(null, null).implies(allperm)); in testImplies_00()
159 assertTrue(new ProtectionDomain(null, perms).implies(allperm)); in testImplies_01()
174 pd.implies(allperm); in testImplies_02()
192 pd.implies(allperm); in testImplies_03()
248 public boolean implies(ProtectionDomain domain, Permission permission) { in implies() method in ProtectionDomainTest.TestPolicy
252 return super.implies(domain, permission); in implies()
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyLogical.h34 inline bool implies(const LExpr *RHS) const;
97 bool implies(const LExpr *LHS, const LExpr *RHS);
99 bool LExpr::implies(const LExpr *RHS) const { in implies() function
100 return lexpr::implies(this, RHS); in implies()
/external/v8/src/compiler/
DSTYLE14 * A TODO(turbofan) implies a performance improvement opportunity.
15 * A TODO(name) implies an incomplete implementation.
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
Dtest_implies.py29 mg = modulegraph.ModuleGraph(path=[root]+sys.path, implies={
60 mg = modulegraph.ModuleGraph(path=[root]+sys.path, implies={
/external/google-tv-pairing-protocol/proto/
Dpolo.proto41 // Protocol status. Any status other than STATUS_OK implies a fault.
108 // The role of the client (ie, the one initiating pairing). This implies the
/external/harfbuzz_ng/win32/
DREADME.txt43 GOBJECT: Enable building the HarfBuzz-GObject DLL, and thus implies GLib
53 $(srcroot)\README.python for more related details. This implies
61 thus implies FreeType font callback support and Cairo support.
Dinfo-msvc.mak101 @echo Enable the HarfBuzz-GObject library, also implies GLib2 support,
107 @echo Enable the build of introspection files, also implies GObject/GLib2 support,
/external/apache-http/
Dunbundled-apache1 The existence of this file in external/apache-http implies
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
DMyPermission.java49 public boolean implies(Permission permission) { in implies() method in MyPermission
DMyPermissionCollection.java51 public boolean implies(Permission permission) {
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/
Dtests3.dat258 Line: 1 Col: 27 Unexpected start tag (nobr) implies end tag (nobr).
259 Line: 1 Col: 33 Unexpected start tag (nobr) implies end tag (nobr).
273 Line: 1 Col: 27 Unexpected start tag (nobr) implies end tag (nobr).
/external/llvm/test/CodeGen/X86/
Ddynamic-alloca-in-entry.ll12 ; Use of inalloca implies that that the alloca is not static.
/external/valgrind/gdbserver_tests/
Dmcmain_pic.vgtest2 # On linux, this implies a proper transfer of the auxv
/external/v8/tools/gyp/test/win/linker-flags/
Dfixed-base.gyp7 # Disable DYNAMICBASE for these tests because it implies/doesn't imply
/external/iptables/extensions/
Dlibxt_tos.man12 Note that this implies a mask of 0x3F, i.e. all but the ECN bits.
Dlibxt_ipvs.man6 Any of the following options implies \-\-ipvs (even negated)
/external/llvm/test/Transforms/MergeFunc/
Dundef-different-types.ll7 ; anything else, because this implies the ordering will be inconsistent (i.e.
/external/llvm/test/Feature/OperandBundles/
Dadce.ll5 ; bundles since the presence of unknown operand bundles implies
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
DProviderConfigurationPermission.java106 public boolean implies( in implies() method in ProviderConfigurationPermission
/external/llvm/test/CodeGen/AArch64/
Dbitcast.ll3 ; PR23065: SCALAR_TO_VECTOR implies the top elements 1 to N-1 of the N-element vector are undefined.
/external/autotest/client/tests/sparse/
Dcontrol19 that the grouping implies.
/external/valgrind/docs/internals/
Dporting-HOWTO.txt10 Note that this implies both a new architecture, and a new platform (ie. arch/OS
84 Similarly to above, this implies both a new OS, and a new platform.
/external/autotest/server/site_tests/network_WiFi_RegDomain/
Dcontrol40 # - 'passive-scan' implies 'connect'
41 # - 'no-connect' implies no probes
/external/curl/packages/vms/
Dmake_pcsi_curl_kit_name.com166 $! The presence of a patch implies an update

123456789