HomeSort by relevance Sort by last modified time
    Searched defs:foo (Results 1176 - 1200 of 2113) sorted by null

<<41424344454647484950>>

  /external/chromium_org/third_party/android_crazy_linker/src/tests/
test_two_shared_relros.cpp 34 RelroLibrary foo; local
41 foo.Init("libfoo_with_relro.so", context);
58 printf("Child waiting for foo relro fd\n");
60 foo.ReceiveRelroInfo(pipes[0]);
61 foo.UseSharedRelro(context);
86 printf("Parent enabling foo RELRO sharing\n");
88 foo.EnableSharedRelro(context);
89 foo.SendRelroInfo(pipes[1]);
118 foo.Close();
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
template_util_unittest.cc 84 typedef const int foo; typedef
85 value = type_equals_<const foo, const int>::value;
  /external/chromium_org/third_party/sfntly/cpp/src/test/
smart_pointer_test.cc 24 class Foo : public RefCounted<Foo> {
27 int foo() { return foo_; } function in class:Foo
33 Ptr<Foo> p1;
34 p1 = new Foo();
36 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_);
38 Ptr<Foo> p2;
42 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_);
44 Ptr<Foo> p3;
49 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_)
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDrawTextBox.cpp 16 foo = 100, enumerator in enum:SkDrawTextBox_Properties
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
curpos-err.asm 2 global foo
6 dd foo-$
8 call foo
10 foo: label
14 dd foo-$
15 dd $-foo ; illegal
18 dd foo+4-$ ; with constant
19 dd $-baz+foo+4-$ ; both local and cross-segment (legal)
20 dd baz+foo+4-$-$ ; ditto, slightly different
21 dd (bar-$)+(foo-$) ; illegal (too many cross-segment
    [all...]
curpos.asm 2 global foo
6 dd foo-$
8 call foo
10 foo: label
14 dd foo-$
15 ;dd $-foo ; illegal
18 dd foo+4-$ ; with constant
19 dd $-baz+foo+4-$ ; both local and cross-segment (legal)
20 dd baz+foo+4-$-$ ; ditto, slightly different
21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
win32-curpos.asm 2 global foo
6 dd foo-$
8 call foo
10 foo: label
14 dd foo-$
15 ;dd $-foo ; illegal
18 dd foo+4-$ ; with constant
19 dd $-baz+foo+4-$ ; both local and cross-segment (legal)
20 dd baz+foo+4-$-$ ; ditto, slightly different
21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
win64-curpos.asm 2 global foo
6 dd foo-$
8 call foo
10 foo: label
14 dd foo-$
15 ;dd $-foo ; illegal
18 dd foo+4-$ ; with constant
19 dd $-baz+foo+4-$ ; both local and cross-segment (legal)
20 dd baz+foo+4-$-$ ; ditto, slightly different
21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment
    [all...]
win64-dataref2.asm 7 mov eax, [foo wrt rip]
8 shl dword [foo wrt rip], 5
9 cmp dword [foo wrt rip], 16
10 cmp word [foo wrt rip], 10000
11 cmp dword [foo wrt rip], 10000000
16 foo: label
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
destructor_access_finalized_field.h 14 bool foo() { return true; } function in class:WebCore::Other
21 bool foo() { return true; } function in class:WebCore::HeapObject
virtual_and_trace_after_dispatch.h 27 virtual void foo() { } function in class:WebCore::B
  /external/chromium_org/v8/test/cctest/
test-platform.cc 88 "function foo() {"
93 v8::Local<v8::Function> foo = local
94 v8::Local<v8::Function>::Cast(global_object->Get(v8_str("foo")));
96 v8::Local<v8::Value> result = foo->Call(global_object, 0, NULL);
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate-with.js 51 assertEquals('local', exec_state.frame(0).evaluate('foo').value());
76 var foo = "global"; variable
77 eval("with({bar:'with'}) { (function g() { var foo = 'local'; debugger; })(); }");
function-bind.js 31 function foo(x, y, z) { function
35 assertEquals(3, foo.length);
37 var f = foo.bind(foo);
38 assertEquals([foo, 3, 1], f(1, 2, 3));
41 f = foo.bind(foo, 1);
42 assertEquals([foo, 3, 1], f(2, 3));
45 f = foo.bind(foo, 1, 2)
    [all...]
smi-negative-zero.js 107 function foo(x) { function
112 assertEquals(-0, foo(x));
113 assertEquals(-0, foo(x));
string-index.js 32 var foo = "Foo"; variable
33 assertEquals("Foo", foo);
34 assertEquals("F", foo[0]);
35 assertEquals("o", foo[1]);
36 assertEquals("o", foo[2]);
40 assertEquals("F", foo[0]);
41 assertEquals("o", foo[1]);
42 assertEquals("o", foo[2])
179 var foo = ['a12', ['a', 2, 'c'], 'a31', 42]; variable
    [all...]
  /external/chromium_org/v8/test/mjsunit/lithium/
StoreKeyed.js 30 function foo(a, i, v) { function
48 foo(A1, 1, 3.4);
49 foo(A2, 1, 3.4);
50 %OptimizeFunctionOnNextCall(foo);
51 foo(A3, 1, 3.4);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1233.js 38 var x = { foo: delicate };
42 Object.getOwnPropertyDescriptor(x, "foo");
regress-calls-with-migrating-prototypes.js 38 function foo(o) { function
41 foo(o1);
42 foo(o1);
43 foo(o2);
44 foo(o1);
46 %OptimizeFunctionOnNextCall(foo);
47 assertEquals(1, foo(o2));
49 assertEquals(3, foo(o2));
regress-map-invalidation-2.js 33 var outer = { foo: 1 };
35 var n = outer.foo;
37 n += c.x + outer.foo;
  /external/chromium_org/v8/test/webkit/
dfg-array-pop-side-effects.js 28 function foo(a, b) { function
59 shouldBe("foo(a, b)", expected);
dfg-dead-min-two-args.js 28 function foo(a, b) { function
49 var result = eval(empty + "foo(x, y)");
dfg-dead-variable-on-exit.js 53 function foo(a, b) { function
84 code += "); foo(firstArg, secondArg)";
  /external/chromium_org/v8/test/webkit/fast/js/kde/
scope.js 49 P = { foo : 1, bar : 2, baz : 3 }
58 shouldBe("g", "'foo'"); //Before the eval, g was in outer scope, but not after!
  /external/clang/test/Analysis/
method-call-path-notes.cpp 9 void foo() {} function in class:TestInstanceCall
14 p->foo(); // expected-warning {{Called C++ object pointer is uninitialized}} expected-note {{Called C++ object pointer is uninitialized}}
19 p->foo(); // expected-warning {{Called C++ object pointer is null}} expected-note {{Called C++ object pointer is null}}
25 p->foo(); // expected-warning {{Called C++ object pointer is null}} expected-note {{Called C++ object pointer is null}}
30 p->foo(); // expected-warning {{Called C++ object pointer is null}} expected-note{{Called C++ object pointer is null}}
36 IC_Ptr bar = &TestInstanceCall::foo;
42 const_cast<TestInstanceCall *>(p)->foo(); // expected-warning {{Called C++ object pointer is null}} expected-note {{Called C++ object pointer is null}}
    [all...]

Completed in 1564 milliseconds

<<41424344454647484950>>