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

1 2 3 45 6 7 8 910

  /ndk/build/core/
default-build-commands.mk 12 # Return the list of object, static libraries and shared libraries as they
16 # we always put libgcc _after_ all static libraries and _before_ shared
20 # and this causes binary compatibility problems when they come from
21 # system libraries (e.g. libc.so and others).
30 TARGET-get-linker-objects-and-libraries = \
39 # the stack and the heap.
64 # and static libraries, but before any other library in the link
65 # command line when generating shared libraries and executables.
85 # ld.gold (default for ARM and X86) and ld.mcld don't emulate this buggy behavior
    [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...]
BitSet.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
41 * as opposed to oring and anding "in place". Further, a number of
44 * and, because it is final, I cannot subclass to add functionality
151 public IntSet and(IntSet a) { method in class:BitSet
    [all...]
  /external/iproute2/doc/
ip-cref.tex 28 However, the document is self-contained and the reader, provided they have a
30 and examples to understand and configure Linux-2.2 IP and IPv6
34 and options, decrypting \verb|ip| output and containing a few examples.
35 More voluminous examples and some topics, which require more elaborate
39 bugs and design drawbacks. They may be skipped at the first reading.
49 begin with the character \verb|'-'| and may be used in either long or abbreviated
55 --- print the version of the \verb|ip| utility and exit
    [all...]
  /external/libvorbis/doc/
01-introduction.tex 4 \section{Introduction and Description} \label{vorbis:spec:intro}
20 it is in the same league as MPEG-2 and MPC. Similarly, the 1.0
21 encoder can encode high-quality CD and DAT rate stereo at below 48kbps
23 lower and higher sample rates (from 8kHz telephony to 192kHz digital
24 masters) and a range of channel representations (monaural,
33 transient response and reproduction using a transform better suited to
40 encoder and simple, low-complexity decoder. Vorbis decode is
52 dividing it into individual frames and compressing these frames into
55 them, and reassembles the frames into a facsimile of the original
56 audio stream. Vorbis is a free-form variable bit rate (VBR) codec and packets have n
    [all...]
  /libcore/luni/src/main/java/java/util/
BitSet.java 14 * See the License for the specific language governing permissions and
31 * Each element is either true or false. A {@code BitSet} is created with a given size and grows
150 // The RI doesn't use Arrays.hashCode, and explicitly specifies this algorithm.
273 // first fill in the first and last indexes in the new BitSet
447 * Returns true if {@code this.and(bs)} is non-empty, but may be faster than computing that.
463 public void and(BitSet bs) { method in class:BitSet
518 * unrelated to the length of the {@code BitSet}, and not generally useful.
526 * Returns the number of bits up to and including the highest bit set. This is unrelated to
684 // The bulk get would mutate LongBuffer (even if we reset position later), and it's not
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 15 * See the License for the specific language governing permissions and
43 import org.apache.xpath.operations.And;
69 * of operation codes (op map) and then builds from that into an Expression
77 * Construct a Compiler object with a specific ErrorListener and
97 * Construct a Compiler instance that has a null error listener and a
128 expr = and(opPos); break;
200 * Bottle-neck compilation of an operation with left and right operands.
257 * Compile an 'and' operation.
261 * @return reference to {@link org.apache.xpath.operations.And} instance.
265 protected Expression and(int opPos) throws TransformerExceptio method in class:Compiler
    [all...]
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 240 // This is a bit weird, but the alternative tokens aren't keywords, and this
242 extern int __identifier(and) r; // expected-error {{cannot convert '&&' token to an identifier}}
333 //expected-warning@+1 {{C++ operator 'and' (aka '&&') used as a macro name}}
334 #define and foo macro
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 7 return true and false;
11 #ifdef and
14 // The second 'and' is a valid C++ operator name for '&&'.
15 #if defined and and defined(and)
19 // (operators like "and" aren't normally, the rest always is.)
20 #define and macro
105 and
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 13 * See the License for the specific language governing permissions and
64 assertSame(WHATEVER, CharMatcher.ANY.and(WHATEVER));
67 assertSame(CharMatcher.NONE, CharMatcher.NONE.and(WHATEVER));
71 // The rest of the behavior of ANY and NONE will be covered in the tests for
74 // The next tests require ICU4J and have, at least for now, been sliced out
90 // We're testing the is(), isNot(), anyOf(), noneOf() and inRange() methods
173 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a");
176 doTestNoMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "\tAz()");
203 doTestAllMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "0123456789");
413 // Try a few different matchers which all match '-' and not 'x
    [all...]
PredicatesTest.java 13 * See the License for the specific language governing permissions and
57 /** Instantiable predicate with reasonable hashCode() and equals() methods. */
177 * Tests for all the different flavors of Predicates.and().
182 assertEvalsToTrue(Predicates.and());
188 .addEqualityGroup(Predicates.and(), Predicates.and())
189 .addEqualityGroup(Predicates.and(FALSE))
197 checkSerialization(Predicates.and());
202 assertEvalsLikeOdd(Predicates.and(isOdd()));
207 Object[] notEqualObjects = {Predicates.and(NEVER_REACHED, FALSE)}
    [all...]
  /external/pixman/pixman/
pixman-arm-simd-asm.h 5 * Permission to use, copy, modify, distribute, and sell this software and its
7 * the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of the copyright holders not be used in
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
29 * Because the alignment of pixel data to cachelines, and even the number of
30 * cachelines per row can vary from row to row, and because of the need to
31 * preload each scanline once and only once, this prefetch strategy treats
51 * this is the "narrow" case, and there is no attempt to align writes t
448 PF and, WK0, X, #pix_per_block-1 variable
748 PF and, WK0, WK0, #15 variable
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 104 * <li>If el is a number and el2 is a number return a BitSet containing
105 * the numbers between el and el2 (inclusive).</li>
189 // walk set and add each interval
206 * Clone this BitSet and then {@link #andInPlace} with a.
210 and: function(a) {
217 * Perform a logical AND of this target BitSet with the argument BitSet.
220 * and only if it both initially had the value true and the corresponding
300 * The result is true if and only if the argument is not null and is
    [all...]
  /external/chromium_org/chrome/third_party/mock4js/
mock4js.js 51 object.and = function() {
157 msg += " and has been invoked";
187 if(this._hasBeenInvoked) desc+=" and has been invoked";
261 return "and("+Mock4JSUtil.join(this._constraints)+")";
  /libcore/luni/src/main/java/java/math/
BigInteger.java 14 * See the License for the specific language governing permissions and
31 * cryptography, such as the generation of large prime numbers and computation
258 * Constructs a new {@code BigInteger} instance with the given sign and
267 * the sign is zero and the magnitude contains non-zero entries.
338 // ... and then increment it back because we always drop one too many
683 * @param value value to be and'ed with {@code this}.
686 public BigInteger and(BigInteger value) { method in class:BigInteger
689 return Logical.and(this, value);
725 * x.and(value.not())}.
730 * @param value value to be not'ed and then and'ed with {@code this}
    [all...]
  /build/core/
definitions.mk 13 # See the License for the specific language governing permissions and
35 # target, and the INSTALLED variable contains the LOCAL_INSTALLED_MODULE.
36 # Some targets may have multiple files listed in the BUILT and INSTALLED
65 # Full path to all asm, C, C++, lex and yacc generated C files.
84 # Target and host installed module's dependencies on shared libraries.
92 # They are escaped and quoted so can be passed safely to a bash command.
111 ## and empty otherwise
186 find -L $(1) -name "*.java" -and -not -name ".*") \
208 find -L $(1) -name "*.c" -and -not -name ".*") \
230 find -L $(1) -name "I*.aidl" -and -not -name ".*")
    [all...]
  /external/guava/guava-tests/lib/
libtruth.jar 
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Parsing.py 162 #and_test: not_test ('and' not_test)*
165 #return p_binop_expr(s, ('and',), p_not_test)
166 return p_rassoc_binop_expr(s, ('and',), p_not_test)
296 elif sy == 'IDENT' and s.systring == "sizeof":
308 if (not is_memslice and not is_template and not is_const
309 and base_type.name is None):
356 if s.sy != ')' and s.sy not in statement_terminators:
376 if s.systring == 'new' and s.peek()[0] == 'IDENT':
452 if len(positional_args) == 1 and not star_arg
1407 if is_cimport and s.systring in imported_name_kinds: namespace
    [all...]
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/2.4/
easymock-2.4.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
crypto.js 6 * a copy of this software and associated documentation files (the
9 * distribute, sublicense, and/or sell copies of the Software, and to
13 * The above copyright notice and this permission notice shall be
16 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
23 * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
29 * and disclaimer.
74 // am1: use a single mult and divide to get the high bits,
88 // am2 avoids a big mult-and-extract completely.
202 // (protected) set from string and radi
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js 6 * a copy of this software and associated documentation files (the
9 * distribute, sublicense, and/or sell copies of the Software, and to
13 * The above copyright notice and this permission notice shall be
16 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
23 * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
29 * and disclaimer.
66 // am1: use a single mult and divide to get the high bits,
80 // am2 avoids a big mult-and-extract completely.
194 // (protected) set from string and radi
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js 6 * a copy of this software and associated documentation files (the
9 * distribute, sublicense, and/or sell copies of the Software, and to
13 * The above copyright notice and this permission notice shall be
16 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
23 * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
29 * and disclaimer.
66 // am1: use a single mult and divide to get the high bits,
80 // am2 avoids a big mult-and-extract completely.
194 // (protected) set from string and radi
    [all...]

Completed in 849 milliseconds

1 2 3 45 6 7 8 910