/external/libcxx/test/std/re/re.badexp/ |
D | regex_error.pass.cpp | 28 std::regex_error e(std::regex_constants::error_collate); in main() local 33 std::regex_error e(std::regex_constants::error_ctype); in main() local 38 std::regex_error e(std::regex_constants::error_escape); in main() local 44 std::regex_error e(std::regex_constants::error_backref); in main() local 49 std::regex_error e(std::regex_constants::error_brack); in main() local 54 std::regex_error e(std::regex_constants::error_paren); in main() local 59 std::regex_error e(std::regex_constants::error_brace); in main() local 64 std::regex_error e(std::regex_constants::error_badbrace); in main() local 69 std::regex_error e(std::regex_constants::error_range); in main() local 75 std::regex_error e(std::regex_constants::error_space); in main() local [all …]
|
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/ |
D | ctor_result_type.pass.cpp | 28 E e(5); in test1() local 35 E e(5); in test1() local 42 E e(5); in test1() local 56 E e(7); in test2() local 63 E e(0); in test2() local 70 E e(4); in test2() local 84 E e(3); in test3() local 91 E e(5); in test3() local 98 E e(7); in test3() local 112 E e(7); in test4() local [all …]
|
/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ |
D | event.c | 23 void event_init_opts(struct event *e, u64 config, int type, char *name) in event_init_opts() 37 void event_init_named(struct event *e, u64 config, char *name) in event_init_named() 42 void event_init(struct event *e, u64 config) in event_init() 52 int event_open_with_options(struct event *e, pid_t pid, int cpu, int group_fd) in event_open_with_options() 63 int event_open_with_group(struct event *e, int group_fd) in event_open_with_group() 68 int event_open_with_pid(struct event *e, pid_t pid) in event_open_with_pid() 73 int event_open_with_cpu(struct event *e, int cpu) in event_open_with_cpu() 78 int event_open(struct event *e) in event_open() 83 void event_close(struct event *e) in event_close() 88 int event_enable(struct event *e) in event_enable() [all …]
|
/external/sl4a/Utils/src/com/googlecode/android_scripting/ |
D | Log.java | 109 public static void v(String message, Throwable e) { in v() 110 android.util.Log.v(getTag(), message, e); in v() local 118 public static void v(Context context, String message, Throwable e) { in v() 120 android.util.Log.v(getTag(), message, e); in v() local 123 public static void e(Throwable e) { in e() argument 124 android.util.Log.e(getTag(), "Error", e); in e() local 127 public static void e(String message) { in e() method in Log 131 public static void e(String message, Throwable e) { in e() method in Log 132 android.util.Log.e(getTag(), message, e); in e() local 135 public static void e(Context context, String message) { in e() method in Log [all …]
|
/external/libnl/lib/route/cls/ematch/ |
D | text.c | 31 void rtnl_ematch_text_set_from(struct rtnl_ematch *e, uint8_t layer, in rtnl_ematch_text_set_from() 39 uint16_t rtnl_ematch_text_get_from_offset(struct rtnl_ematch *e) in rtnl_ematch_text_get_from_offset() 44 uint8_t rtnl_ematch_text_get_from_layer(struct rtnl_ematch *e) in rtnl_ematch_text_get_from_layer() 49 void rtnl_ematch_text_set_to(struct rtnl_ematch *e, uint8_t layer, in rtnl_ematch_text_set_to() 57 uint16_t rtnl_ematch_text_get_to_offset(struct rtnl_ematch *e) in rtnl_ematch_text_get_to_offset() 62 uint8_t rtnl_ematch_text_get_to_layer(struct rtnl_ematch *e) in rtnl_ematch_text_get_to_layer() 67 void rtnl_ematch_text_set_pattern(struct rtnl_ematch *e, in rtnl_ematch_text_set_pattern() 79 char *rtnl_ematch_text_get_pattern(struct rtnl_ematch *e) in rtnl_ematch_text_get_pattern() 84 size_t rtnl_ematch_text_get_len(struct rtnl_ematch *e) in rtnl_ematch_text_get_len() 89 void rtnl_ematch_text_set_algo(struct rtnl_ematch *e, const char *algo) in rtnl_ematch_text_set_algo() [all …]
|
D | nbyte.c | 31 void rtnl_ematch_nbyte_set_offset(struct rtnl_ematch *e, uint8_t layer, in rtnl_ematch_nbyte_set_offset() 39 uint16_t rtnl_ematch_nbyte_get_offset(struct rtnl_ematch *e) in rtnl_ematch_nbyte_get_offset() 44 uint8_t rtnl_ematch_nbyte_get_layer(struct rtnl_ematch *e) in rtnl_ematch_nbyte_get_layer() 49 void rtnl_ematch_nbyte_set_pattern(struct rtnl_ematch *e, in rtnl_ematch_nbyte_set_pattern() 61 uint8_t *rtnl_ematch_nbyte_get_pattern(struct rtnl_ematch *e) in rtnl_ematch_nbyte_get_pattern() 66 size_t rtnl_ematch_nbyte_get_len(struct rtnl_ematch *e) in rtnl_ematch_nbyte_get_len() 85 static int nbyte_parse(struct rtnl_ematch *e, void *data, size_t len) in nbyte_parse() 102 static void nbyte_dump(struct rtnl_ematch *e, struct nl_dump_params *p) in nbyte_dump() 118 static void nbyte_free(struct rtnl_ematch *e) in nbyte_free()
|
/external/guava/guava-tests/test/com/google/common/net/ |
D | UrlEscapersTest.java | 42 static void assertBasicUrlEscaperExceptPercent(UnicodeEscaper e) { in assertBasicUrlEscaperExceptPercent() 81 static void assertBasicUrlEscaper(UnicodeEscaper e) { in assertBasicUrlEscaper() 88 UnicodeEscaper e = (UnicodeEscaper) urlFormParameterEscaper(); in testUrlFormParameterEscaper() local 113 UnicodeEscaper e = (UnicodeEscaper) urlPathSegmentEscaper(); in testUrlPathSegmentEscaper() local 118 static void assertPathEscaper(UnicodeEscaper e) { in assertPathEscaper() 137 UnicodeEscaper e = (UnicodeEscaper) urlFragmentEscaper(); in testUrlFragmentEscaper() local
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | swr_assert.h | 57 #define SWR_ASSUME(e, ...) __assume(e) argument 59 #define SWR_ASSUME(e, ...) __builtin_assume(e) argument 61 #define SWR_ASSUME(e, ...) ((e) ? ((void)0) : __builtin_unreachable()) argument 63 #define SWR_ASSUME(e, ...) ASSUME(e) argument 88 #define SWR_ASSERT(e, ...) assert(e) argument 92 #define SWR_REL_ASSERT(e, ...) assert(e) argument 114 #define _SWR_ASSERT(chkDebugger, e, ...) {\ argument 127 #define SWR_ASSERT(e, ...) _SWR_ASSERT(true, e, ##__VA_ARGS__) argument 128 #define SWR_ASSUME_ASSERT(e, ...) SWR_ASSERT(e, ##__VA_ARGS__) argument 139 #define SWR_REL_ASSERT(e, ...) _SWR_ASSERT(false, e, ##__VA_ARGS__) argument [all …]
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | RegisterInfoEmitter.cpp | 50 for (unsigned i = 0, e = Registers.size(); i != e; ++i) in runEnums() local 66 for (unsigned i = 0, e = RegisterClasses.size(); i != e; ++i) { in runEnums() local 84 for (unsigned i = 0, e = RegAltNameIndices.size(); i != e; ++i) in runEnums() local 108 for (unsigned i = 0, e = Regs.size(); i != e; ++i) { in EmitRegMapping() local 124 for (unsigned i = I->second.size(), e = maxLength; i != e; ++i) in EmitRegMapping() local 139 for (unsigned i = 0, e = maxLength; i != e; ++i) { in EmitRegMapping() local 162 for (unsigned i = 0, e = Regs.size(); i != e; ++i) { in EmitRegMapping() local 185 for (unsigned i = 0, e = maxLength; i != e; ++i) { in EmitRegMapping() local 215 for (unsigned i = 0, e = Bits.size(); i < e; i += Width) { in printBitVectorAsHex() local 265 for (unsigned i = 0, e = Regs.size(); i != e; ++i) { in runMCDesc() local [all …]
|
/external/v8/tools/clang/blink_gc_plugin/ |
D | Edge.cpp | 28 void RecursiveEdgeVisitor::VisitValue(Value* e) { in VisitValue() 32 void RecursiveEdgeVisitor::VisitRawPtr(RawPtr* e) { in VisitRawPtr() 39 void RecursiveEdgeVisitor::VisitRefPtr(RefPtr* e) { in VisitRefPtr() 45 void RecursiveEdgeVisitor::VisitOwnPtr(OwnPtr* e) { in VisitOwnPtr() 52 void RecursiveEdgeVisitor::VisitUniquePtr(UniquePtr* e) { in VisitUniquePtr() 59 void RecursiveEdgeVisitor::VisitMember(Member* e) { in VisitMember() 66 void RecursiveEdgeVisitor::VisitWeakMember(WeakMember* e) { in VisitWeakMember() 73 void RecursiveEdgeVisitor::VisitPersistent(Persistent* e) { in VisitPersistent() 81 CrossThreadPersistent* e) { in VisitCrossThreadPersistent() 88 void RecursiveEdgeVisitor::VisitCollection(Collection* e) { in VisitCollection() [all …]
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | mbox.py | 138 def folder_post(e): argument 143 def folder_unpost(e): argument 149 def scan_post(e): argument 154 def scan_unpost(e): argument 162 def open_folder(e=None): argument 177 def open_message(e=None): argument 205 def remove_message(e=None): argument 223 def refile_message(e=None): argument
|
D | rmt.py | 53 def single1(e): argument 61 def double1(e): argument 68 def triple1(e): argument 75 def returnkey(e): argument 80 def controlv(e): argument 90 def backspace(e): argument
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | event.cpp | 35 } catch (error &e) { in clCreateUserEvent() local 57 } catch (error &e) { in clSetUserEventStatus() local 82 } catch (error &e) { in clWaitForEvents() local 119 } catch (error &e) { in clGetEventInfo() local 142 } catch (error &e) { in clSetEventCallback() local 151 } catch (error &e) { in clRetainEvent() local 162 } catch (error &e) { in clReleaseEvent() local 177 } catch (error &e) { in clEnqueueMarker() local 200 } catch (error &e) { in clEnqueueMarkerWithWaitList() local 212 } catch (error &e) { in clEnqueueBarrier() local [all …]
|
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ |
D | eval.pass.cpp | 66 E e; in test1() local 75 E e; in test2() local 84 E e(5); in test3() local 93 E e(129); in test4() local 102 E e(6); in test5() local 111 E e(6); in test6() local 120 E e(6); in test7() local 129 E e(6); in test8() local
|
/external/libcxxabi/test/ |
D | unwind_06.pass.cpp | 60 double e = get(0); in try4() local 72 double e = get(0); in try5() local 85 double e = get(0); in try6() local 99 double e = get(0); in try7() local 114 double e = get(0); in try8() local 135 double e = get(5); in foo() local 142 catch (int e) { in foo() local 156 catch (int e) { in foo() local 170 catch (int e) { in foo() local 184 catch (int e) { in foo() local [all …]
|
/external/libvncserver/webclients/novnc/include/ |
D | input.js | 50 _handleRfbEvent: function (e) { argument 58 _handleKeyDown: function (e) { argument 72 _handleKeyPress: function (e) { argument 86 _handleKeyUp: function (e) { argument 137 sync: function (e) { argument 200 _handleMouseButton: function (e, down) { argument 259 _handleMouseDown: function (e) { argument 264 _handleMouseUp: function (e) { argument 271 _handleMouseWheel: function (e) { argument 296 _handleMouseMove: function (e) { argument [all …]
|
/external/libcxx/test/libcxx/containers/sequences/vector/ |
D | asan_throw.pass.cpp | 65 } catch (int e) { in test_push_back() local 81 } catch (int e) { in test_emplace_back() local 100 } catch (int e) { in test_insert_range() local 116 } catch (int e) { in test_insert() local 133 } catch (int e) { in test_emplace() local 152 } catch (int e) { in test_insert_range2() local 169 } catch (int e) { in test_insert_n() local 186 } catch (int e) { in test_insert_n2() local 201 } catch (int e) { in test_resize() local 215 } catch (int e) { in test_resize_param() local
|
/external/libcxx/test/std/experimental/filesystem/class.directory_entry/directory_entry.obs/ |
D | path.pass.cpp | 31 const directory_entry e(""); in test_path_method() local 37 directory_entry e(p); in test_path_method() local 53 const directory_entry e(""); in test_path_conversion() local 70 directory_entry const e(p); in test_path_conversion() local 76 directory_entry e(p); in test_path_conversion() local
|
/external/javassist/sample/duplicate/ |
D | Viewer.java | 47 public void actionPerformed(ActionEvent e) { in actionPerformed() 52 public void windowOpened(WindowEvent e) {} in windowOpened() 54 public void windowClosing(WindowEvent e) { in windowClosing() 58 public void windowClosed(WindowEvent e) {} in windowClosed() 60 public void windowIconified(WindowEvent e) {} in windowIconified() 62 public void windowDeiconified(WindowEvent e) {} in windowDeiconified() 64 public void windowActivated(WindowEvent e) {} in windowActivated() 66 public void windowDeactivated(WindowEvent e) {} in windowDeactivated()
|
/external/javassist/src/main/javassist/ |
D | CannotCompileException.java | 72 public CannotCompileException(Throwable e) { in CannotCompileException() 85 public CannotCompileException(String msg, Throwable e) { in CannotCompileException() 94 public CannotCompileException(NotFoundException e) { in CannotCompileException() 101 public CannotCompileException(CompileError e) { in CannotCompileException() 109 public CannotCompileException(ClassNotFoundException e, String name) { in CannotCompileException() 116 public CannotCompileException(ClassFormatError e, String name) { in CannotCompileException()
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | EnumTest.java | 43 ForeignEnum e = ForeignEnum.forNumber(ForeignEnum.FOREIGN_BAR.getNumber()); in testForNumber() local 51 TestAllTypes.OneofFieldCase e = TestAllTypes.OneofFieldCase.forNumber( in testForNumber_oneof() local 60 ForeignEnumLite e = ForeignEnumLite.forNumber(ForeignEnumLite.FOREIGN_LITE_BAR.getNumber()); in testForNumberLite() local 68 TestAllTypesLite.OneofFieldCase e = TestAllTypesLite.OneofFieldCase.forNumber( in testForNumberLite_oneof() local
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
D | ExceptionExtensions.cs | 42 public static string getMessage(Exception e) { in getMessage() 47 public static StackFrame[] getStackTrace(Exception e) { in getStackTrace() 70 public static void PrintStackTrace(Exception e) { in PrintStackTrace() 73 public static void PrintStackTrace(Exception e, System.IO.TextWriter writer) { in PrintStackTrace() 84 public static Exception getTargetException(TargetInvocationException e) { in getTargetException()
|
/external/libcxx/test/std/experimental/filesystem/class.filesystem_error/ |
D | filesystem_error.members.pass.cpp | 39 auto CheckWhat = [what_contains](filesystem_error const& e) { in test_constructors() 51 filesystem_error e(what_arg, ec); in test_constructors() local 59 filesystem_error e(what_arg, p1, ec); in test_constructors() local 68 filesystem_error e(what_arg, p1, p2, ec); in test_constructors() local 81 const filesystem_error e("lala", ec); in test_signatures() local
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | ExceptionExtensions.cs | 45 public static string getMessage( this Exception e ) in getMessage() 51 public static StackFrame[] getStackTrace( this Exception e ) in getStackTrace() 77 public static void PrintStackTrace( this Exception e ) in PrintStackTrace() 81 public static void PrintStackTrace( this Exception e, System.IO.TextWriter writer ) in PrintStackTrace() 94 public static Exception getTargetException( this TargetInvocationException e ) in getTargetException()
|
/external/autotest/client/site_tests/video_YouTubePage/files/ |
D | video_YouTubePageCommon.js | 12 function logEventHappened(e) { argument 16 function logTimeUpdate(e) { argument 20 function onError(e) { argument 79 function getEventHappened(e) { argument 84 function clearEventHappened(e) { argument 88 function getLastSecondTimeupdates(e) { argument
|