HomeSort by relevance Sort by last modified time
    Searched defs:or (Results 26 - 50 of 255) sorted by null

12 3 4 5 6 7 8 91011

  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
iso646.h 5 GCC is free software; you can redistribute it and/or modify
7 the Free Software Foundation; either version 3, or (at your option)
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 #define or || macro
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
iso646.h 8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
37 #define or || macro
    [all...]
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
iso646.h 8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
37 #define or || macro
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
iso646.h 8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
37 #define or || macro
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LookaheadSet.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
64 public LookaheadSet or(LookaheadSet other) { method in class:LookaheadSet
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntSet.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
59 IntSet or(IntSet a); method in interface:IntSet
    [all...]
  /external/guava/guava/src/com/google/common/base/
Absent.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.
50 @Override public T or(T defaultValue) { method in class:Absent
51 return checkNotNull(defaultValue, "use Optional.orNull() instead of Optional.or(null)");
55 @Override public Optional<T> or(Optional<? extends T> secondChoice) { method in class:Absent
59 @Override public T or(Supplier<? extends T> supplier) { method in class:Absent
Optional.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.
32 * instance of this type either contains a non-null reference, or contains nothing (in
54 * <p>A common alternative to using this class is to find or create a suitable
58 * <p>This class is not intended as a direct analogue of any existing "option" or "maybe"
107 * absent, use {@link #or(Object)} or {@link #orNull} instead.
119 * <p>Note about generics: The signature {@code public T or(T defaultValue)} is overly
120 * restrictive. However, the ideal signature, {@code public <S super T> S or(S)}, is not lega
143 public abstract T or(T defaultValue); method in class:Optional
149 public abstract Optional<T> or(Optional<? extends T> secondChoice); method in class:Optional
158 public abstract T or(Supplier<? extends T> supplier); method in class:Optional
    [all...]
Present.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.
47 @Override public T or(T defaultValue) { method in class:Present
48 checkNotNull(defaultValue, "use Optional.orNull() instead of Optional.or(null)");
52 @Override public Optional<T> or(Optional<? extends T> secondChoice) { method in class:Present
57 @Override public T or(Supplier<? extends T> supplier) { method in class:Present
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.
32 * Determines a true or false value for any Java {@code char} value, just as {@link Predicate} does
167 * inRange('a', 'z').or(inRange('A', 'Z'))}.
176 * Determines whether a character is a letter or digit according to {@linkplain
214 .or(inRange('\u007f', '\u009f'))
317 @Override public CharMatcher or(CharMatcher other) {
400 @Override public CharMatcher or(CharMatcher other) {
429 @Override public CharMatcher or(CharMatcher other) method
461 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher
    [all...]
  /external/guava/guava-gwt/src/com/google/common/base/
GwtSerializationDependencies.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.
53 @Override public T or(T defaultValue) { method in class:GwtSerializationDependencies.OptionalDependencies
57 @Override public Optional<T> or(Optional<? extends T> secondChoice) { method in class:GwtSerializationDependencies.OptionalDependencies
61 @Override public T or(Supplier<? extends T> supplier) { method in class:GwtSerializationDependencies.OptionalDependencies
  /external/libdrm/freedreno/
freedreno_ringbuffer.h 10 * and/or sell copies of the Software, and to permit persons to whom the
14 * paragraph) shall be included in all copies or substantial portions of the
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
73 uint32_t or; member in struct:fd_reloc
    [all...]
  /external/lldb/test/lang/cpp/class_static/
TestStaticVariables.py 23 @expectedFailureLinux('llvm.org/pr15261', failing_compilers) # lldb on Linux does not display the size of (class or file)static arrays class in class:StaticVariableTestCase
  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.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.
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 retur
209 public static void or(int[] a, int[] b) { method in class:Bits
    [all...]
BitIntSet.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.
75 Bits.or(bits, o.bits);
  /dalvik/dx/src/com/android/dx/util/
Bits.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.
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 retur
209 public static void or(int[] a, int[] b) { method in class:Bits
    [all...]
BitIntSet.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.
75 Bits.or(bits, o.bits);
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BitSet.pm 95 sub or : method { ## no critic (Subroutines::ProhibitBuiltinHomonyms) subroutine
278 =item C<or>
284 Or this element into this set (grow as necessary to accommodate).
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 Per
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Bits.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.
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 retur
209 public static void or(int[] a, int[] b) { method in class:Bits
    [all...]
BitIntSet.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.
75 Bits.or(bits, o.bits);
  /external/iproute2/tc/
f_flow.c 4 * 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/
SpecificLongValue.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
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
222 new CompositeLongValue(other, CompositeLongValue.OR, this);
UnknownLongValue.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
125 public LongValue or(LongValue other) method in class:UnknownLongValue
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/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.
30 * Determines a true or false value for any Java {@code char} value, just as {@link Predicate} does
165 * inRange('a', 'z').or(inRange('A', 'Z'))}.
174 * Determines whether a character is a letter or digit according to {@linkplain
212 .or(inRange('\u007f', '\u009f'))
315 @Override public CharMatcher or(CharMatcher other) {
398 @Override public CharMatcher or(CharMatcher other) {
427 @Override public CharMatcher or(CharMatcher other) method
453 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
BenchmarkHelpers.java 9 * Unless required by applicable law or agreed to in writing, software distributed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11 * or implied. See the License for the specific language governing permissions and limitations under
64 HEX_16(CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'F')), "0123456789ABCDEF"), enum constant in enum:BenchmarkHelpers.SampleMatcherConfig
66 .or(CharMatcher.inRange('A', 'F')).or(CharMatcher.inRange('a', 'f')), enum constant in enum:BenchmarkHelpers.SampleMatcherConfig
69 .or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.anyOf("äöüßÄÖÜ")), enum constant in enum:BenchmarkHelpers.SampleMatcherConfig

Completed in 407 milliseconds

12 3 4 5 6 7 8 91011