Searched refs:or (Results 51 - 75 of 765) sorted by relevance

1234567891011>>

/external/ant-glob/
H A DNOTICE13 * "Licensor" shall mean the copyright owner or entity authorized by
17 * other entities that control, are controlled by, or are under common
19 * "control" means (i) the power, direct or indirect, to cause the
20 * direction or management of such entity, whether by contract or
21 * otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 * outstanding shares, or (iii) beneficial ownership of such entity.
24 * "You" (or "Your") shall mean an individual or Lega
[all...]
/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...]
H A DCharMatcher.java10 * 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
77 .or(inRange('\u2000', '\u200a'))
89 .or(inRange('\u2000', '\u2006'))
90 .or(inRange('\u2008', '\u200a'))
111 digit = digit.or(inRange(base, (char) (base + 9)));
129 * inRange('a', 'z').or(inRange('A', 'Z'))}.
138 * Determines whether a character is a letter or digit according to {@link
172 inRange('\u0000', '\u001f').or(inRang
614 public CharMatcher or(CharMatcher other) { method in class:CharMatcher
634 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher.Or
[all...]
/external/valgrind/main/memcheck/tests/
H A Dwritev1.stderr.exp5 Address 0x........ is not stack'd, malloc'd or (recently) free'd
11 Address 0x........ is not stack'd, malloc'd or (recently) free'd
17 Address 0x........ is not stack'd, malloc'd or (recently) free'd
H A Dbadjump2.stderr.exp4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
H A Dorigin4-many.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
7 Conditional jump or move depends on uninitialised value(s)
13 Conditional jump or move depends on uninitialised value(s)
19 Conditional jump or move depends on uninitialised value(s)
25 Conditional jump or move depends on uninitialised value(s)
31 Conditional jump or move depends on uninitialised value(s)
37 Conditional jump or move depends on uninitialised value(s)
43 Conditional jump or move depends on uninitialised value(s)
H A Dorigin1-yes.stderr.exp3 Conditional jump or move depends on uninitialised value(s)
10 Conditional jump or move depends on uninitialised value(s)
17 Conditional jump or move depends on uninitialised value(s)
24 Conditional jump or move depends on uninitialised value(s)
32 Conditional jump or move depends on uninitialised value(s)
40 Conditional jump or move depends on uninitialised value(s)
51 Conditional jump or move depends on uninitialised value(s)
/external/webkit/Tools/Scripts/
H A Densure-valid-python4 # Redistribution and use in source and binary forms, with or without
12 # documentation and/or other materials provided with the distribution.
14 # its contributors may be used to endorse or promote products derived
44 # We could use a consistent download location, like the source or build directory.
51 # Will exit 0 if Python is 2.5 or greater, non-zero otherwise.
104 downloadFileToPath($pythonURL, $localPath) or die "Failed to download $pythonURL";
105 checkMD5($localPath, $pythonMD5) or die "MD5 check failed on $localPath";
111 downloadAndMountMacPythonDMG($macPythonURL, $macPythonMD5) or die "Failed to download and mount disk image.";
115 unmountDMG($mountPoint) or die "Failed to unmount disk image from $mountPoint";
146 installMacPython() or di
[all...]
H A Dcheck-for-inappropriate-files-in-framework5 # Redistribution and use in source and binary forms, with or without
12 # documentation and/or other materials provided with the distribution.
26 base_directory = ENV['TARGET_BUILD_DIR'] or throw "Unable to find TARGET_BUILD_DIR in the environment!"
27 project_name = ENV['PROJECT_NAME'] or throw "Unable to find PROJECT_NAME in the environment!"
H A Dgdb-safari5 # Redistribution and use in source and binary forms, with or without
13 # documentation and/or other materials provided with the distribution.
15 # its contributors may be used to endorse or promote products derived
53 exec $gdbPath, @architectureFlags, "--arg", $safariPath, @ARGV or die;
H A Dgenerate-qt-inspector-resource5 # Redistribution and use in source and binary forms, with or without
13 # documentation and/or other materials provided with the distribution.
15 # its contributors may be used to endorse or promote products derived
42 open(WEBKIT_QRC, ">Source/WebCore/inspector/front-end/WebKit.qrc") or die;
H A Drun-webkit-tests4 # Redistribution and use in source and binary forms, with or without
12 # in the documentation and/or other materials provided with the
15 # contributors may be used to endorse or promote products derived from
84 exec $harnessPath ($harnessPath, @ARGV) or die "Failed to execute $harnessPath";
/external/guava/guava-tests/test/com/google/common/base/
H A DPredicatesTest.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190 .addEqualityGroup(Predicates.or())
214 .addEqualityGroup(Predicates.or(NEVER_REACHED))
238 .addEqualityGroup(Predicates.or(TRUE, NEVER_REACHED))
263 .addEqualityGroup(Predicates.or(TRUE, isOdd(), NEVER_REACHED))
290 .addEqualityGroup(Predicates.or(TRUE, NEVER_REACHED))
334 * Tests for all the different flavors of Predicates.or().
339 assertEvalsToFalse(Predicates.or());
345 .addEqualityGroup(Predicates.or(), Predicate
[all...]
/external/libyuv/
H A Dsetup_env.bat1 :: This script must not rely on any external tools or PATH values.
/external/llvm/autoconf/m4/
H A Dheader_mmap_anonymous.m419 AC_DEFINE([HAVE_MMAP_ANONYMOUS],[1],[Define if mmap() uses MAP_ANONYMOUS to map anonymous pages, or undefine if it uses MAP_ANON])
H A Dneed_dev_zero_for_mmap.m43 # as the file descriptor or not.
16 [Define if /dev/zero should be used when mapping RWX memory, or undefine if its not necessary])
/external/llvm/projects/sample/autoconf/m4/
H A Dheader_mmap_anonymous.m419 AC_DEFINE([HAVE_MMAP_ANONYMOUS],[1],[Define if mmap() uses MAP_ANONYMOUS to map anonymous pages, or undefine if it uses MAP_ANON])
H A Dneed_dev_zero_for_mmap.m43 # as the file descriptor or not.
16 [Define if /dev/zero should be used when mapping RWX memory, or undefine if its not necessary])
/external/valgrind/main/gdbserver_tests/
H A DmcinfcallRU.stderr.exp2 main ready to sleep and/or burn
/external/valgrind/main/memcheck/tests/amd64-linux/
H A Ddefcfaexpr.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
/external/clang/
H A DMakefile100 $(Verb) etags `find . -type f -name '*.h' -or -name '*.cpp' | \
105 -or -name '*.def' \
106 -or -name '*.td' \
107 -or -name '*.h' > cscope.files
/external/llvm/test/MC/ELF/
H A Drelax-arith.s4 // 16 or 32 bit immediate values.
27 // CHECK: 'or'
29 .section or
30 or $foo, %bx
32 or $foo, %ebx
34 or $foo, %rbx
/external/mesa3d/docs/
H A DMESA_set_3dfx_mode.spec27 OpenGL 1.0 or later is required.
28 GLX 1.0 or later is required.
32 The Mesa Glide driver allows full-screen rendering or rendering into
56 mode or rendering into an X window. An application can switch between
62 rendering or GLX_3DFX_FULLSCREEN_MODE_MESA to indicate full-screen mode.
65 normally. GL_FALSE is returned if <mode> is invalid or if the Glide
/external/stlport/test/unit/
H A Dmacro_checks.cpp22 # error Weird CHAR_MIN or CHAR_MAX macro values.
34 # error Weird INT_MIN or INT_MAX macro values.
46 # error Weird LONG_MIN or LONG_MAX macro values.
58 # error Weird SCHAR_MIN or SCHAR_MAX macro values.
70 # error Weird SHRT_MIN or SHRT_MAX macro values.
82 # error Weird WCHAR_MIN or WCHAR_MAX macro value.
/external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
H A DBigIntegerOrTest.java2 * 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.
28 * Method: or
42 BigInteger result = aNumber.or(bNumber);
62 BigInteger result = aNumber.or(bNumber);
82 BigInteger result = aNumber.or(bNumber);
102 BigInteger result = aNumber.or(bNumber);
122 BigInteger result = aNumber.or(bNumber);
142 BigInteger result = aNumber.or(bNumbe
[all...]

Completed in 483 milliseconds

1234567891011>>