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

12

/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/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"
172 } else if (matches(*argv, "or") == 0) {
175 fprintf(stderr, "Illegal \"or\"\n");
316 __u32 or = (mask & val) ^ val; local
323 if (or != 0)
324 fprintf(f, "or 0x%.8x ", or);
/external/libpcap/
H A Dgrammar.y6 * 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
159 %type <blk> and or paren not null prog
221 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
222 | expr or id { gen_or($1.b, $3.b); $$ = $3; }
226 or: OR { $$ = $<blk>0; } label
287 | qid or id { gen_or($1.b, $3.b); $$ = $3; }
473 | atmlistvalue or atmfieldvalu
[all...]
/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/src/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) */
/external/guava/src/com/google/common/base/
H A DPredicates.java10 * Unless required by applicable law or agreed to in writing, software
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
140 public static <T> Predicate<T> or( method in class:Predicates
154 public static <T> Predicate<T> or(Predicate<? super T>... components) { method in class:Predicates
164 public static <T> Predicate<T> or(Predicate<? super T> first, method in class:Predicates
172 * tested {@code equals()} the given target or both are null.
313 /** @see Predicates#or(Iterable) */
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.
28 * Determines a true or false value for any Java {@code char} value, just as
72 .or(inRange('\u2000', '\u200a'));
84 .or(inRange('\u2000', '\u2006'))
85 .or(inRange('\u2008', '\u200a'));
106 digit = digit.or(inRange(base, (char) (base + 9)));
119 .or(inRange('\u001c', '\u0020'))
120 .or(is('\u1680'))
121 .or(i
586 public CharMatcher or(CharMatcher other) { method in class:CharMatcher
606 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher.Or
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DEscapingEvaluator.java10 * 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));
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/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java3 * or more contributor license agreements. See the NOTICE file
12 * Unless required by applicable law or agreed to in writing, software
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
80 * @param errorHandler Error listener where messages will be sent, or null
111 * @throws TransformerException if there is a syntax or other error.
126 expr = or(opPos); break;
207 * @throws TransformerException if there is a syntax or other error.
229 * @throws TransformerException if syntax or other error occurs.
243 * Compile an 'or' operation.
251 protected Expression or(in method in class:Compiler
[all...]
/external/dhcpcd/
H A Dconfigure.c6 * Redistribution and use in source and binary forms, with or without
13 * documentation and/or other materials provided with the distribution.
640 struct rt *nrs = NULL, *dnr, *or, *rt, *rtn, *rtl, *lrt = NULL; local
659 if ((or = find_route(routes, rt, &rtl, NULL))) {
660 if (or->iface != ifp ||
661 rt->gate.s_addr != or->gate.s_addr)
663 if (c_route(or, rt, ifp) != 0)
667 rtl->next = or->next;
669 routes = or->next;
670 free(or);
[all...]
/external/easymock/src/org/easymock/
H A DEasyMock.java10 * 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
353 * Expects an int argument greater than or equa
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/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
65 * Similarly, the complex expectation methods ({@code #and}, {@code #or}, and {@code not}) take
75 * expectation methods, and not just any random method that returns a {@literal byte} or even a
194 * {@code null} or {@code false} for unexpected invocations.
216 * {@code null} or {@code false} for unexpected invocations.
247 * or according to parameter expectation criteria. Some examples of parameter expectation
250 * {@link #or(boolean, boolean)}, and {@link #not(double)}.
411 * Expects any {@code java.lang.Object} (or subclass) argument as a parameter to a mocked method.
429 * Expects a {@code Comparable} argument greater than or equa
1278 public static boolean or(boolean first, boolean second) { method in class:AndroidMock
1304 public static byte or(byte first, byte second) { method in class:AndroidMock
1329 public static char or(char first, char second) { method in class:AndroidMock
1355 public static double or(double first, double second) { method in class:AndroidMock
1381 public static float or(float first, float second) { method in class:AndroidMock
1407 public static int or(int first, int second) { method in class:AndroidMock
1433 public static long or(long first, long second) { method in class:AndroidMock
1459 public static short or(short first, short second) { method in class:AndroidMock
1485 public static <T> T or(T first, T second) { method in class:AndroidMock
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java368 * mask as a byte array or an empty <code>Set</code>.
394 byte[] ip = or(minMax[0], minMax[2]);
395 byte[] subnetmask = or(subnetmask1, subnetmask2);
736 // is sub domain or the same
1416 // in sub domain or domain
1704 private static byte[] or(byte[] ip1, byte[] ip2) method in class:PKIXNameConstraintValidator
1829 * Stringifies an IPv4 or v6 address with subnet mask.
/external/tremolo/Tremolo/
H A Dbitwise.c6 * Redistribution and use in source and binary forms, with or without
14 * in the documentation and/or other materials provided with the
18 * endorse or promote products derived from this software without
175 /* we've either met the end of decode, or gone past it. halt
364 ogg_reference *or; variable
372 int getbyte(ogg_reference *or,int position){ argument
373 while(or && position>=or->length){
374 position-=or->length;
375 or
390 ogg_reference *or=ogg_buffer_alloc(bs,64); local
500 ogg_buffer_length(ogg_reference *or) argument
509 ogg_buffer_extend(ogg_reference *or,long bytes) argument
520 ogg_buffer_posttruncate(ogg_reference *or,long pos) argument
724 ogg_reference *or=NULL,*orl=NULL; local
[all...]
H A Dframing.c6 * Redistribution and use in source and binary forms, with or without
14 * in the documentation and/or other materials provided with the
18 * endorse or promote products derived from this software without
128 ogg_reference *or; local
133 or=bs->unused_references;
134 bs->unused_references=or->next;
137 or=_ogg_malloc(sizeof(*or));
140 or->begin=0;
141 or
150 ogg_reference *or=_fetch_ref(bs); local
156 ogg_buffer_realloc(ogg_reference *or,long bytes) argument
166 _ogg_buffer_mark_one(ogg_reference *or) argument
171 ogg_buffer_mark(ogg_reference *or) argument
181 ogg_buffer_sub(ogg_reference *or,long length) argument
206 ogg_buffer_dup(ogg_reference *or) argument
237 ogg_reference *or=*tail; local
290 ogg_buffer_release_one(ogg_reference *or) argument
311 ogg_buffer_release(ogg_reference *or) argument
319 ogg_buffer_pretruncate(ogg_reference *or,long pos) argument
334 ogg_buffer_walk(ogg_reference *or) argument
375 oggbyte_init(oggbyte_buffer *b,ogg_reference *or) argument
667 _checksum(ogg_reference *or, int bytes) argument
[all...]
/external/libxml2/
H A Dpattern.c18 * - making clear how pattern starting with / or . need to be handled,
197 * Returns the newly allocated xmlPatternPtr or NULL in case of error
280 * @dict: the inherited dictionary or NULL
282 * with [NULL, NULL] or NULL if no namespace is used
286 * Returns the newly allocated xmlPatParserContextPtr or NULL in case of error
408 * remove the leading // for //a or .//a
746 * Returns the Literal parsed or NULL
814 * Returns the Name parsed or NULL
852 * Returns the Name parsed or NULL
892 * Returns the Name parsed or NUL
2358 const xmlChar *or, *start; local
[all...]
/external/v8/benchmarks/
H A Dcrypto.js9 * distribute, sublicense, and/or sell copies of the Software, and to
14 * included in all copies or substantial portions of the Software.
451 // r != q, this != m. q or r may be null.
887 // (public) returns index of lowest 1-bit (or -1 if none)
1139 if(is1) { // ret == 1, don't bother squaring or multiplying it
1311 BigInteger.prototype.or = bnOr;
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js9 * distribute, sublicense, and/or sell copies of the Software, and to
14 * included in all copies or substantial portions of the Software.
443 // r != q, this != m. q or r may be null.
879 // (public) returns index of lowest 1-bit (or -1 if none)
1131 if(is1) { // ret == 1, don't bother squaring or multiplying it
1303 BigInteger.prototype.or = bnOr;

Completed in 2220 milliseconds

12