/external/mockito/src/org/mockito/internal/progress/ |
ArgumentMatcherStorageImpl.java | 13 import org.mockito.internal.matchers.Or; 63 assertStateFor("Or(?)", TWO_SUB_MATCHERS); 64 Or or = new Or(popLastArgumentMatchers(TWO_SUB_MATCHERS)); local 65 matcherStack.push(new LocalizedMatcher(or));
|
/external/proguard/src/proguard/evaluation/value/ |
IntegerValue.java | 7 * This program is free software; you can redistribute it and/or modify it 9 * Software Foundation; either version 2 of the License, or (at your option) 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 188 * Returns the logical <i>or</i> of this IntegerValue and the given 191 public abstract IntegerValue or(IntegerValue other); method in class:IntegerValue 201 * <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>. 207 * <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>. 212 * Returns whether this IntegerValue is less than or equal to the given 213 * IntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or 223 * <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code> 417 public IntegerValue or(UnknownIntegerValue other) method in class:IntegerValue 661 public IntegerValue or(SpecificIntegerValue other) method in class:IntegerValue 905 public IntegerValue or(ParticularIntegerValue other) method in class:IntegerValue [all...] |
LongValue.java | 7 * This program is free software; you can redistribute it and/or modify it 9 * Software Foundation; either version 2 of the License, or (at your option) 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 182 * Returns the logical <i>or</i> of this LongValue and the given 185 public LongValue or(LongValue other) method in class:LongValue 187 return other.or(this); 200 * Returns an IntegerValue with value -1, 0, or 1, if this LongValue is 201 * less than, equal to, or greater than the given LongValue, respectively. 212 * Returns an IntegerValue with value 1, 0, or -1, if this LongValue is 213 * less than, equal to, or greater than the given LongValue, respectively 339 public LongValue or(SpecificLongValue other) method in class:LongValue 495 public LongValue or(ParticularLongValue other) method in class:LongValue [all...] |
ParticularIntegerValue.java | 7 * This program is free software; you can redistribute it and/or modify it 9 * Software Foundation; either version 2 of the License, or (at your option) 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 201 public IntegerValue or(IntegerValue other) method in class:ParticularIntegerValue 203 return other.or(this); 329 public IntegerValue or(ParticularIntegerValue other) method in class:ParticularIntegerValue
|
ParticularLongValue.java | 7 * This program is free software; you can redistribute it and/or modify it 9 * Software Foundation; either version 2 of the License, or (at your option) 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 144 public LongValue or(LongValue other) method in class:ParticularLongValue 146 return other.or(this); 232 public LongValue or(ParticularLongValue other) method in class:ParticularLongValue
|
SpecificIntegerValue.java | 7 * This program is free software; you can redistribute it and/or modify it 9 * Software Foundation; either version 2 of the License, or (at your option) 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 169 public IntegerValue or(IntegerValue other) method in class:SpecificIntegerValue 171 return other.or(this); 303 public IntegerValue or(SpecificIntegerValue other) method in class:SpecificIntegerValue 307 new CompositeIntegerValue(other, CompositeIntegerValue.OR, this);
|
UnknownIntegerValue.java | 7 * This program is free software; you can redistribute it and/or modify it 9 * Software Foundation; either version 2 of the License, or (at your option) 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 171 public IntegerValue or(IntegerValue other) method in class:UnknownIntegerValue
|
/external/toybox/toys/pending/ |
expr.c | 25 All operators are infix, meaning they expect a constant (or expression 31 Calling expr from a command shell requires a lot of \( or '*' escaping 38 Constants may be strings or integers. Comparison, logical, and regex 61 // check if v is the integer 0 or the empty string 181 static void or(struct value *lhs, struct value *rhs) function 223 {"|", or }, {"&", and }, {"=", eq }, {"==", eq }, {">", gt }, 241 // tok is a string or integer - return it and get the next token
|
arp.c | 127 int or, flag; member in struct:flags 139 (f[j].or) ?(flag |= f[j].flag):(flag &= f[j].flag);
|
/external/toybox/toys/posix/ |
cp.c | 123 // Detect recursive copies via repeated top node (cp -R .. .) or 202 struct dirtree *or; local 206 for (or = try; or->parent; or = or->parent) dotdots++; 208 if (*or->name == '/') dotdots = 0; 230 // make symlink, or make block/char/fifo/socket
|
od.c | 93 unsigned long long ll = 0, or; local 99 or = -1LL; 100 if (t->type == 2) or >>= 1; 101 } else or = (1LL<<(8*t->size))-1; 102 throw = sprintf(buf, class, 0, or); 106 or = TT.buf[(*offset)++]; 107 ll |= or << (8*(IS_BIG_ENDIAN ? t->size-k-1 : k)); 112 or = sizeof(or) - t->size; 114 if (or && (ll & (1l<<((8*t->size)-1))) [all...] |
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/ |
FlagSet.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 100 public FlagSet or(FlagSet other) { method in class:FlagSet
|
/libcore/luni/src/main/java/java/math/ |
Logical.java | 2 * Licensed to the Apache Software Foundation (ASF) under one or more 11 * Unless required by applicable law or agreed to in writing, software 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 27 * <li>or</li> 424 /** @see BigInteger#or(BigInteger) */ 425 static BigInteger or(BigInteger val, BigInteger that) { method in class:Logical
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
CharMatcher.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 27 * Determines a true or false value for any Java {@code char} value, just as 70 .or(inRange('\u2000', '\u200a')); 82 .or(inRange('\u2000', '\u2006')) 83 .or(inRange('\u2008', '\u200a')); 104 digit = digit.or(inRange(base, (char) (base + 9))); 117 .or(inRange('\u001c', '\u0020')) 118 .or(is('\u1680') 392 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
BitSet.java | 6 Redistribution and use in source and binary forms, with or without 13 documentation and/or other materials provided with the distribution. 14 3. The name of the author may not be used to endorse or promote products 17 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 21 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE O 107 public BitSet or(BitSet a) { method in class:BitSet [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 13 * documentation and/or other materials provided with the distribution. 14 * 3. The name of the author may not be used to endorse or promote products 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE O 644 public static SemanticContext or(SemanticContext a, SemanticContext b) { method in class:SemanticContext [all...] |
/external/easymock/src/org/easymock/ |
EasyMock.java | 10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
109 * <code>null</code> or <code>false</code> for unexpected invocations.
125 * <code>null</code> or <code>false</code> for unexpected invocations.
161 * <code>null</code> or <code>false</code> for unexpected invocations.
300 * Expects a comparable argument greater than or equal the given value. For details, see
314 * Expects a byte argument greater than or equal to the given value. For
327 * Expects a double argument greater than or equal to the given value. For
340 * Expects a float argument greater than or equal to the given value. For 832 public static boolean or(boolean first, boolean second) { method in class:EasyMock 846 public static byte or(byte first, byte second) { method in class:EasyMock 860 public static char or(char first, char second) { method in class:EasyMock 874 public static double or(double first, double second) { method in class:EasyMock 888 public static float or(float first, float second) { method in class:EasyMock 902 public static int or(int first, int second) { method in class:EasyMock 916 public static long or(long first, long second) { method in class:EasyMock 930 public static short or(short first, short second) { method in class:EasyMock 946 public static <T> T or(T first, T second) { method in class:EasyMock [all...] |
/external/guava/guava/src/com/google/common/base/ |
Predicates.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 144 public static <T> Predicate<T> or( method in class:Predicates 158 public static <T> Predicate<T> or(Predicate<? super T>... components) { method in class:Predicates 168 public static <T> Predicate<T> or( method in class:Predicates 176 * tested {@code equals()} the given target or both are null. 382 /** @see Predicates#or(Iterable) */ 411 return "Predicates.or(" + COMMA_JOINER.join(components) + ")";
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Predicates.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 141 public static <T> Predicate<T> or( method in class:Predicates 155 public static <T> Predicate<T> or(Predicate<? super T>... components) { method in class:Predicates 165 public static <T> Predicate<T> or( method in class:Predicates 173 * tested {@code equals()} the given target or both are null. 319 /** @see Predicates#or(Iterable) */ 348 return "Predicates.or(" + COMMA_JOINER.join(components) + ")";
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
AbstractPackageSanityTests.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 57 * <p>Note that only top-level classes with either a non-private constructor or a non-private static 119 .or(suffix("Tests")) 120 .or(suffix("TestCase")) 121 .or(suffix("TestSuite")); 149 * <li>If a constructor or factory method takes a parameter whose type is interface, a dynamic 153 * <li>If the constructor or factory method takes a parameter that {@link 155 * <li>If there is no visible constructor or visible static factory method declared by {@code C} 373 final Chopper or(final Chopper you) { method in class:AbstractPackageSanityTests.Chopper [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
EscapingEvaluator.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 111 * or the whole expression. 140 setEscaping(or(left, right)); method 174 * Do not escape the output of a function if either the function is an escaping function, or any 189 finalExpression = or(finalExpression, currentEscapingExpression); 194 return or(finalExpression, funcExpr); 201 private JavaExpression or(JavaExpression first, JavaExpression second) { method in class:EscapingEvaluator
|
/external/libpcap/ |
grammar.y | 6 * Redistribution and use in source and binary forms, with or without 10 * this paragraph in its entirety in the documentation or other materials 12 * features or use of this software display the following acknowledgement: 16 * or promote products derived from this software without specific prior 18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 263 %type <blk> and or paren not null prog 307 %left OR AND 327 | expr or term { gen_or($1.b, $3.b); $$ = $3; } 328 | expr or id { gen_or($1.b, $3.b); $$ = $3; } 332 or: OR { $$ = $<blk>0; label [all...] |
/external/linux-tools-perf/src/tools/perf/config/ |
utilities.mak | 114 # that works as a shell word, regardless of whether or 139 # Usage: absolute-executable-path-or-empty = $(call lookup,path) 160 # Usage: absolute-executable-path-or-empty = $(call get-executable,path) 171 # get-supplied-or-default-executable 173 # Usage: absolute-executable-path-or-empty = $(call get-executable-or-default,variable,default) 175 define get-executable-or-default
|
/external/v8/test/webkit/fast/js/kde/ |
md5-1.js | 4 // Redistribution and use in source and binary forms, with or without 11 // documentation and/or other materials provided with the distribution. 14 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 16 // DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY 17 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 18 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 19 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 20 // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THI 108 function or(a,b) { function [all...] |
/bionic/libc/kernel/uapi/drm/ |
msm_drm.h | 82 uint32_t or; member in struct:drm_msm_gem_submit_reloc
|