HomeSort by relevance Sort by last modified time
    Searched defs:proto (Results 1 - 25 of 616) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-1217.js 30 var proto = RegExp.prototype; variable
31 assertEquals("[object RegExp]", Object.prototype.toString.call(proto));
33 assertEquals("(?:)", proto.source);
34 assertEquals(false, proto.global);
35 assertEquals(false, proto.multiline);
36 assertEquals(false, proto.ignoreCase);
37 assertEquals(0, proto.lastIndex);
39 assertEquals("/(?:)/", proto.toString());
41 var execResult = proto.exec("argle");
47 assertTrue(proto.test("argle"))
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1217.js 30 var proto = RegExp.prototype; variable
31 assertEquals("[object RegExp]", Object.prototype.toString.call(proto));
33 assertEquals("", proto.source);
34 assertEquals(false, proto.global);
35 assertEquals(false, proto.multiline);
36 assertEquals(false, proto.ignoreCase);
37 assertEquals(0, proto.lastIndex);
39 assertEquals("/(?:)/", proto.toString());
41 var execResult = proto.exec("argle");
47 assertTrue(proto.test("argle"))
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-functions-prototype.js 35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
37 constructor.prototype = proto;
  /external/v8/test/mjsunit/
array-functions-prototype.js 35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
37 constructor.prototype = proto;
  /external/chromium_org/v8/test/webkit/
dictionary-prototype-caching.js 30 var proto = {protoProp: "PASS", propToRemove: "foo"};
31 var o = { __proto__: proto };
33 delete proto.propToRemove;
35 // Prototype lookup caching will attempt to convert proto back to an ordinary structure
40 delete proto.protoProp;
41 proto.fakeProtoProp = "FAIL";
48 var proto = {a:1, b:"meh", c:2};
49 var o = { __proto__: proto };
51 delete proto.b;
52 proto.d = 3
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_deny.js 14 var proto = Object.create(HTMLElement.prototype);
16 proto.createdCallback = function() {
21 DocumentNatives.RegisterElement('webview', {prototype: proto});
25 delete proto.createdCallback;
26 delete proto.enteredDocumentCallback;
27 delete proto.leftDocumentCallback;
28 delete proto.attributeChangedCallback;
web_view.js 148 WebViewInternal.maybeRegisterExperimentalAPIs = function(proto) {}
920 var proto = Object.create(HTMLObjectElement.prototype);
922 proto.createdCallback = function() {
929 proto.attributeChangedCallback = function(name, oldValue, newValue) {
937 proto.attachedCallback = function() {
944 proto.enteredViewCallback = proto.attachedCallback;
948 prototype: proto});
950 delete proto.createdCallback;
951 delete proto.attachedCallback
    [all...]
web_view_experimental.js 168 WebViewInternal.maybeRegisterExperimentalAPIs = function(proto, secret) {
169 proto.clearData = function(var_args) {
174 proto.getUserAgent = function() {
178 proto.isUserAgentOverridden = function() {
182 proto.setUserAgentOverride = function(userAgentOverride) {
186 proto.captureVisibleRegion = function(spec, callback) {
  /external/chromium_org/v8/test/cctest/
test-global-object.cc 42 v8::Handle<v8::Object> proto = v8::Object::New(); local
45 proto->Set(var_name, v8_num(100));
46 global->SetPrototype(proto);
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-1344252.js 53 var proto = new Object(); class
54 proto.__defineSetter__('y', function (value) { result_y = value; });
57 f.__proto__ = proto;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array type
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array type
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array type
25 type func = Function of proto * expr
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 53 var proto = new Object(); class
54 proto.__defineSetter__('y', function (value) { result_y = value; });
57 f.__proto__ = proto;
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ipt_ECN.h 37 } proto; member in struct:ipt_ECN_info
  /dalvik/libdex/
DexProto.h 121 * Return the utf-8 encoded descriptor string from the proto of a MethodId.
126 DexProto proto; local
128 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId);
129 return dexProtoGetMethodDescriptor(&proto, pCache);
134 * proto of a MethodId. The returned pointer must be free()ed by the
140 DexProto proto; local
142 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId);
143 return dexProtoCopyMethodDescriptor(&proto);
188 int dexProtoCompareToDescriptor(const DexProto* proto, const char* descriptor);
195 int dexProtoCompareToParameterDescriptors(const DexProto* proto,
203 const DexProto* proto; member in struct:DexParameterIterator
    [all...]
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /external/clang/test/PCH/
types.h 36 typedef float proto(float, float, ...); typedef
  /external/clang/test/Sema/
knr-def-call.c 32 void proto(int);
33 void proto(x) function
39 proto(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}
40 (&proto)(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ECN.h 28 } proto; member in struct:ipt_ECN_info
ipt_ecn.h 30 } proto; member in struct:ipt_ecn_info
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_ECN.h 28 } proto; member in struct:ipt_ECN_info
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 25 (* proto - This type represents the "prototype" for a function, which captures
28 type proto = Prototype of string * string array type
31 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 28 (* proto - This type represents the "prototype" for a function, which captures
31 type proto = type
36 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 31 (* proto - This type represents the "prototype" for a function, which captures
34 type proto = type
39 type func = Function of proto * expr

Completed in 1281 milliseconds

1 2 3 4 5 6 7 8 91011>>