HomeSort by relevance Sort by last modified time
    Searched full:printf (Results 126 - 150 of 7108) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/v8/src/
objects-printer.cc 60 PrintF(out, "\n");
65 PrintF(out, "%p: [%s]\n", reinterpret_cast<void*>(this), id);
127 PrintF(out, "filler");
151 PrintF(out, "Value wrapper around:");
189 PrintF(out, "UNKNOWN TYPE %d", map()->instance_type());
197 PrintF(out, "byte array, data starts at %p", GetDataStartAddress());
202 PrintF(out, "free space, size %d", Size());
207 PrintF(out, "external pixel array");
212 PrintF(out, "external byte array");
217 PrintF(out, "external unsigned byte array")
    [all...]
  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 101 int printf(const char * _Format, ...);
106 printf("__func__ %s\n", __func__);
107 printf("__FUNCTION__ %s\n", __FUNCTION__);
108 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__);
117 printf("__func__ %s\n", __func__);
118 printf("__FUNCTION__ %s\n", __FUNCTION__);
119 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__);
131 printf("__func__ %s\n", __func__);
132 printf("__FUNCTION__ %s\n", __FUNCTION__);
133 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_debug_fp.c 124 printf("T_DIFFUSE");
127 printf("T_SPECULAR");
130 printf("T_FOG_W");
133 printf("T_TEX%d", nr);
138 printf("oC");
144 printf("oD");
152 printf("%s[%d]", regname[type], nr);
173 printf(".");
177 printf("-");
181 printf("x")
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_debug_fp.c 124 printf("T_DIFFUSE");
127 printf("T_SPECULAR");
130 printf("T_FOG_W");
133 printf("T_TEX%d", nr);
138 printf("oC");
144 printf("oD");
152 printf("%s[%d]", regname[type], nr);
173 printf(".");
177 printf("-");
181 printf("x")
    [all...]
  /external/clang/test/Sema/
format-strings.c 10 int printf(const char *restrict, ...); // expected-note{{passing argument to parameter here}}
30 printf(s); // expected-warning {{format string is not a string literal}}
49 printf("abc"
51 printf("abc\
58 printf("%*d", (unsigned) 1, 1); // no-warning
70 printf(s); // expected-warning {{format string is not a string literal}}
84 printf(i == 1 ? "yes" : "no"); // no-warning
85 printf(i == 0 ? (i == 1 ? "yes" : "no") : "dont know"); // no-warning
86 printf(i == 0 ? (i == 1 ? s : "no") : "dont know"); // expected-warning{{format string is not a string literal}}
87 printf("yes" ?: "no %d", 1); // expected-warning{{data argument not used by format string}
524 printf(kFormat17, (int[]){0}); \/\/ expected-warning{{format specifies type 'unsigned short' but the argument}} function
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
unit_test.c 11 printf("Test %s\n", tests[i].name);
14 printf("Test %s (%d/%d) pass\n", tests[i].name,
26 printf("Subtest %u -> ", result->test_count);
29 printf("Pass");
32 printf("Fail");
34 printf("\n");
  /external/clang/test/CodeGen/
2009-02-13-zerosize-union-field.c 2 // Every printf has 'i32 0' for the GEP of the string; no point counting those.
6 extern int printf(const char*, ...);
9 printf("%ld\n", sizeof(a));
11 printf("%ld\n", __alignof__(a));
13 printf("%ld\n", sizeof(b));
15 printf("%ld\n", __alignof__(b));
  /external/compiler-rt/BlocksRuntime/tests/
localisglobal.c 19 void (^global)(void) = ^{ printf("hello world\n"); };
28 void (^local)(void) = ^ { printf("hi %d\n", i); };
29 void (^localisglobal)(void) = ^ { printf("hi\n"); };
32 printf("local block could be global, but isn't\n");
36 printf("local block is not global, not stack, what is it??\n");
39 printf("%s: success\n", argv[0]);
sizeof.c 21 void (^aBlock)(void) = ^{ printf("hellow world\n"); };
23 printf("the size of a block is %ld\n", sizeof(*aBlock));
24 printf("%s: success\n", argv[0]);
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.c 11 printf("Test %s\n", tests[i].name);
14 printf("Test %s (%d/%d) pass\n", tests[i].name,
26 printf("Subtest %u -> ", result->test_count);
29 printf("Pass");
32 printf("Fail");
34 printf("\n");
  /development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp 80 printf("\nNo ADB interfaces found. Make sure that device is "
97 printf("\nEnum interfaces failure:");
98 printf("\nUnable to enumerate ADB interfaces: %u", GetLastError());
115 printf("\nFound interface %ws:", interface_info.device_name);
117 printf(" ACTIVE");
119 printf(" DEFAULT");
121 printf(" REMOVED");
135 printf("\nTest interfaces failure:");
136 printf("\nUnable to enumerate ADB interfaces: %u", GetLastError());
161 printf("\nUnable to create interface by VID/PID: %u", GetLastError());
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm64/
machotest64.c 23 printf("Testing lrotate: should get 0x0000000000400000, 0x0000000000000001\n");
24 printf("lrotate(0x00040000, 4 ) = 0x%016lx\n", lrotate(0x40000,4));
25 printf("lrotate(0x00040000, 46) = 0x%016lx\n", lrotate(0x40000,46));
27 printf("This string should read `hello, world': `%s'\n", asmstr);
32 printf("The pointers %lx and %lx should be equal\n",a,b);
34 printf("This string should read `hello, world': `%s'\n", getstr());
36 printf("The integers here should be 1234, 1235 and 4321:\n");
40 printf("The absolute addressing to the asm-local integer should yield in 1235:\n%ld\n",readgreet());
42 printf("These pointers should be equal: %p and %p\n",
45 printf("So should these: %p and %p\n", selfptr, &selfptr)
    [all...]
  /external/icu4c/samples/msgfmt/answers/
main_0.cpp 19 printf("Message: ");
21 printf("\n");
24 printf("Exiting successfully\n");
main_1.cpp 18 printf("Message: ");
20 printf("\n");
22 printf("Exiting successfully\n");
  /external/valgrind/main/VEX/test/
fstenv.c 16 printf("%08x ", buf[i]);
18 printf("\n");
20 printf("\n");
  /ndk/tests/device/test-stlport_shared-exception/jni/
rethrow3.cpp 9 printf ("CALLING TERMINATE\n");
22 printf ("%d: Throwing\n", level);
28 printf ("%d: Got level %d\n",
  /ndk/tests/device/test-stlport_static-exception/jni/
rethrow3.cpp 9 printf ("CALLING TERMINATE\n");
22 printf ("%d: Throwing\n", level);
28 printf ("%d: Got level %d\n",
  /system/core/toolbox/
getenforce.c 13 printf("Disabled\n");
25 printf("Enforcing\n");
27 printf("Permissive\n");
  /system/extras/tests/bionic/libc/bionic/
test_pthread_create.c 8 printf("Thread 1 (arg=%d tid=%d) entered.\n", (unsigned)arg, gettid());
15 printf("thread 2 (arg=%d tid=%d) entered.\n", (unsigned)arg, gettid());
28 printf("OK\n");
  /external/chromium_org/third_party/icu/source/test/testmap/
testmap.c 32 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
35 printf("*** FAIL: should have returned U_ILLEGAL_ARGUMENT_ERROR\n");
41 printf("setCommonData(%p) -> %s\n", U_ICUDATA_ENTRY_POINT, u_errorName(status));
44 printf("*** FAIL: should have returned U_ZERO_ERROR\n");
50 printf("ucnv_open(iso-8859-7)-> %p, err = %s, name=%s\n",
54 printf("\n*** FAIL: should have returned U_ZERO_ERROR;\n");
64 printf("setCommonData(%p) -> %s [should pass]\n", U_ICUDATA_ENTRY_POINT, u_errorName(status));
67 printf("\n*** FAIL: should pass and not set U_USING_DEFAULT_ERROR\n");
71 printf("\n*** PASS PASS PASS, test PASSED!!!!!!!!\n");
  /external/chromium_org/third_party/libxml/src/
dbgen.pl 31 printf " <row>\n";
32 printf " <id>%04d</id>\n", $i;
33 printf " <firstname>$first</firstname>\n", $i;
34 printf " <lastname>$last</lastname>\n", $i;
35 printf " <street>%d Any St.</street>\n", ($i % 100) + 1;
36 printf " <city>Anytown</city>\n";
37 printf " <state>$state</state>\n";
38 printf " <zip>%d</zip>\n", $zip;
39 printf " </row>\n";
testdso.c 10 printf("Success!\n");
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm32/
machotest.c 20 printf("Testing lrotate: should get 0x00400000, 0x00000001\n");
21 printf("lrotate(0x00040000, 4) = 0x%08lx\n", lrotate(0x40000,4));
22 printf("lrotate(0x00040000, 14) = 0x%08lx\n", lrotate(0x40000,14));
24 printf("This string should read `hello, world': `%s'\n", asmstr);
26 printf("The integers here should be 1234, 1235 and 4321:\n");
31 printf("These pointers should be equal: %p and %p\n",
34 printf("So should these: %p and %p\n", selfptr, &selfptr);
39 mach-o module. Therefore put "printf" statement here and redirect
44 printf(string,a,b,c);
  /external/chromium_org/tools/gyp/test/builddir/src/
prog1.c 7 printf("Hello from prog1.c\n");
  /external/chromium_org/tools/gyp/test/builddir/src/subdir2/
prog2.c 7 printf("Hello from subdir2/prog2.c\n");

Completed in 779 milliseconds

1 2 3 4 56 7 8 91011>>