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

1 2

  /external/clang/test/Preprocessor/
comment_save_macro.c 2 // CHECK-C: boo bork bar // zot
5 // CHECK-CC: boo bork /* blah*/ bar // zot
8 // CHECK: boo bork bar
12 boo FOO bar // zot
  /external/clang/test/CodeGen/
preserve-call-conv.c 14 void boo() __attribute__((preserve_all)) { function
15 // CHECK-LABEL: define preserve_allcc void @boo()
  /toolchain/binutils/binutils-2.27/gold/testsuite/
gc_orphan_section_test.cc 30 int boo __attribute__((__section__("_boo"))) = 1; variable
  /external/clang/test/Sema/
preserve-call-conv.c 21 void __attribute__((preserve_all)) boo(void *ptr) { function
27 void (__attribute__((preserve_all)) *pboo1)(void *) = boo;
29 void (__attribute__((cdecl)) *pboo2)(void *) = boo; // expected-warning {{incompatible pointer types initializing 'void (*)(void *) __attribute__((cdecl))' with an expression of type 'void (void *) __attribute__((preserve_all))'}}
30 void (*pboo3)(void *) = boo; // expected-warning {{incompatible pointer types initializing 'void (*)(void *)' with an expression of type 'void (void *) __attribute__((preserve_all))'}}
  /external/mockito/src/test/java/org/mockitousage/verification/
PrintingVerboseTypesWithArgumentsTest.java 23 class Boo {
34 Boo boo = mock(Boo.class); local
35 boo.withLong(100);
39 verify(boo).withLong(eq(100));
52 Boo boo = mock(Boo.class); local
53 boo.withLongAndInt(100, 200)
70 Boo boo = mock(Boo.class); local
94 Boo boo = mock(Boo.class); local
    [all...]
  /external/mockito/src/test/java/org/mockitousage/stubbing/
SmartNullsStubbingTest.java 46 void boo(); method in interface:SmartNullsStubbingTest.Bar
62 void boo() {} method in class:SmartNullsStubbingTest.Foo
70 foo.boo();
80 bar.boo();
117 smartNull.boo();
131 smartNull.boo();
  /external/vboot_reference/tests/futility/
test_main.sh 50 cp ${FUTILITY} boo
51 ./boo show ${SCRIPTDIR}/data/rec_kernel_part.bin | grep ${SHA}
60 ./boo | grep Usage:
63 rm -f ${TMP}* vbutil_key vbutil_keyblock show muggle buggle boo
  /build/kati/testcase/
define_with_comments.mk 9 endef # boo
  /external/llvm/test/MC/ARM/
comment.s 6 bl boo@plt should be ignored
25 @CHECK: bl boo
  /development/vndk/tools/header-checker/tests/input/
example1.h 47 int boo (const CPPHello, int *, float *) { function
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
tree-rewrite.rb 656 a : 'boo' ID INT -> 'boo' ^(ID INT) ;
666 s : 'boo' a* b ; // don't reset s.tree to b.tree due to 'boo'
675 a : 'boo' ID INT -> ^('boo' ^(ID INT)) ;
685 s : ^('boo' a* b) ; // don't reset s.tree to b.tree due to 'boo'
694 a : 'boo' ID INT -> ^('boo' ^(ID INT))
    [all...]
  /build/blueprint/parser/
parser_test.go 403 boo = baz
404 boo += foo
513 Name: "boo",
605 Name: "boo",
719 boo = baz
720 boo += foo
837 Name: "boo",
934 Name: "boo",
  /external/clang/test/SemaCXX/
uninitialized.cpp 16 int boo(int& x);
33 int i = boo(i);
67 int i = boo(i);
101 int i = boo(i);
187 S(char (*)[4]) : x(boo(x)) {}
    [all...]
typo-correction.cpp 230 // 'boo' to 'bool' is the same edit distance as correcting 'boo' to 'foo'.
231 class bar : boo { }; // expected-error{{unknown class name 'boo'; did you mean 'foo'?}}
  /prebuilts/go/darwin-x86/src/html/template/
url_test.go 161 srcsetFilterAndEscaper(" /foo/bar.png 200w, /baz/boo(1).png")
  /prebuilts/go/linux-x86/src/html/template/
url_test.go 161 srcsetFilterAndEscaper(" /foo/bar.png 200w, /baz/boo(1).png")
  /external/python/cpython2/Lib/test/
test_optparse.py 638 make_option("-b", "--boo", type="int", dest='boo'),
655 self.assertParseFail(["--boo=x5"],
656 "option --boo: invalid integer value: 'x5'")
659 self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, [])
663 {'a': "", 'boo': None, 'foo': ["blah", ""]},
669 'boo': None,
675 {'a': "bc", 'boo': None, 'foo': None},
680 {'a': "34", 'boo': None, 'foo': None},
685 {'a': None, 'boo': 34, 'foo': None}
    [all...]
  /external/python/cpython3/Lib/test/
test_optparse.py 645 make_option("-b", "--boo", type="int", dest='boo'),
662 self.assertParseFail(["--boo=x5"],
663 "option --boo: invalid integer value: 'x5'")
666 self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, [])
670 {'a': "", 'boo': None, 'foo': ["blah", ""]},
676 'boo': None,
682 {'a': "bc", 'boo': None, 'foo': None},
687 {'a': "34", 'boo': None, 'foo': None},
692 {'a': None, 'boo': 34, 'foo': None}
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t051treeRewriteAST.py 1078 a : 'boo' ID INT -> 'boo' ^(ID INT) ;
1089 s : 'boo' a* b ; // don't reset s.tree to b.tree due to 'boo'
1098 "boo abc 34")
1099 self.assertEquals("boo 34", found)
1107 a : 'boo' ID INT -> ^('boo' ^(ID INT)) ;
1118 s : ^('boo' a* b) ; // don't reset s.tree to b.tree due to 'boo'
    [all...]
  /external/vboot_reference/futility/
cmd_show.c 702 goto boo;
715 boo:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_optparse.py 637 make_option("-b", "--boo", type="int", dest='boo'),
654 self.assertParseFail(["--boo=x5"],
655 "option --boo: invalid integer value: 'x5'")
658 self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, [])
662 {'a': "", 'boo': None, 'foo': ["blah", ""]},
668 'boo': None,
674 {'a': "bc", 'boo': None, 'foo': None},
679 {'a': "34", 'boo': None, 'foo': None},
684 {'a': None, 'boo': 34, 'foo': None},
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_optparse.py 637 make_option("-b", "--boo", type="int", dest='boo'),
654 self.assertParseFail(["--boo=x5"],
655 "option --boo: invalid integer value: 'x5'")
658 self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, [])
662 {'a': "", 'boo': None, 'foo': ["blah", ""]},
668 'boo': None,
674 {'a': "bc", 'boo': None, 'foo': None},
679 {'a': "34", 'boo': None, 'foo': None},
684 {'a': None, 'boo': 34, 'foo': None}
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_optparse.py 637 make_option("-b", "--boo", type="int", dest='boo'),
654 self.assertParseFail(["--boo=x5"],
655 "option --boo: invalid integer value: 'x5'")
658 self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, [])
662 {'a': "", 'boo': None, 'foo': ["blah", ""]},
668 'boo': None,
674 {'a': "bc", 'boo': None, 'foo': None},
679 {'a': "34", 'boo': None, 'foo': None},
684 {'a': None, 'boo': 34, 'foo': None}
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_optparse.py 637 make_option("-b", "--boo", type="int", dest='boo'),
654 self.assertParseFail(["--boo=x5"],
655 "option --boo: invalid integer value: 'x5'")
658 self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, [])
662 {'a': "", 'boo': None, 'foo': ["blah", ""]},
668 'boo': None,
674 {'a': "bc", 'boo': None, 'foo': None},
679 {'a': "34", 'boo': None, 'foo': None},
684 {'a': None, 'boo': 34, 'foo': None}
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_optparse.py 637 make_option("-b", "--boo", type="int", dest='boo'),
654 self.assertParseFail(["--boo=x5"],
655 "option --boo: invalid integer value: 'x5'")
658 self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, [])
662 {'a': "", 'boo': None, 'foo': ["blah", ""]},
668 'boo': None,
674 {'a': "bc", 'boo': None, 'foo': None},
679 {'a': "34", 'boo': None, 'foo': None},
684 {'a': None, 'boo': 34, 'foo': None}
    [all...]

Completed in 2255 milliseconds

1 2