HomeSort by relevance Sort by last modified time
    Searched refs:And (Results 1 - 25 of 414) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
label.s 3 ! And another comment
5 LABEL DC.L SYMBOL ; And yet another comment
  /external/clang/lib/Analysis/
ThreadSafetyLogical.cpp 18 // Implication. We implement De Morgan's Laws by maintaining LNeg and RNeg
19 // to keep track of whether LHS and RHS are negated.
23 // Calculates the logical AND implication operator.
45 case LExpr::And:
47 // C => A & B [if] C => A and C => B
50 return RNeg ? RightOrOperator(cast<And>(RHS))
51 : RightAndOperator(cast<And>(RHS));
56 // C => !(A | B) [if] C => !A & !B [===] C => !A and C => !B
70 case LExpr::And:
74 // !(A & B) => C [if] !A | !B => C [===] !A => C and !B =>
    [all...]
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 11 /// \brief Defines and computes precedence levels for binary/ternary operators.
36 And = 8, // &
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyLogical.h 26 And,
69 class And : public BinOp {
71 And(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::And) {}
73 static bool classof(const LExpr *E) { return E->kind() == LExpr::And; }
  /art/test/427-bitwise/src/
Main.java 13 * See the License for the specific language governing permissions and
45 expectEquals(1, $opt$And(5, 3));
46 expectEquals(0, $opt$And(0, 0));
47 expectEquals(0, $opt$And(0, 3));
48 expectEquals(0, $opt$And(3, 0));
49 expectEquals(1, $opt$And(1, -3));
50 expectEquals(-12, $opt$And(-12, -3));
66 expectEquals(1L, $opt$And(5L, 3L));
67 expectEquals(0L, $opt$And(0L, 0L));
68 expectEquals(0L, $opt$And(0L, 3L))
    [all...]
  /external/ImageMagick/MagickWand/tests/
script-token-test-data.txt 13 And\\\ \''even '\'\""more \""complex
  /external/easymock/src/org/easymock/internal/matchers/
And.java 13 * See the License for the specific language governing permissions and
24 public class And implements IArgumentMatcher, Serializable {
30 public And(List<IArgumentMatcher> matchers) {
44 buffer.append("and(");
  /external/mockito/src/org/mockito/internal/matchers/
And.java 17 public class And extends ArgumentMatcher implements Serializable {
22 public And(List<Matcher> matchers) {
36 description.appendText("and(");
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /external/vixl/examples/
getting-started.cc 4 // Redistribution and use in source and binary forms, with or without
8 // this list of conditions and the following disclaimer.
10 // this list of conditions and the following disclaimer in the documentation
11 // and/or other materials provided with the distribution.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
18 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
38 __ And(x0, x0, x1);
neon-matrix-multiply.cc 4 // Redistribution and use in source and binary forms, with or without
8 // this list of conditions and the following disclaimer.
10 // this list of conditions and the following disclaimer in the documentation
11 // and/or other materials provided with the distribution.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
18 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
66 __ And(x3, x0, x1);
67 __ And(x3, x3, x2)
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
bspec803.s 4 BYTE 0x98,"aaa" # A LOP_QUOTEd part here. And also...
  /external/mockito/src/org/mockito/internal/progress/
ArgumentMatcherStorageImpl.java 10 import org.mockito.internal.matchers.And;
53 assertStateFor("And(?)", TWO_SUB_MATCHERS);
54 And and = new And(popLastArgumentMatchers(TWO_SUB_MATCHERS)); local
55 matcherStack.push(new LocalizedMatcher(and));
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
And.java 15 * See the License for the specific language governing permissions and
19 * $Id: And.java 468655 2006-10-28 07:12:06Z minchau $
28 * The 'and' operation expression executer.
30 public class And extends Operation
35 * AND two expressions and return the boolean result. Override
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
pcrel-shared.s 3 # relocs and TEXTREL markers.
15 @ And now a case with a local symbol.
  /external/autotest/client/common_lib/cros/
dev_server_unittest.py 165 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
169 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
185 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
189 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
235 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
239 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
265 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
298 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
335 urllib2.urlopen(mox.And(mox.StrContains(self._HOST),
361 urllib2.urlopen(mox.And(mox.StrContains(host0_expected)
    [all...]
  /external/v8/test/mjsunit/
regexp-results-cache.js 2 // Redistribution and use in source and binary forms, with or without
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 And grievously hath Caesar answer'd it.
    [all...]
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 11 /// \brief Defines and computes precedence levels for binary/ternary operators.
35 // taken as the end of the template-argument-list and completes
59 case tok::amp: return prec::And;
  /external/llvm/test/MC/PowerPC/
ppc64-relocs-01.s 25 # R_PPC64_TOC16_DS against the .toc and the 'sin' external function
35 # 2. And a R_PPC64_TOC against no symbol (the linker will replace for the
  /external/regex-re2/re2/
prefilter.h 27 AND, // All in subs() must match
41 CHECK(op_ == AND || op_ == OR);
45 // Set the children vector. Prefilter takes ownership of subs and
50 // the Prefilter and should deallocate it. Returns NULL if Prefilter
60 // Combines two prefilters together to create an AND. The passed
62 static Prefilter* And(Prefilter* a, Prefilter* b);
68 // Generalized And/Or
84 // Sub-matches for AND or OR Prefilter.
94 // and -1 for duplicate nodes.
  /external/easymock/src/org/easymock/internal/
LastControl.java 13 * See the License for the specific language governing permissions and
24 import org.easymock.internal.matchers.And;
68 stack.push(new And(popLastArgumentMatchers(count)));
  /ndk/build/core/
add-platform.mk 12 # See the License for the specific language governing permissions and
19 # And record them in NDK_PLATFORM_$(platform)_ABIS

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 91011>>