Searched defs:Char (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/test/CXX/basic/basic.start/basic.start.main/
H A Dp2a.cpp4 typedef char Char; typedef
5 typedef Char* Carp;
H A Dp2b.cpp4 typedef char Char; typedef
5 typedef Char* Carp;
7 Int main(Int argc, Carp argv[], Char *env[]) {
/external/chromium/chrome/browser/metrics/
H A Dmetrics_response.cc17 inline const char* Char(const xmlChar* input) { function
29 if (strcmp(Char(name), "upload") == 0) {
31 if (strcmp(Char(attrs[i]), "interval") == 0) {
32 state->interval = atoi(Char(attrs[i + 1]));
36 } else if (strcmp(Char(name), "limit") == 0) {
38 if (strcmp(Char(attrs[i]), "events") == 0) {
39 state->events = atoi(Char(attrs[i + 1]));
43 } else if (strcmp(Char(name), "collector") == 0) {
45 if (strcmp(Char(attrs[i]), "type") == 0) {
46 const char* type = Char(attr
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.h48 llvm::MDNode *Char; member in class:clang::CodeGen::CodeGenTBAA
/external/valgrind/main/exp-ptrcheck/tests/
H A Dbad_percentify.c14 typedef char Char; typedef
28 Char fmt[32];
84 Char buf[6];
/external/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp349 bool AsmLexer::isAtStartOfComment(char Char) { argument
351 return Char == *MAI.getCommentString();
/external/llvm/lib/TableGen/
H A DTGLexer.cpp430 int Char = getNextChar(); local
431 if (Char == EOF) break;
433 if (Char != '}') continue;
435 Char = getNextChar();
436 if (Char == EOF) break;
437 if (Char == ']') {
/external/valgrind/main/VEX/pub/
H A Dlibvex_basictypes.h45 typedef signed char Char; typedef
/external/valgrind/main/coregrind/
H A Dm_tooliface.c74 DETAILS(Char*, name)
75 DETAILS(Char*, version)
76 DETAILS(Char*, description)
77 DETAILS(Char*, copyright_author)
78 DETAILS(Char*, bug_reports_to)
101 Bool VG_(sanity_check_needs)(Char** failmsg)
232 Bool (*recog) (Char*, Supp*),
233 Bool (*read_extra) (Int, Char**, SizeT*, Supp*),
235 Char* (*name) (Error*),
236 Bool (*get_xtra_si)(Error*,/*OUT*/Char*,In
226 needs_tool_errors( Bool (eq) VgRes, Error*, Error*), void (*before_pp) (Error*), void (*pp) (Error*), Bool show_TIDs, UInt (*update) (Error*), Bool (*recog) (Char*, Supp*), Bool (*read_extra) (Int, Char**, SizeT*, Supp*), Bool (*matches) (Error*, Supp*), Char* (*name) (Error*), Bool (*get_xtra_si)(Error*, Char*,Int) ) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp236 /// EmitPutChar - Emit a call to the putchar function. This assumes that Char
238 Value *llvm::EmitPutChar(Value *Char, IRBuilder<> &B, const TargetData *TD) { argument
243 B.CreateIntCast(Char,
272 /// EmitFPutC - Emit a call to the fputc function. This assumes that Char is
274 void llvm::EmitFPutC(Value *Char, Value *File, IRBuilder<> &B, argument
291 Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/true,
293 CallInst *CI = B.CreateCall2(F, Char, File, "fputc");
/external/bzip2/
H A Dbzip2recover.c54 typedef char Char; typedef
62 Char inFileName[BZ_MAX_FILENAME];
63 Char outFileName[BZ_MAX_FILENAME];
64 Char progName[BZ_MAX_FILENAME];
148 Char mode;
261 static Bool endsInBz2 ( Char* name )
301 Int32 main ( Int32 argc, Char** argv )
310 Char* p;
467 Char* split;
H A Dbzip2.c161 typedef char Char; typedef
205 Char inName [FILE_NAME_LEN];
206 Char outName[FILE_NAME_LEN];
207 Char tmpName[FILE_NAME_LEN];
208 Char *progName;
209 Char progNameReally[FILE_NAME_LEN];
213 static void panic ( const Char* ) NORETURN;
221 static void copyFileName ( Char*, Char* );
385 Char buf_ni
[all...]
H A Dbzlib_private.h41 typedef char Char; typedef
/external/webkit/Source/WebCore/platform/
H A DPlatformKeyboardEvent.h83 // For DOM processing, it needs to be disambiguated as RawKeyDown or Char event.
89 // These events are sent by platforms such as Windows and wxWidgets. RawKeyDown only has information about a physical key, and Char
92 Char enumerator in enum:WebCore::PlatformKeyboardEvent::Type
141 // Zero for Char events.
242 Char event type.
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputEvent.h101 Char, enumerator in enum:WebKit::WebInputEvent::Type
157 || type == Char;
/external/chromium/testing/gmock/test/
H A Dgmock-more-actions_test.cc73 inline char Char(char ch) { return ch; } function in namespace:testing::gmock_more_actions_test
357 EXPECT_EQ(4321, a.Perform(make_tuple(4000, Short(300), Char(20), true)));
388 EXPECT_EQ(1124, a.Perform(make_tuple(1000, true, Char(1))));
467 EXPECT_EQ(4444, a.Perform(make_tuple(4000, Short(300), Char(20), true)));
H A Dgmock-generated-actions_test.cc68 inline char Char(char ch) { return ch; } function in namespace:testing::gmock_generated_actions_test
303 EXPECT_EQ(123, a.Perform(make_tuple(100, 6.5, Char(20), Short(3))));
386 EXPECT_EQ(123, a.Perform(make_tuple(100, Char(20), Short(3))));
408 EXPECT_EQ(123, a.Perform(make_tuple(Short(100), Char(20), 5.6, Char(3))));
650 EXPECT_EQ(11, a1.Perform(make_tuple(5, Char(6), &dummy)));
748 EXPECT_EQ(10, a1.Perform(make_tuple(Char(1), true)));
/external/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp334 unsigned char Char = Str[i]; local
335 if (isprint(Char) && Char != '\\' && Char != '"')
336 OS << (char)Char;
339 << (char)('0'+ ((Char >> 6) & 7))
340 << (char)('0'+ ((Char >> 3) & 7))
341 << (char)('0'+ ((Char >> 0) & 7));
358 unsigned char Char = Str[i]; local
359 if (isprint(Char)
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp183 char Char; local
186 Char = 'u';
190 Char = 's';
193 Char = '?';
198 Char = toupper(Char);
199 Result = Char;
/external/webkit/Tools/android/flex-2.5.4a/
H A Dflexdef.h75 #define Char unsigned char macro
627 extern Char *ccltbl;
695 (Char *) allocate_array( size, sizeof( Char ) )
698 (Char *) reallocate_array( (void *) array, size, sizeof( Char ) )
749 extern void mkeccl PROTO((Char[], int, int[], int[], int, int));
828 extern Char clower PROTO((int));
834 extern Char *copy_unsigned_string PROTO((register Char *));
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp1300 Value *Char = B.CreateLoad(CastToCStr(CI->getArgOperand(0), B), "char"); local
1301 EmitFPutC(Char, CI->getArgOperand(3), B, TD);
/external/webkit/Source/WebKit2/Shared/
H A DWebEvent.h60 Char, enumerator in enum:WebKit::WebEvent::Type
/external/clang/lib/AST/
H A DStmtPrinter.cpp695 unsigned char Char = *I; local
697 switch (Char) {
699 if (isprint(Char))
700 OS << (char)Char;
703 << (char)('0'+ ((Char >> 6) & 7))
704 << (char)('0'+ ((Char >> 3) & 7))
705 << (char)('0'+ ((Char >> 0) & 7));
/external/clang/lib/Lex/
H A DLexer.cpp1588 unsigned char Char = *CurPtr; // Skip consequtive spaces efficiently. local
1591 while (isHorizontalWhitespace(Char))
1592 Char = *++CurPtr;
1595 if (Char != '\n' && Char != '\r')
1609 Char = *++CurPtr;
2041 char Char = getAndAdvanceChar(CurPtr, Tmp); local
2042 switch (Char) {
2044 Result += Char;
2056 Result += Char;
2314 char Char = getAndAdvanceChar(CurPtr, Result); local
[all...]
/external/valgrind/main/cachegrind/
H A Dcg_merge.c51 typedef signed char Char; typedef
972 Char balance;

Completed in 538 milliseconds

12