OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Fake
(Results
1 - 7
of
7
) sorted by null
/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);
/external/webrtc/talk/app/webrtc/
proxy_unittest.cc
61
BEGIN_PROXY_MAP(
Fake
)
71
class
Fake
: public FakeInterface {
73
static rtc::scoped_refptr<
Fake
> Create() {
74
return new rtc::RefCountedObject<
Fake
>();
87
Fake
() {}
88
~
Fake
() {}
102
fake_ =
Fake
::Create();
109
rtc::scoped_refptr<
Fake
> fake_;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ProxyTest.java
189
class
Fake
extends Proxy {
190
Fake
() {
195
Proxy
fake
= new Proxy(new InvocationHandler() {
local
206
.isProxyClass(
Fake
.class));
208
.isProxyClass(
fake
.getClass()));
/toolchain/binutils/binutils-2.25/opcodes/
d30v-opc.c
414
#define
Fake
(Fa2 + 1) /* Place holder for "id" field in mvfsys and mvtsys. */
472
{ SHORT_C1, 0, { Ra, Cb,
Fake
} }, /* Ra,Cb (mvfsys) */
473
{ SHORT_C2, 0, { Ca, Rb,
Fake
} }, /* Ca,Rb (mvtsys) */
/external/clang/test/SemaCXX/
member-pointer.cpp
75
namespace
Fake
85
int *pni = &
Fake
::i;
89
void (*pnf)() = &
Fake
::f;
/external/clang/utils/TableGen/
ClangAttrEmitter.cpp
169
bool
Fake
;
174
attrName(Attr), isOpt(false),
Fake
(false) {
189
bool isFake() const { return
Fake
; }
190
void setFake(bool
fake
) {
Fake
=
fake
; }
[
all
...]
/external/clang/include/clang/Serialization/
ASTReader.h
460
enum class PendingFakeDefinitionKind { NotFake,
Fake
, FakeLoaded };
[
all
...]
Completed in 697 milliseconds