HomeSort by relevance Sort by last modified time
    Searched defs:proto (Results 1 - 25 of 817) 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/chromium_org/sync/internal_api/public/base/
attachment_id_proto.cc 14 sync_pb::AttachmentIdProto proto; local
17 proto.set_unique_id(guid);
18 return proto;
  /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/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;
  /external/chromium_org/v8/test/cctest/
test-global-object.cc 42 v8::Handle<v8::Object> proto = v8::Object::New(CcTest::isolate()); local
45 proto->Set(var_name, v8_num(100));
46 global->SetPrototype(proto);
  /external/chromium_org/chrome/browser/ui/webui/
sync_internals_browsertest.js 220 'proto': {},
227 '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
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_ecn.h 40 } proto; member in struct:xt_ecn_info
  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ipt_ECN.h 39 } 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
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_ecn.h 40 } proto; member in struct:xt_ecn_info
  /development/ndk/platforms/android-L/include/linux/netfilter_ipv4/
ipt_ECN.h 39 } proto; member in struct:ipt_ECN_info
  /external/chromium_org/sync/api/attachments/
attachment_id.cc 56 sync_pb::AttachmentIdProto proto = CreateAttachmentIdProto(); local
57 return AttachmentId(&proto);
62 const sync_pb::AttachmentIdProto& proto) {
63 sync_pb::AttachmentIdProto copy_of_proto(proto);
71 AttachmentId::AttachmentId(sync_pb::AttachmentIdProto* proto)
72 : proto_(proto) {}
  /external/chromium_org/third_party/dom_distiller_js/package/proto_gen/third_party/dom_distiller_js/
dom_distiller_json_converter.h 5 // proto dependencies
14 namespace proto { namespace in namespace:dom_distiller
18 static dom_distiller::proto::DistilledContent ReadFromValue(const base::Value* json) {
19 dom_distiller::proto::DistilledContent message;
32 return dom_distiller::proto::DistilledContent();
35 static scoped_ptr<base::Value> WriteToValue(const dom_distiller::proto::DistilledContent& message) {
46 static dom_distiller::proto::PaginationInfo ReadFromValue(const base::Value* json) {
47 dom_distiller::proto::PaginationInfo message;
74 return dom_distiller::proto::PaginationInfo();
77 static scoped_ptr<base::Value> WriteToValue(const dom_distiller::proto::PaginationInfo& message)
    [all...]
  /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/
xt_ecn.h 30 } proto; member in struct:xt_ecn_info
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ECN.h 30 } proto; member in struct:ipt_ECN_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_ecn.h 32 } proto; member in struct:xt_ecn_info
  /external/kernel-headers/original/uapi/linux/netfilter_ipv4/
ipt_ECN.h 30 } proto; member in struct:ipt_ECN_info

Completed in 451 milliseconds

1 2 3 4 5 6 7 8 91011>>