Searched defs:or (Results 1 - 25 of 83) sorted by relevance

1234

/external/mesa3d/src/glsl/
H A DAndroid.gen.mk10 # and/or sell copies of the Software, and to permit persons to whom the
14 # in all copies or substantial portions of the Software.
49 define local-l-or-ll-to-c-or-cpp
74 $(call local-l-or-ll-to-c-or-cpp)
80 $(call local-l-or-ll-to-c-or-cpp)
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBitSet.as6 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
70 public function or(a:BitSet):BitSet { function
79 /** or this element into this set (grow as necessary to accommodate) */
/external/clang/lib/Headers/
H A Diso646.h8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * all copies or substantial portions of the Software.
37 #define or || macro
/external/junit/src/org/junit/internal/matchers/
H A DCombinableMatcher.java31 public CombinableMatcher<T> or(Matcher<? extends T> matcher) { method in class:CombinableMatcher
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java6 * 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
64 public LookaheadSet or(LookaheadSet other) { method in class:LookaheadSet
65 return new LookaheadSet(tokenTypeSet.or(other.tokenTypeSet));
H A DSemanticContext.java6 * 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
40 * an NFA configuration is valid. It's either a single predicate or
41 * a tree representing an operation tree such as: p1&&p2 or p1||p2.
80 public abstract boolean hasUserSemanticPredicate(); // user-specified sempred {}? or {}?=>
91 /** Is this a {...}?=> gating predicate or a normal disambiguating {..}?
109 /** sometimes predicates are known to be true or false; we need
111 * value like true or TRUE.
528 return SemanticContext.or(lef
644 public static SemanticContext or(SemanticContext a, SemanticContext b) { method in class:SemanticContext
[all...]
/external/lldb/test/lang/cpp/class_static/
H A DTestStaticVariables.py23 @expectedFailureLinux('llvm.org/pr15261', failing_compilers) # lldb on Linux does not display the size of (class or file)static arrays class in class:StaticVariableTestCase
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm95 sub or : method { ## no critic (Subroutines::ProhibitBuiltinHomonyms) subroutine
278 =item C<or>
306 These normally consist of either subroutines that may be exported, or methods
319 problem, one or more likely causes, and any suggested remedies.
327 meaning of any environment variables or properties that can be set. These
337 or must be installed separately.
343 This may be due to name conflicts in the interface, or competition for
344 system or program resources, or due to internal limitations of Perl
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java6 * 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
36 * are small, for example less than 500 or so, and w/o many ranges. For
59 IntSet or(IntSet a); method in interface:IntSet
H A DIntervalSet.java6 * 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
60 intervals = new ArrayList<Interval>(2); // most sets are 1 or 2 elements
121 // if we bump up against or overlap next, merge
166 // if we bump up against or overlap next, merge
209 /** Given the set of possible values (rather than, say UNICODE or MAXINT),
213 * 'this' is assumed to be either a subset or equal to vocabulary.
390 public IntSet or(IntSet a) { method in class:IntervalSet
H A DBitSet.java6 * 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
48 * Also seems like or() from util is wrong when size of incoming set is bigger
84 /** or this element into this set (grow as necessary to accommodate) */
371 public IntSet or(IntSet a) { method in class:BitSet
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DBits.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
107 * Returns whether or not the given bit set is empty, that is, whether
158 * Finds the lowest-order bit set at or after the given index in the
163 * @return {@code >= -1;} lowest-order bit set at or after {@code idx},
164 * or {@code -1} if there is no appropriate bit index to return
185 * Finds the lowest-order bit set at or after the given index in the
190 * @return {@code >= -1;} lowest-order bit set at or after {@code idx},
191 * or {@code -1} if there is no appropriate bit index to return
201 * {@code a.length} must be greater than or equa
209 public static void or(int[] a, int[] b) { method in class:Bits
[all...]
/external/mockito/src/org/mockito/
H A DAdditionalMatchers.java27 * Example of using logical and(), not(), or() matchers:
36 * //1 or 10
37 * mock.someMethod(or(eq(1), eq(10)));
47 * argument greater than or equal the given value.
60 * byte argument greater than or equal to the given value.
73 * double argument greater than or equal to the given value.
86 * float argument greater than or equal to the given value.
99 * int argument greater than or equal to the given value.
112 * long argument greater than or equal to the given value.
125 * short argument greater than or equa
712 public static boolean or(boolean first, boolean second) { method in class:AdditionalMatchers
729 public static <T> T or(T first, T second) { method in class:AdditionalMatchers
744 public static short or(short first, short second) { method in class:AdditionalMatchers
759 public static long or(long first, long second) { method in class:AdditionalMatchers
774 public static int or(int first, int second) { method in class:AdditionalMatchers
789 public static float or(float first, float second) { method in class:AdditionalMatchers
804 public static double or(double first, double second) { method in class:AdditionalMatchers
819 public static char or(char first, char second) { method in class:AdditionalMatchers
834 public static byte or(byte first, byte second) { method in class:AdditionalMatchers
[all...]
/external/chromium_org/tools/traceline/traceline/
H A Dstubs.asm75 or ecx, 0xffff label
76 or eax, 0xffff label
/external/guava/guava/src/com/google/common/base/
H A DOptional.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 * instance of this type either contains a non-null reference, or contains nothing (in
55 * <p>A common alternative to using this class is to find or create a suitable
59 * <p>This class is not intended as a direct analogue of any existing "option" or "maybe"
106 * absent, use {@link #or(Object)} or {@link #orNull} instead.
118 public abstract T or(T defaultValue); method in class:Optional
124 public abstract Optional<T> or(Optional<? extends T> secondChoice); method in class:Optional
132 public abstract T or(Supplie method in class:Optional
213 @Override public T or(T defaultValue) { method in class:Optional.Present
218 @Override public Optional<T> or(Optional<? extends T> secondChoice) { method in class:Optional.Present
223 @Override public T or(Supplier<? extends T> supplier) { method in class:Optional.Present
266 @Override public Object or(Object defaultValue) { method in class:Optional.Absent
271 @Override public Optional<Object> or(Optional<?> secondChoice) { method in class:Optional.Absent
275 @Override public Object or(Supplier<?> supplier) { method in class:Optional.Absent
[all...]
/external/iproute2/tc/
H A Df_flow.c4 * This program is free software; you can redistribute it and/or
7 * 2 of the License, or (at your option) any later version.
37 "OPS := [ or NUM | and NUM | xor NUM | rshift NUM | addend NUM ]\n"
173 } else if (matches(*argv, "or") == 0) {
176 fprintf(stderr, "Illegal \"or\"\n");
317 __u32 or = (mask & val) ^ val; local
324 if (or != 0)
325 fprintf(f, "or 0x%.8x ", or);
/external/proguard/src/proguard/evaluation/value/
H A DIntegerValue.java7 * 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 <cod
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...]
H A DLongValue.java7 * 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 greate
339 public LongValue or(SpecificLongValue other) method in class:LongValue
495 public LongValue or(ParticularLongValue other) method in class:LongValue
[all...]
H A DParticularIntegerValue.java7 * 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
H A DParticularLongValue.java7 * 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
H A DSpecificIntegerValue.java7 * 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
H A DSpecificLongValue.java7 * 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
124 public LongValue or(LongValue other) method in class:SpecificLongValue
126 return other.or(this);
218 public LongValue or(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java7 * 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
H A DUnknownLongValue.java7 * 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
125 public LongValue or(LongValue other) method in class:UnknownLongValue
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBitSet.java6 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
107 public BitSet or(BitSet a) { method in class:BitSet
116 /** or this element into this set (grow as necessary to accommodate) */

Completed in 2556 milliseconds

1234