Searched refs:Char (Results 101 - 125 of 275) sorted by relevance

1234567891011

/external/valgrind/tsan/
H A Dts_valgrind.cc93 Bool VG_(get_fnname_no_cxx_demangle) ( Addr a, Char* buf, Int nbuf );
104 if(VG_(get_fnname)(pc, (Char*)g_buff1, kBuffSize)) {
108 if(VG_(get_fnname_no_cxx_demangle)(pc, (Char*)g_buff1, kBuffSize)) {
122 (pc, (Char*)g_buff1, kBuffSize, (Char*)g_buff2, kBuffSize,
128 if (VG_(get_filename)(pc, (Char*)g_buff1, kBuffSize)) {
136 if (VG_(get_objname)(pc, (Char*)g_buff1, kBuffSize)) {
149 return VG_(strlen)((const Char*)s);
272 Bool ts_process_cmd_line_option (Char* arg) {
303 extern Char* VG
[all...]
H A Dcommon_util.cc97 SysRes sres = VG_(open)((const Char*)file_name.c_str(), VKI_O_RDONLY, 0);
H A Dts_util.cc80 if (VG_(get_datasym_and_offset)(addr, reinterpret_cast<Char*>(buff),
203 return VG_(strtoll16)((Char*)str, (Char**)end);
205 return VG_(strtoll10)((Char*)str, (Char**)end);
453 SysRes sres = VG_(open)((const Char*)file_name.c_str(),
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs116 n = fr.Read((Char[])data, 0, data.Length);
/external/chromium/testing/gtest/src/
H A Dgtest-printers.cc147 // The template argument UnsignedChar is the unsigned version of Char,
149 template <typename UnsignedChar, typename Char>
150 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
218 // UnsignedChar is the unsigned version of Char, which is the type of c.
219 template <typename UnsignedChar, typename Char>
220 void PrintCharAndCodeTo(Char c, ostream* os) {
/external/gtest/src/
H A Dgtest-printers.cc147 // The template argument UnsignedChar is the unsigned version of Char,
149 template <typename UnsignedChar, typename Char>
150 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
218 // UnsignedChar is the unsigned version of Char, which is the type of c.
219 template <typename UnsignedChar, typename Char>
220 void PrintCharAndCodeTo(Char c, ostream* os) {
/external/llvm/utils/unittest/googletest/
H A Dgtest-printers.cc147 // The template argument UnsignedChar is the unsigned version of Char,
149 template <typename UnsignedChar, typename Char>
150 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
218 // UnsignedChar is the unsigned version of Char, which is the type of c.
219 template <typename UnsignedChar, typename Char>
220 void PrintCharAndCodeTo(Char c, ostream* os) {
/external/valgrind/main/auxprogs/
H A Dvalgrind-listener.c67 static void panic ( Char* str )
78 static void my_assert_fail ( const Char* expr, const Char* file, Int line, const Char* fn )
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadstabs.c115 Char *name;
145 Char *string;
160 Char* qbuf = NULL;
191 Char *n;
/external/webkit/Source/WebCore/platform/chromium/
H A DPlatformKeyboardEventChromium.cpp50 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
52 ASSERT(type == RawKeyDown || type == Char);
/external/webkit/Source/WebKit2/Shared/
H A DWebKeyboardEvent.cpp69 return type == RawKeyDown || type == KeyDown || type == KeyUp || type == Char;
/external/valgrind/main/coregrind/
H A Dm_libcprint.c60 void send_bytes_to_logging_sink ( OutputSink* sink, Char* msg, Int nbytes )
182 UInt VG_(vsprintf) ( Char* buf, const HChar *format, va_list vargs )
196 UInt VG_(sprintf) ( Char* buf, const HChar *format, ... )
229 UInt VG_(vsnprintf) ( Char* buf, Int size, const HChar *format, va_list vargs )
242 UInt VG_(snprintf) ( Char* buf, Int size, const HChar *format, ... )
274 Char fmt[32];
571 void VG_(err_config_error) ( Char* format, ... )
/external/valgrind/main/memcheck/
H A Dmc_replace_strmem.c236 const Char* src_orig = src; \
237 Char* dst_orig = dst; \
271 const Char* src_orig = src; \
272 Char* dst_orig = dst; \
313 const Char* src_orig = src; \
314 Char* dst_orig = dst; \
411 const Char* src_orig = src; \
412 Char* dst_orig = dst; \
448 const Char* src_orig = src; \
449 Char* dst_ori
[all...]
/external/webkit/Source/WebKit/chromium/src/win/
H A DWebInputEventFactory.cpp124 result.type = WebInputEvent::Char;
128 result.type = WebInputEvent::Char;
130 result.type = WebInputEvent::Char;
136 if (result.type == WebInputEvent::Char || result.type == WebInputEvent::RawKeyDown) {
140 if (result.type != WebInputEvent::Char)
/external/bluetooth/glib/glib/
H A Dguniprop.c40 #define ATTTABLE(Page, Char) \
41 ((ATTR_TABLE(Page) == G_UNICODE_MAX_TABLE_INDEX) ? 0 : (attr_data[ATTR_TABLE(Page)][Char]))
43 #define TTYPE_PART1(Page, Char) \
46 : (type_data[type_table_part1[Page]][Char]))
48 #define TTYPE_PART2(Page, Char) \
51 : (type_data[type_table_part2[Page]][Char]))
53 #define TYPE(Char) \
54 (((Char) <= G_UNICODE_LAST_CHAR_PART1) \
55 ? TTYPE_PART1 ((Char) >> 8, (Char)
[all...]
/external/clang/lib/AST/
H A DStmtPrinter.cpp749 switch (uint32_t Char = Str->getCodeUnit(I)) {
756 Char >= 0xd800 && Char <= 0xdbff) {
759 Char = 0x10000 + ((Char - 0xd800) << 10) + (Trail - 0xdc00);
764 if (Char > 0xff) {
766 // escapes. Otherwise, this is a UTF-16 or UTF-32 string, and Char is a
769 (Char >= 0xd800 && Char <= 0xdfff) || Char >
[all...]
/external/valgrind/main/callgrind/
H A Dfn.c217 static UInt str_hash(const Char *s, UInt table_size)
226 static Char* anonymous_obj = "???";
270 obj_name = di ? (Char*) VG_(DebugInfo_get_filename)(di) : anonymous_obj;
289 file_node* new_file_node(Char filename[FILENAME_LEN],
308 Char filename[FILENAME_LEN])
333 fn_node* new_fn_node(Char fnname[FILENAME_LEN],
377 Char fnname[FN_NAME_LEN])
406 Char filename[FILENAME_LEN],
407 Char fnname[FN_NAME_LEN])
418 Char fil
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c1164 Int VG_(keyword_id) (Char* keywords, Char* input_word, kwd_report_error report)
1167 Char iw[il+1];
1168 Char kwds[VG_(strlen)(keywords)+1];
1169 Char *kwdssaveptr;
1171 Char* kw; /* current keyword, its length, its position */
1253 static Bool is_zero_x (Char *s)
1262 static Bool is_zero_b (Char *s)
1272 Char **ssaveptr)
1274 Char* w
[all...]
/external/valgrind/main/exp-sgcheck/
H A Dpc_common.c66 Bool pc_process_cmd_line_options(Char* arg)
137 Char datasym[96];
203 void h_record_sysparam_error( ThreadId tid, CorePart part, Char* s,
296 static Char* readwrite(SSizeT sszB)
351 Char *place, *legit, *how_invalid;
471 Char* which;
547 Char* s = VG_(get_error_string) (err);
548 Char* what;
723 Bool pc_is_recognised_suppression ( Char* name, Supp *su )
738 Bool pc_read_extra_suppression_info ( Int fd, Char** bufp
[all...]
/external/v8/src/
H A Dpreparse-data.h196 template <typename Char>
197 static int vector_hash(Vector<const Char> string) {
/external/valgrind/main/coregrind/m_demangle/
H A Ddemangle.c90 Char* orig, Char* result, Int result_size )
/external/webkit/Source/WebCore/platform/iphone/
H A DKeyEventIPhone.mm89 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
91 ASSERT(type == RawKeyDown || type == Char);
/external/webkit/Source/WebCore/platform/wx/
H A DKeyboardEventWx.cpp344 m_type = Char;
347 if (m_type != Char)
373 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
/external/webkit/Source/WebKit/chromium/tests/
H A DKeyboardTest.cpp104 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
112 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-common.c84 const Char* file,
86 const Char* fn )
118 Char *aspacem_sprintf_ptr = buf;
243 SysRes ML_(am_open) ( const Char* pathname, Int flags, Int mode )

Completed in 247 milliseconds

1234567891011