HomeSort by relevance Sort by last modified time
    Searched refs:_e (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prclist.h 51 ** Insert element "_e" into the list, before "_l".
53 #define PR_INSERT_BEFORE(_e,_l) \
55 (_e)->next = (_l); \
56 (_e)->prev = (_l)->prev; \
57 (_l)->prev->next = (_e); \
58 (_l)->prev = (_e); \
62 ** Insert element "_e" into the list, after "_l".
64 #define PR_INSERT_AFTER(_e,_l) \
66 (_e)->next = (_l)->next; \
67 (_e)->prev = (_l);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
StoreException.java 6 private Throwable _e; field in class:StoreException
11 _e = e;
16 return _e;
  /external/clang/test/CXX/over/over.oper/over.literal/
p6.cpp 10 void operator "" _e(const char *); // expected-error {{must have C++ linkage}}
p2.cpp 21 int operator "" _e; // expected-error {{cannot be the name of a variable}} variable
  /external/javassist/src/main/javassist/tools/web/
BadHttpRequest.java 26 public BadHttpRequest(Exception _e) { e = _e; }
  /external/llvm/test/MC/MachO/
indirect-symbols.s 5 _e: label
18 .indirect_symbol _e
124 // CHECK: ('_string', '_e')
  /frameworks/native/opengl/libs/EGL/
egl_tls.h 64 #define setError(_e, _r) \
65 egl_tls_t::setErrorEtc(__FUNCTION__, __LINE__, _e, _r)
67 #define setErrorQuiet(_e, _r) \
68 egl_tls_t::setErrorEtc(__FUNCTION__, __LINE__, _e, _r, true)
  /external/elfutils/lib/
eu-config.h 124 ({ long int _e = !!(e); \
129 : : "r" (_e == E), "i" (__LINE__), "i" (__FILE__)); \
130 __builtin_expect (_e, E); \
139 ({ long int _e = !!(e); \
144 : : "r" (_e == E), "i" (__LINE__), "i" (__FILE__)); \
145 __builtin_expect (_e, E); \
  /external/llvm/include/llvm/Support/
system_error.h 678 error_condition(E _e, typename enable_if_c<
681 {*this = make_error_condition(_e);}
694 operator=(E _e)
695 {*this = make_error_condition(_e); return *this;}
715 inline error_condition make_error_condition(errc _e) {
716 return error_condition(static_cast<int>(_e), generic_category());
740 error_code(E _e, typename enable_if_c<
743 *this = make_error_code(_e);
757 operator=(E _e)
758 {*this = make_error_code(_e); return *this;
    [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 22 error_condition(E _e) {
28 *this = make_error_condition(_e);
33 inline error_condition make_error_condition(errc _e) {
34 return error_condition(static_cast<int>(_e));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
concept_check.h 51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
  /external/chromium_org/v8/test/webkit/resources/
standalone-pre.js 152 function shouldThrow(_a, _e)
163 if (_e)
164 _ev = eval(_e);
167 if (typeof _e == "undefined" || exception == _ev)
170 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
172 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was undefined.");
174 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was " + _av + ".");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
random.py 45 from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil namespace
540 b = (_e + alpha)/_e
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
random.py 45 from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil namespace
540 b = (_e + alpha)/_e

Completed in 1865 milliseconds

1 2