OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getProto
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/v8/test/mjsunit/
proto-accessor.js
33
var
getProto
= desc.get;
87
assertEquals(
getProto
.call(1), Number.prototype);
88
assertEquals(
getProto
.call(true), Boolean.prototype);
89
assertEquals(
getProto
.call(false), Boolean.prototype);
90
assertEquals(
getProto
.call('s'), String.prototype);
91
assertEquals(
getProto
.call(Symbol()), Symbol.prototype);
93
assertThrows(function() {
getProto
.call(null); }, TypeError);
94
assertThrows(function() {
getProto
.call(undefined); }, TypeError);
123
assertEquals(
getProto
.call(object), proto);
128
assertEquals(
getProto
.call(object), null)
[
all
...]
/device/google/accessory/arduino/USB_Host_Shield/
Usb.h
142
byte
getProto
( byte addr, byte ep, byte interface, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
184
inline byte USB::
getProto
( byte addr, byte ep, byte interface, char* dataptr, unsigned int nak_limit ) {
/external/clang/utils/TableGen/
NeonEmitter.cpp
382
std::string
getProto
() const { return Proto; }
[
all
...]
Completed in 246 milliseconds