HomeSort by relevance Sort by last modified time
    Searched defs:and (Results 101 - 125 of 429) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
Period.java 1 // © 2016 and later: Unicode, Inc. and others.
5 * Copyright (C) 2007, International Business Machines Corporation and *
16 * if set, has a count (which can be fractional and must be non-negative).
18 * or future, and as being more or less than the defined value.
26 * Period p1 = Period.at(3, WEEK).and(2, DAY).inFuture();
27 * Period p2 = p1.and(12, HOUR);</pre>
81 public Period and(float count, TimeUnit unit) { method in class:Period
143 * future is true, and into the past otherwise.
154 * past is true, and into the future otherwise
    [all...]
  /external/proguard/src/proguard/evaluation/value/
IntegerValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
82 * Returns the generalization of this IntegerValue and the given other
88 * Returns the sum of this IntegerValue and the given IntegerValue.
93 * Returns the difference of this IntegerValue and the given IntegerValue.
98 * Returns the difference of the given IntegerValue and this IntegerValue.
103 * Returns the product of this IntegerValue and the given IntegerValue.
109 * Returns the quotient of this IntegerValue and the given IntegerValue.
115 * Returns the quotient of the given IntegerValue and this IntegerValue.
182 * Returns the logical <i>and</i> of this IntegerValue and the give
185 public abstract IntegerValue and(IntegerValue other); method in class:IntegerValue
408 public IntegerValue and(UnknownIntegerValue other) method in class:IntegerValue
652 public IntegerValue and(SpecificIntegerValue other) method in class:IntegerValue
896 public IntegerValue and(ParticularIntegerValue other) method in class:IntegerValue
    [all...]
LongValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
68 * Returns the generalization of this LongValue and the given other
77 * Returns the sum of this LongValue and the given LongValue.
85 * Returns the difference of this LongValue and the given LongValue.
93 * Returns the difference of the given LongValue and this LongValue.
101 * Returns the product of this LongValue and the given LongValue.
110 * Returns the quotient of this LongValue and the given LongValue.
119 * Returns the quotient of the given LongValue and this LongValue.
173 * Returns the logical <i>and</i> of this LongValue and the give
176 public LongValue and(LongValue other) method in class:LongValue
330 public LongValue and(SpecificLongValue other) method in class:LongValue
486 public LongValue and(ParticularLongValue other) method in class:LongValue
    [all...]
ParticularIntegerValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
196 public IntegerValue and(IntegerValue other) method in class:ParticularIntegerValue
198 return other.and(this);
324 public IntegerValue and(ParticularIntegerValue other) method in class:ParticularIntegerValue
ParticularLongValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
139 public LongValue and(LongValue other) method in class:ParticularLongValue
141 return other.and(this);
227 public LongValue and(ParticularLongValue other) method in class:ParticularLongValue
SpecificIntegerValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
164 public IntegerValue and(IntegerValue other) method in class:SpecificIntegerValue
166 return other.and(this);
296 public IntegerValue and(SpecificIntegerValue other) method in class:SpecificIntegerValue
300 new CompositeIntegerValue(other, CompositeIntegerValue.AND, this);
UnknownIntegerValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
166 public IntegerValue and(IntegerValue other) method in class:UnknownIntegerValue
  /libcore/luni/src/main/java/java/math/
Logical.java 14 * See the License for the specific language governing permissions and
25 * <li>and</li>
81 /** @see BigInteger#and(BigInteger) */
82 static BigInteger and(BigInteger val, BigInteger that) { method in class:Logical
130 // PRE: positive is positive and negative is negative
158 } // else positive ended and must "copy" virtual 0's, do nothing then
165 // PRE: longer and shorter are negative
459 // PRE: longer and shorter are positive;
477 // PRE: val and that are negative;
550 // Applying two complement to negative and to resul
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 13 * See the License for the specific language governing permissions and
30 * encouraged to be side-effect-free and immutable.
39 * using surrogate pairs, and a {@code CharMatcher} treats these just as two
189 * PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and PRIVATE_USE according
293 @Override public CharMatcher and(CharMatcher other) {
357 @Override public CharMatcher and(CharMatcher other) {
389 @Override public CharMatcher and(CharMatcher other) { method in class:CharMatcher
419 @Override public CharMatcher and(CharMatcher other) {
420 return other.matches(match) ? super.and(other) : other;
565 * and {@code other}
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
vector2.s 160 r7=r3 -|- r6(sco) ; /* subtract|subtract with saturation and half-word results crossed over in the destination register */
552 /* simultaneous MAC0 and MAC1 execution, 16-bit results. Both
570 multiplies and accumulates two unsigned fractions. */
574 /* both MACs multiply signed fractions, sign extended, and saturate
577 and MAC1 execution, both are signed fractions, both products load label
594 signed fraction by unsigned fraction and uses all 40 bits of A1.
598 scale the result and round on the way to the destination register.
603 r3=(a1=r6.h*r7.h), r2=(a0=r6.l*r7.l) ; /* simultaneous MAC0 and
621 signed fraction by unsigned fraction and uses all 40 bits of A1.
625 result and round on the way to the destination register. *
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 6 * Redistribution and use in source and binary forms, with or without
10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 * For NFA o-p1->o-p2->o, create tree AND(p1,p2).
48 * we will have to combine p1 and p2 into DFA state as we will b
607 public static SemanticContext and(SemanticContext a, SemanticContext b) { method in class:SemanticContext
    [all...]
  /external/boringssl/src/crypto/curve25519/asm/
x25519-asm-x86_64.S 3 * Permission to use, copy, modify, and/or distribute this software for any
5 * copyright notice and this permission notice appear in all copies.
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
64 /* This is a leaf function and uses the redzone for saving registers. */
79 and %rax,%rsi label
83 and %rax,%rdx label
87 and %rax,%rcx label
91 and %rax,%r8 label
95 and %rax,%r label
112 and %r12,%rax label
113 and %r12,%r10 label
256 and %rsi,%r8 label
258 and %rsi,%r10 label
261 and %rsi,%r12 label
264 and %rsi,%r14 label
267 and %rsi,%rbx label
276 and %rsi,%r8 label
280 and %rsi,%rcx label
284 and %rsi,%r9 label
288 and %rsi,%rax label
291 and %rsi,%r10 label
396 and %rsi,%rcx label
398 and %rsi,%r9 label
401 and %rsi,%r11 label
404 and %rsi,%r13 label
407 and %rsi,%r15 label
414 and %rsi,%rcx label
418 and %rsi,%r8 label
422 and %rsi,%r9 label
426 and %rsi,%rax label
431 and %rsi,%r10 label
573 and %rdx,%rsi label
575 and %rdx,%r8 label
578 and %rdx,%r10 label
581 and %rdx,%r12 label
584 and %rdx,%r14 label
591 and %rdx,%rsi label
595 and %rdx,%r8 label
599 and %rdx,%r9 label
603 and %rdx,%rax label
608 and %rdx,%r10 label
688 and %rdx,%rsi label
690 and %rdx,%r8 label
693 and %rdx,%r10 label
696 and %rdx,%r12 label
699 and %rdx,%r14 label
706 and %rdx,%rsi label
710 and %rdx,%r8 label
714 and %rdx,%r9 label
718 and %rdx,%rax label
723 and %rdx,%r10 label
893 and %rdx,%rsi label
895 and %rdx,%r8 label
898 and %rdx,%r10 label
901 and %rdx,%r12 label
904 and %rdx,%r14 label
913 and %rdx,%rsi label
917 and %rdx,%r8 label
921 and %rdx,%r9 label
925 and %rdx,%rax label
928 and %rdx,%r10 label
1043 and %rdx,%rsi label
1045 and %rdx,%r8 label
1048 and %rdx,%r10 label
1051 and %rdx,%r12 label
1054 and %rdx,%r14 label
1063 and %rdx,%rsi label
1067 and %rdx,%r8 label
1071 and %rdx,%r9 label
1075 and %rdx,%rax label
1078 and %rdx,%r10 label
1183 and %rdx,%rsi label
1185 and %rdx,%r8 label
1188 and %rdx,%r10 label
1191 and %rdx,%r12 label
1194 and %rdx,%r14 label
1201 and %rdx,%rsi label
1205 and %rdx,%r8 label
1209 and %rdx,%r9 label
1213 and %rdx,%rax label
1218 and %rdx,%r10 label
1298 and %rdx,%rsi label
1300 and %rdx,%r8 label
1303 and %rdx,%r10 label
1306 and %rdx,%r12 label
1309 and %rdx,%r14 label
1316 and %rdx,%rsi label
1320 and %rdx,%r8 label
1324 and %rdx,%r9 label
1328 and %rdx,%rax label
1333 and %rdx,%r10 label
1448 and %rdx,%rsi label
1450 and %rdx,%r8 label
1453 and %rdx,%r10 label
1456 and %rdx,%r12 label
1459 and %rdx,%r14 label
1468 and %rdx,%rsi label
1472 and %rdx,%r8 label
1476 and %rdx,%r9 label
1480 and %rdx,%rax label
1483 and %rdx,%r10 label
1598 and %rdx,%rsi label
1600 and %rdx,%r8 label
1603 and %rdx,%r10 label
1606 and %rdx,%r12 label
1609 and %rdx,%r14 label
1618 and %rdx,%rsi label
1622 and %rdx,%r8 label
1626 and %rdx,%r9 label
1630 and %rdx,%rax label
1633 and %rdx,%r10 label
1784 and %rdx,%rsi label
1786 and %rdx,%r8 label
1789 and %rdx,%r10 label
1792 and %rdx,%r12 label
1795 and %rdx,%r14 label
1804 and %rdx,%rsi label
1808 and %rdx,%r8 label
1812 and %rdx,%r9 label
1816 and %rdx,%rax label
1819 and %rdx,%r10 label
    [all...]
  /external/easymock/src/org/easymock/
EasyMock.java 13 * See the License for the specific language governing permissions and
108 * is disabled by default, and the mock object will return <code>0</code>,
124 * is disabled by default, and the mock object will return <code>0</code>,
159 * Creates a control, order checking is disabled by default, and the mock
704 public static boolean and(boolean first, boolean second) { method in class:EasyMock
718 public static byte and(byte first, byte second) { method in class:EasyMock
732 public static char and(char first, char second) { method in class:EasyMock
746 public static double and(double first, double second) { method in class:EasyMock
760 public static float and(float first, float second) { method in class:EasyMock
774 public static int and(int first, int second) { method in class:EasyMock
788 public static long and(long first, long second) { method in class:EasyMock
802 public static short and(short first, short second) { method in class:EasyMock
818 public static <T> T and(T first, T second) { method in class:EasyMock
    [all...]
  /external/guava/guava/src/com/google/common/base/
Predicates.java 13 * See the License for the specific language governing permissions and
99 * order, and evaluation will be "short-circuited" as soon as a false
105 public static <T> Predicate<T> and( method in class:Predicates
113 * order, and evaluation will be "short-circuited" as soon as a false
119 public static <T> Predicate<T> and(Predicate<? super T>... components) { method in class:Predicates
126 * order, and evaluation will be "short-circuited" as soon as a false
129 public static <T> Predicate<T> and(Predicate<? super T> first, method in class:Predicates
138 * order, and evaluation will be "short-circuited" as soon as a
152 * order, and evaluation will be "short-circuited" as soon as a
165 * order, and evaluation will be "short-circuited" as soon as
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 13 * See the License for the specific language governing permissions and
96 * order, and evaluation will be "short-circuited" as soon as a false
102 public static <T> Predicate<T> and( method in class:Predicates
110 * order, and evaluation will be "short-circuited" as soon as a false
116 public static <T> Predicate<T> and(Predicate<? super T>... components) { method in class:Predicates
123 * order, and evaluation will be "short-circuited" as soon as a false
126 public static <T> Predicate<T> and(Predicate<? super T> first, method in class:Predicates
135 * order, and evaluation will be "short-circuited" as soon as a
149 * order, and evaluation will be "short-circuited" as soon as a
162 * order, and evaluation will be "short-circuited" as soon as
    [all...]
  /external/libpcap/
grammar.y 6 * Redistribution and use in source and binary forms, with or without
8 * retain the above copyright notice and this paragraph in its entirety, (2)
9 * distributions including binary code include the above copyright notice and
11 * provided with the distribution, and (3) all advertising materials mentioning
14 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
277 %type <blk> and or paren not null prog
321 %left OR AND
344 and: AND { $$ = $<blk>0; } label
    [all...]
  /external/llvm/test/MC/Lanai/
v11.s 35 and %r17, 0xffff1234, %r21 label
37 and %r17, 0x1234ffff, %r21 label
39 and.f %r17, 0xffff1234, %r21
41 and.f %r17, 0x1234ffff, %r21
43 and %r17, %r18, %r21 label
45 and.f %r17, %r18, %r21
341 ld [%r17 and %r18], %r21
359 ld [*%r17 and %r18], %r21
377 ld [%r17* and %r18], %r21
631 st %r21, [%r17 and %r18
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
nat.go 7 // of signed integers, rationals, and floating-point numbers.
20 // with 0 <= x[i] < _B and 0 <= i < n is stored in a slice of length n,
191 // basicMul multiplies x and y and leaves the result in z.
209 // x and y are required to satisfy 0 <= z < 2**(n*_W) and then the result
213 // (required by addMulVVW and the for loop).
263 // karatsuba multiplies x and y and leaves the result in z.
264 // Both x and y must have the same length n and n must be
805 func (z nat) and(x, y nat) nat { func
    [all...]
  /prebuilts/go/darwin-x86/src/text/template/
funcs.go 22 // return value evaluates to non-nil during execution, execution terminates and
33 "and": and,
118 // findFunction looks for a function in the template, and global map.
133 // prepareArg checks if value can be used as an argument of type argType, and
278 // and computes the Boolean AND of its arguments, returning
280 func and(arg0 reflect.Value, args ...reflect.Value) reflect.Value { func
315 // TODO: Perhaps allow comparison between signed and unsigned integers.
488 htmlApos = []byte("&#39;") // shorter than "&apos;" and apos was not in HTML until HTML
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
nat.go 7 // of signed integers, rationals, and floating-point numbers.
20 // with 0 <= x[i] < _B and 0 <= i < n is stored in a slice of length n,
191 // basicMul multiplies x and y and leaves the result in z.
209 // x and y are required to satisfy 0 <= z < 2**(n*_W) and then the result
213 // (required by addMulVVW and the for loop).
263 // karatsuba multiplies x and y and leaves the result in z.
264 // Both x and y must have the same length n and n must be
805 func (z nat) and(x, y nat) nat { func
    [all...]
  /prebuilts/go/linux-x86/src/text/template/
funcs.go 22 // return value evaluates to non-nil during execution, execution terminates and
33 "and": and,
118 // findFunction looks for a function in the template, and global map.
133 // prepareArg checks if value can be used as an argument of type argType, and
278 // and computes the Boolean AND of its arguments, returning
280 func and(arg0 reflect.Value, args ...reflect.Value) reflect.Value { func
315 // TODO: Perhaps allow comparison between signed and unsigned integers.
488 htmlApos = []byte("&#39;") // shorter than "&apos;" and apos was not in HTML until HTML
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/
allinsn.s 38 .global and
39 and: label
40 and R0,R0,R0
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
SpoofCheckerTest.java 2 // © 2016 and later: Unicode, Inc. and others.
6 * Copyright (C) 2009-2015, International Business Machines Corporation and
44 * Identifiers for verifying that spoof checking is minimally alive and working.
54 String goodCyrl = "\u0438\u043B"; // "Cyrillic small letter i and el" Plain lower case Cyrillic letters, no latin confusables
55 String goodGreek = "\u03c0\u03c6"; // "Greek small letter pi and phi" Plain lower case Greek letters
236 /* Allow en and ru, which should enable Latin and Cyrillic only to pass */
387 // Test cases chosen for substitutions of various lengths, and
412 // 0C83 mapping existed in the ML and MA tables, did not exist in SL, SA (Original Unicode 7
802 Method and = ScriptSet.getDeclaredMethod("and", Integer.TYPE); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
SpoofCheckerTest.java 1 // © 2016 and later: Unicode, Inc. and others.
5 * Copyright (C) 2009-2015, International Business Machines Corporation and
43 * Identifiers for verifying that spoof checking is minimally alive and working.
53 String goodCyrl = "\u0438\u043B"; // "Cyrillic small letter i and el" Plain lower case Cyrillic letters, no latin confusables
54 String goodGreek = "\u03c0\u03c6"; // "Greek small letter pi and phi" Plain lower case Greek letters
235 /* Allow en and ru, which should enable Latin and Cyrillic only to pass */
386 // Test cases chosen for substitutions of various lengths, and
411 // 0C83 mapping existed in the ML and MA tables, did not exist in SL, SA (Original Unicode 7
801 Method and = ScriptSet.getDeclaredMethod("and", Integer.TYPE); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntervalSet.java 6 * Redistribution and use in source and binary forms, with or without
10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40 * a BitSet with runs of 0s and 1s). Only ranges are recorded so that
44 * element values may be negative. Useful for sets of EPSILON and EOF
403 public IntSet and(IntSet other) { method in class:IntervalSet
    [all...]

Completed in 660 milliseconds

1 2 3 45 6 7 8 91011>>