HomeSort by relevance Sort by last modified time
    Searched full:either (Results 1 - 25 of 67108) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/dalvik/src/main/java/dalvik/annotation/
package.html 4 Defines some annotations that are used within the Android system, either
  /external/jsr305/
Readme.rtf 7 \f0\fs24 \cf0 After installing maven, do the update and at the main directory, run either\
  /cts/tools/signature-tools/src/signature/model/
ITypeDefinition.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * definition is either an {@link ITypeVariableDefinition} or an
  /external/wpa_supplicant_6/
README 8 license. Either license may be used at your option.
11 This package may include either wpa_supplicant, hostapd, or both. See
  /frameworks/av/services/audioflinger/
SchedulingPolicyService.h 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 // The priority parameter is currently restricted to either 1 or 2.
  /frameworks/base/core/java/android/database/sqlite/
SQLiteAbortException.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * This can happen either through a call to ABORT in a trigger,
  /frameworks/base/graphics/java/android/graphics/
CornerPathEffect.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * Transforms geometries that are drawn (either STROKE or FILL styles) by
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
PendingAttribute.java 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
22 * An attribute is either a bigram or a shortcut.
  /external/clang/test/Preprocessor/
macro_misc.c 15 // This either.
  /external/kernel-headers/original/asm-mips/dec/
system.h 10 * as published by the Free Software Foundation; either version
  /external/kernel-headers/original/asm-mips/
irq_regs.h 4 * as published by the Free Software Foundation; either version
  /external/kernel-headers/original/linux/netfilter/
xt_connmark.h 9 * the Free Software Foundation; either version 2 of the License, or
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_GetAudioStatus.3 20 Returns either \fBSDL_AUDIO_STOPPED\fP, \fBSDL_AUDIO_PAUSED\fP or \fBSDL_AUDIO_PLAYING\fP depending on the current audio state\&.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_connmark.h 9 * the Free Software Foundation; either version 2 of the License, or
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_connmark.h 9 * the Free Software Foundation; either version 2 of the License, or
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_connmark.h 9 * the Free Software Foundation; either version 2 of the License, or
  /external/icu4c/common/unicode/
std_string.h 44 * Either std or empty.
51 * Either std:: or empty.
61 * Either "using namespace std;" or empty.
  /external/javassist/src/main/javassist/tools/reflect/
CannotReflectException.java 11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
23 * a class that is either an interface or a subclass of
24 * either ClassMetaobject or Metaobject.
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/java/
java-tree.def 9 Software Foundation; either version 3, or (at your option) any later
29 /* Same as COMPARE_EXPR, but if either value is NaN, the result is -1. */
31 /* Same as COMPARE_EXPR, but if either value is NaN, the result is 1. */
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/java/
java-tree.def 9 Software Foundation; either version 3, or (at your option) any later
29 /* Same as COMPARE_EXPR, but if either value is NaN, the result is -1. */
31 /* Same as COMPARE_EXPR, but if either value is NaN, the result is 1. */
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/java/
java-tree.def 9 Software Foundation; either version 3, or (at your option) any later
29 /* Same as COMPARE_EXPR, but if either value is NaN, the result is -1. */
31 /* Same as COMPARE_EXPR, but if either value is NaN, the result is 1. */
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/java/
java-tree.def 9 Software Foundation; either version 3, or (at your option) any later
29 /* Same as COMPARE_EXPR, but if either value is NaN, the result is -1. */
31 /* Same as COMPARE_EXPR, but if either value is NaN, the result is 1. */
  /external/icu4c/common/
locbased.h 52 * object. Either the valid or the actual locale may be
54 * @param type either ULOC_VALID_LOCALE or ULOC_ACTUAL_LOCALE
62 * object. Either the valid or the actual locale may be
64 * @param type either ULOC_VALID_LOCALE or ULOC_ACTUAL_LOCALE
72 * object. If either parameter is zero, it is ignored.
  /external/clang/test/CXX/class/class.union/
p1.cpp 105 template <class A, class B> struct Either {
112 Either(const A& a) : tag(true), a(a) {}
113 Either(const B& b) : tag(false), b(b) {}
117 Either<int,Virtual> virt(0); // expected-note {{in instantiation of template}}
118 Either<int,VirtualBase> vbase(0); // expected-note {{in instantiation of template}}
119 Either<int,Ctor> ctor(0); // expected-note {{in instantiation of template}}
120 Either<int,CopyCtor> copyctor(0); // expected-note {{in instantiation of template}}
121 Either<int,CopyAssign> copyassign(0); // expected-note {{in instantiation of template}}
122 Either<int,Dtor> dtor(0); // expected-note {{in instantiation of template}}
123 Either<int,Okay> okay(0)
    [all...]
  /external/clang/test/SemaCXX/
discrim-union.cpp 67 class either { class
74 constexpr either(a<U> &&t) : function in class:either
80 //~either() { impl.destroy(elem); }
101 typedef either<int, char, double> icd;
114 constexpr either<const icd*, non_triv> icd4 = a<const icd*>(&icd2);
115 constexpr either<const icd*, non_triv> icd5 = a<non_triv>();

Completed in 2442 milliseconds

1 2 3 4 5 6 7 8 91011>>