HomeSort by relevance Sort by last modified time
    Searched refs:BASE (Results 26 - 50 of 151) sorted by null

12 3 4 5 6 7

  /external/clang/test/SemaCXX/
decl-init-ref.cpp 5 struct BASE {
13 class B : public BASE , public BASE1
ambig-user-defined-conversions.cpp 4 struct BASE {
11 struct B : public BASE, BASE1 {};
66 bool f(D d) { return !d; } // expected-error{{ambiguous conversion from derived class 'rdar8876150::D' to base class 'rdar8876150::A':}}
  /external/e2fsprogs/lib/ss/
mk_cmds.sh.in 43 BASE=`basename "$ROOT"`
58 rm -f "${BASE}.c"
59 mv -f "${TMP}" "${BASE}.c"
60 chmod -w "${BASE}.c"
  /frameworks/base/core/java/android/net/nsd/
NsdManager.java 161 private static final int BASE = Protocol.BASE_NSD_MANAGER;
164 public static final int DISCOVER_SERVICES = BASE + 1;
166 public static final int DISCOVER_SERVICES_STARTED = BASE + 2;
168 public static final int DISCOVER_SERVICES_FAILED = BASE + 3;
170 public static final int SERVICE_FOUND = BASE + 4;
172 public static final int SERVICE_LOST = BASE + 5;
175 public static final int STOP_DISCOVERY = BASE + 6;
177 public static final int STOP_DISCOVERY_FAILED = BASE + 7;
179 public static final int STOP_DISCOVERY_SUCCEEDED = BASE + 8;
182 public static final int REGISTER_SERVICE = BASE + 9
    [all...]
  /external/clang/include/clang/AST/
DeclVisitor.h 31 class Base {
40 #define DECL(DERIVED, BASE) \
50 #define DECL(DERIVED, BASE) \
51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
68 : public declvisitor::Base<declvisitor::make_ptr, ImplClass, RetTy> {};
75 : public declvisitor::Base<declvisitor::make_const_ptr, ImplClass, RetTy> {};
  /external/openssh/regress/
sftp-glob.sh 39 BASE=${OBJ}/glob
41 DIR=${BASE}/dir
52 rm -rf ${BASE}
59 sftp_ls "${BASE}/d*" "dir glob" "`basename ${DATA}`" ""
74 rm -rf ${BASE}
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
JarURLConnectionTest.java 44 private static final String BASE =
51 URL u = new URL("jar:"+BASE+"!/swt.dll");
64 URL u = new URL("jar:"+BASE+"!/plus.bmp");
68 u = new URL("jar:"+BASE+"!/");
80 URL u = new URL("jar:"+BASE+"!/plus.bmp");
84 u = new URL("jar:"+BASE+"!/");
94 url = new URL("jar:"+BASE+"!/missing");
124 new URL("jar:"+BASE+"!/");
185 URL fileURL = new URL(BASE);
186 URL u = new URL("jar:"+BASE+"!/plus.bmp")
309 String base = "file:resources\/org\/apache\/harmony\/luni\/tests\/java\/net\/url-test.jar"; local
    [all...]
  /sdk/emulator/qtools/
callstack.h 29 virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {};
30 virtual void pop(int stackLevel, uint64_t time, CallStackBase *base) {};
46 template <class FRAME, class BASE = CallStackBase>
47 class CallStack : public BASE {
52 typedef BASE base_type;
114 template<class FRAME, class BASE>
115 MethodRec CallStack<FRAME, BASE>::sCurrentMethod;
116 template<class FRAME, class BASE>
117 MethodRec CallStack<FRAME, BASE>::sNextMethod;
119 template<class FRAME, class BASE>
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiMonitor.java 287 private static final int BASE = Protocol.BASE_WIFI_MONITOR;
290 public static final int SUP_CONNECTION_EVENT = BASE + 1;
292 public static final int SUP_DISCONNECTION_EVENT = BASE + 2;
294 public static final int NETWORK_CONNECTION_EVENT = BASE + 3;
296 public static final int NETWORK_DISCONNECTION_EVENT = BASE + 4;
298 public static final int SCAN_RESULTS_EVENT = BASE + 5;
300 public static final int SUPPLICANT_STATE_CHANGE_EVENT = BASE + 6;
302 public static final int AUTHENTICATION_FAILURE_EVENT = BASE + 7;
304 public static final int WPS_SUCCESS_EVENT = BASE + 8;
306 public static final int WPS_FAIL_EVENT = BASE + 9
    [all...]
WifiManager.java     [all...]
  /external/clang/include/clang/Sema/
Template.h 398 #define DECL(DERIVED, BASE) \
403 #define OBJCCONTAINER(DERIVED, BASE)
404 #define FILESCOPEASM(DERIVED, BASE)
405 #define IMPORT(DERIVED, BASE)
406 #define LINKAGESPEC(DERIVED, BASE)
407 #define OBJCCOMPATIBLEALIAS(DERIVED, BASE)
408 #define OBJCMETHOD(DERIVED, BASE)
409 #define OBJCIVAR(DERIVED, BASE)
410 #define OBJCPROPERTY(DERIVED, BASE)
411 #define OBJCPROPERTYIMPL(DERIVED, BASE)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
punycode.c 59 #define BASE 36
86 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
107 * BASE-1, or -1 if b is does not represent a value.
169 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
170 delta/=(BASE-TMIN);
173 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
324 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
348 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0)
    [all...]
  /external/icu4c/common/
punycode.cpp 62 #define BASE 36
89 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
110 * BASE-1, or -1 if b is does not represent a value.
172 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
173 delta/=(BASE-TMIN);
176 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
327 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
351 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0)
    [all...]
  /external/chromium_org/base/strings/
string_number_conversions.cc 5 #include "base/strings/string_number_conversions.h"
14 #include "base/logging.h"
15 #include "base/scoped_clear_errno.h"
16 #include "base/strings/utf_string_conversions.h"
17 #include "base/third_party/dmg_fp/dmg_fp.h"
19 namespace base { namespace
102 // Utility to convert a character to a digit in a given base
103 template<typename CHAR, int BASE, bool BASE_LTE_10> class BaseCharToDigit {
107 template<typename CHAR, int BASE> class BaseCharToDigit<CHAR, BASE, true>
    [all...]
  /development/scripts/
combine_sdks.sh 24 BASE="$1"
28 if [[ -z "$BASE" || -z "$IMAGES" || -z "$OUTPUT" ]] ; then
29 echo "usage: combine_sdks.sh [-v] [-nozip] BASE IMAGES OUTPUT"
31 echo " BASE and IMAGES should be sdk zip files. The system image files,"
33 echo " everything else will be copied from BASE. All of this will be"
53 BASE_DIR="$TMP"/base
57 unzip $Q "$BASE" -d "$BASE_DIR"
  /development/tools/findunused/
removeunusedresources 20 BASE=$(pwd)/$(dirname $0)
25 $BASE/findunusedresources -p . | {
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
hmm_intrnl.h 25 #define U(BASE) HMM_UNIQUE(BASE)
149 #define AVL_UNIQUE(BASE) U(avl_ ## BASE)
  /dalvik/tests/etc/
host-run-test-jar 122 BASE="$OUT" # from build environment
143 framework="${BASE}/system/framework"
  /external/eigen/bench/btl/data/
mk_mean_script.sh 25 BASE=${FILE##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat}
  /frameworks/base/media/mca/filterfw/native/core/
value.cpp 52 template<typename BASE, int TYPEID>
53 Value MakePtrValue(const BASE* values, int count) {
56 result.value = malloc(sizeof(BASE) * count);
57 memcpy(result.value, values, sizeof(BASE) * count);
76 template<typename BASE, int TYPEID>
77 int SetPtrValue(Value* value, const BASE* new_values, int count) {
80 value->value = malloc(sizeof(BASE) * count);
84 memcpy(value->value, new_values, sizeof(BASE) * count);
  /external/chromium/base/
string_number_conversions.cc 5 #include "base/string_number_conversions.h"
12 #include "base/logging.h"
13 #include "base/third_party/dmg_fp/dmg_fp.h"
14 #include "base/utf_string_conversions.h"
16 namespace base { namespace
99 // Utility to convert a character to a digit in a given base
100 template<typename CHAR, int BASE, bool BASE_LTE_10> class BaseCharToDigit {
104 template<typename CHAR, int BASE> class BaseCharToDigit<CHAR, BASE, true> {
107 if (c >= '0' && c < '0' + BASE) {
    [all...]
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/
avx2intrin.h     [all...]
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/
avx2intrin.h     [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
longintrepr.h 68 #define BASE PyLong_BASE
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
longintrepr.h 68 #define BASE PyLong_BASE

Completed in 8059 milliseconds

12 3 4 5 6 7