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

1 2 3

  /external/clang/test/CodeGen/
redefine_extname.c 3 #pragma redefine_extname fake real
6 extern int fake(void);
11 int fish() { return fake() + __PRAGMA_REDEFINE_EXTNAME + name; }
12 // Check that the call to fake() is emitted as a call to real()
  /external/chromium_org/chrome/browser/chromeos/login/
mock_login_utils.cc 19 FakeLoginUtils* fake = fake_login_utils_.get(); local
21 .WillByDefault(Invoke(fake, &FakeLoginUtils::DoBrowserLaunch));
23 .WillByDefault(Invoke(fake, &FakeLoginUtils::PrepareProfile));
25 .WillByDefault(Invoke(fake, &FakeLoginUtils::CreateAuthenticator));
  /external/openssh/regress/
login-timeout.sh 11 (echo SSH-2.0-fake; sleep 60) | telnet 127.0.0.1 ${PORT} >/dev/null 2>&1 &
24 (echo SSH-2.0-fake; sleep 60) | telnet 127.0.0.1 ${PORT} >/dev/null 2>&1 &
  /frameworks/base/core/java/android/text/style/
StyleSpan.java 100 int fake = want & ~tf.getStyle(); local
102 if ((fake & Typeface.BOLD) != 0) {
106 if ((fake & Typeface.ITALIC) != 0) {
TypefaceSpan.java 84 int fake = oldStyle & ~tf.getStyle(); local
86 if ((fake & Typeface.BOLD) != 0) {
90 if ((fake & Typeface.ITALIC) != 0) {
TextAppearanceSpan.java 237 int fake = style & ~tf.getStyle(); local
239 if ((fake & Typeface.BOLD) != 0) {
243 if ((fake & Typeface.ITALIC) != 0) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
CustomTypefaceSpan.java 69 int fake = oldStyle & ~tf.getStyle(); local
70 if ((fake & Typeface.BOLD) != 0) {
74 if ((fake & Typeface.ITALIC) != 0) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_set_literal.py 30 # Make a fake listmaker
31 fake = pytree.Node(syms.listmaker, [single.clone()])
32 single.replace(fake)
33 items = fake
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_set_literal.py 30 # Make a fake listmaker
31 fake = pytree.Node(syms.listmaker, [single.clone()])
32 single.replace(fake)
33 items = fake
  /external/openssh/
auth.c 687 static struct passwd fake; local
689 memset(&fake, 0, sizeof(fake));
690 fake.pw_name = "NOUSER";
691 fake.pw_passwd =
694 fake.pw_gecos = "NOUSER";
696 fake.pw_uid = privsep_pw == NULL ? (uid_t)-1 : privsep_pw->pw_uid;
697 fake.pw_gid = privsep_pw == NULL ? (gid_t)-1 : privsep_pw->pw_gid;
699 fake.pw_class = "";
701 fake.pw_dir = "/nonexist"
    [all...]
  /external/chromium_org/v8/tools/
android-ll-prof.sh 57 ./d8 --ll_prof --gc-fake-mmap=/data/local/tmp/__v8_gc__ $RUN_ARGS"
67 --gc-fake-mmap=/data/local/tmp/__v8_gc__ \
  /external/elfutils/libdw/
libdw_findcu.c 93 struct Dwarf_CU fake = { .start = start, .end = 0 }; local
94 struct Dwarf_CU **found = tfind (&fake, &dbg->cu_tree, findcu_cb);
  /device/generic/goldfish/camera/
Android.mk 60 fake-pipeline2/Scene.cpp \
61 fake-pipeline2/Sensor.cpp \
62 fake-pipeline2/JpegCompressor.cpp \
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1650.js 41 function Fake() {}
45 Fake.prototype.call = function () {
46 assertSame(Fake.prototype.bind, this);
48 assertSame(fake, arguments[0]);
53 Fake.prototype.bind = function () {
56 var fake = new Fake;
58 g(fake, x);
  /external/v8/test/mjsunit/regress/
regress-1650.js 41 function Fake() {}
45 Fake.prototype.call = function () {
46 assertSame(Fake.prototype.bind, this);
48 assertSame(fake, arguments[0]);
53 Fake.prototype.bind = function () {
56 var fake = new Fake;
58 g(fake, x);
  /bionic/libc/stdio/
vfprintf.c 86 FILE fake; local
90 _FILEEXT_SETUP(&fake, &fakeext);
92 fake._flags = fp->_flags & ~__SNBF;
93 fake._file = fp->_file;
94 fake._cookie = fp->_cookie;
95 fake._write = fp->_write;
98 fake._bf._base = fake._p = buf;
99 fake._bf._size = fake._w = sizeof(buf)
    [all...]
  /external/dropbear/
Android.mk 9 atomicio.c compat.c fake-rfc2553.c
  /bootable/recovery/
verifier_test.sh 101 expect_fail fake-eocd.zip
  /external/chromium_org/chromeos/dbus/
gsm_sms_client.cc 256 FakeGsmSMSClient* fake = new FakeGsmSMSClient(); local
257 fake->set_sms_test_message_switch_present(
260 return fake;
  /external/chromium_org/third_party/libxslt/libexslt/
functions.c 282 xmlNodePtr paramNode, oldInsert, fake; local
404 fake = xmlNewDocNode(tctxt->output, NULL,
405 (const xmlChar *)"fake", NULL);
407 tctxt->insert = fake;
430 if (fake->children != NULL) {
432 xmlDebugDumpNode (stderr, fake, 1);
438 xmlFreeNode(fake);
441 xmlFreeNode(fake);
  /external/valgrind/main/VEX/priv/
host_x86_defs.c 67 vex_printf("%%fake%d", r);
2029 # define fake macro
2041 # undef fake macro
2099 # define fake macro
3299 # undef fake macro
    [all...]
host_amd64_defs.c 68 vex_printf("%%fake%d", r);
2279 # define fake macro
3504 # undef fake macro
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
file_watcher.js 115 * Changes the watched directory. In case of a fake entry, the watch is
116 * just released, since there is no reason to track a fake directory.
119 * fake entry.
path_util.js 16 DRIVE_OFFLINE: 'drive_offline', // A fake root. Not the actual filesystem.
17 DRIVE_SHARED_WITH_ME: 'drive_shared_with_me', // A fake root.
18 DRIVE_RECENT: 'drive_recent' // A fake root.
30 DRIVE_OFFLINE: '/drive_offline', // A fake root. Not the actual filesystem.
31 DRIVE_SHARED_WITH_ME: '/drive_shared_with_me', // A fake root.
32 DRIVE_RECENT: '/drive_recent' // A fake root.
55 * Checks if the given path represents a special search. Fake entries in
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
factory.py 120 by real ports. This does not include any "fake" names like "test"

Completed in 475 milliseconds

1 2 3