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

1 2 3

  /external/clang/test/Index/
index-kernel-invocation.cpp 3 // CHECK: [indexDeclaration]: kind: function | name: foobar
4 void foobar(void);
complete-macros.c 3 #define FOO(Arg1,Arg2) foobar
  /external/clang/test/SemaCXX/
libstdcxx_atomic_ns_hack.cpp 16 typedef int foobar; typedef in namespace:std::__atomic0
19 typedef void foobar; typedef in namespace:std::__atomic1
30 std::foobar fb;
33 using T = std::foobar; // expected-error {{different types ('std::foobar' (aka 'int') vs 'void')}}
cxx11-crashes.cpp 58 void foobar() function in namespace:rdar12542261
crashes.cpp 154 const fltSemantics &foobar();
158 const fltSemantics &Sem = foobar();
  /external/clang/test/CodeGen/
2010-02-16-DbgScopes.c 9 extern void foobar();
14 foobar();
  /external/clang/test/Sema/
attr-unknown.c 3 int x __attribute__((foobar)); // expected-warning {{unknown attribute 'foobar' ignored}}
predefined-function.c 28 int foobar(int); // note {{previous declaration is here}}
29 int foobar() // error {{conflicting types for 'foobar'}} function
  /external/android-mock/tests/com/google/android/testing/mocking/
ClassHasFinalMethods.java 32 public final int foobar() { method in class:ClassHasFinalMethods
  /external/e2fsprogs/lib/et/
init_et.c 27 struct foobar { struct
36 struct foobar * new_et;
41 new_et = (struct foobar *) malloc(sizeof(struct foobar));
com_right.c 73 struct foobar { struct
93 struct foobar *f;
  /external/clang/test/Parser/
cxx11-base-spec-attributes.cpp 10 struct H : [[unknown::foobar]] A {}; // expected-warning {{unknown attribute 'foobar' ignored}}
  /external/compiler-rt/lib/tsan/lit_tests/
race_with_finished_thread.cc 12 void __attribute__((noinline)) foobar(int *p) { function
17 foobar(&g_data);
39 // CHECK: #0 foobar
  /external/clang/test/CodeGenCXX/
union-dtor.cpp 16 union FooBar {
17 FooBar() {}
18 ~FooBar() {}
32 FooBar foobar; variable
template-instantiation.cpp 70 void foobar(T2 foo) { function in class:test2::C
79 // or foobar(test at the top).
80 a.foobar(0.0);
  /external/llvm/test/MC/COFF/
diff.s 11 _foobar: # @foobar
  /external/llvm/test/MC/ELF/
tls.s 12 foobar: label
15 // CHECK: (('st_name', 0x0000001f) # 'foobar'
  /external/webkit/LayoutTests/fast/url/script-tests/
port.js 20 shouldBe("canonicalize('foobar://www.example.com:80/')",
21 "'foobar://www.example.com:80/'");
relative.js 52 ["data:foobar", "baz.html", ""],
53 ["data:foobar", "data:baz", "data:baz"],
54 ["data:foobar", "data:/base", "data:/base"],
56 ["data:foobar", "http://host/", "http://host/"],
57 ["data:foobar", "http:host", "http://host/"],
  /external/clang/test/Analysis/
unreachable-code-path.c 128 enum foobar { FOO, BAR }; enum
130 void test11(enum foobar fb) {
  /external/clang/test/FixIt/
fixit.c 42 int test_cond(int y, int fooBar) { // expected-note {{here}}
43 // CHECK: int x = y ? 1 : 4+fooBar;
44 int x = y ? 1 4+foobar; // expected-error {{expected ':'}} expected-error {{undeclared identifier}} expected-note {{to match}}
  /external/antlr/antlr-3.4/runtime/Python/tests/
t026actions.py 52 cStream = antlr3.StringStream('foobar _Ab98 \n A12sdf')
63 'action;u\'foobar\' 4 1 0 -1 0 0 5;attribute;action;u\'_Ab98\' 4 1 7 -1 0 7 11;attribute;action;u\'A12sdf\' 4 2 1 -1 0 15 20;attribute;')
  /external/v8/test/mjsunit/
object-define-property.js 261 Object.defineProperty(obj1, "foobar", dataConfigurable);
262 desc = Object.getOwnPropertyDescriptor(obj1, "foobar");
263 assertEquals(obj1.foobar, 1000);
271 obj1.foobar = 1001;
272 assertEquals(obj1.foobar, 1000);
275 // Redefine to writable descriptor - now writing to foobar should be allowed.
276 Object.defineProperty(obj1, "foobar", dataWritable);
277 desc = Object.getOwnPropertyDescriptor(obj1, "foobar");
278 assertEquals(obj1.foobar, 3000);
288 obj1.foobar = 1001
    [all...]
argument-named-arguments.js 61 var arguments = "foobar";
64 assertEquals("foobar", '' + arguments);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
actions.rb 62 @lexer::init { @foobar = 'attribute' }
82 say(@foobar)
91 lexer = AllKindsOfActions::Lexer.new( "foobar _Ab98 \n A12sdf" )
103 "foobar" 4 1 0 -1 :default 0 5
141 lexer = Finally::Lexer.new( 'foobar' )

Completed in 699 milliseconds

1 2 3