Home
last modified time | relevance | path

Searched refs:proto1 (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/mjsunit/
Denumeration-order.js78 var proto1 = {}; variable
79 proto1[5] = 0;
80 proto1.d = 0;
81 proto1[3] = 0;
82 proto1.e = 0;
83 proto1.f = 0; // also on the 'o' object
94 o.__proto__ = proto1;
95 proto1.__proto__ = proto2;
/external/protobuf/python/google/protobuf/internal/
Dreflection_test.py390 proto1 = unittest_pb2.TestAllTypes()
393 proto1.MergeFrom(proto2)
394 self.assertTrue(proto1.HasField('optional_nested_message'))
395 proto1.ClearField('optional_nested_message')
396 self.assertTrue(not proto1.HasField('optional_nested_message'))
1272 proto1 = unittest_pb2.TestAllTypes()
1273 test_util.SetAllFields(proto1)
1275 string1 = proto1.SerializeToString()
1279 self.assertEqual(proto2, proto1)
1283 proto1 = unittest_pb2.TestAllTypes()
[all …]
/external/curl/packages/vms/
Dbuild_libcurl_pc.com163 $ proto1 = "DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS"
165 $ proto = proto1 + proto2
/external/protobuf/src/google/protobuf/
Dunittest.proto62 // The field name "b" fails to compile in proto1 because it conflicts with
64 // This file needs to compile in proto1 to test backwards-compatibility.
432 // parents. This is NOT possible in proto1; only proto2. When attempting
433 // to compile with proto1, this will emit an error; so we only include it
Ddescriptor.proto346 // Set true to use the old proto1 MessageSet wire format for extensions.
368 // from proto1 easier; new code should avoid fields named "descriptor".
/external/hyphenation-patterns/es/
Dhyph-es.pat.txt3127 proto1á2
3128 proto1é2
3129 proto1í2
3130 proto1ó2
3131 proto1ú2
/external/nanopb-c/generator/proto/google/protobuf/
Ddescriptor.proto308 // Set true to use the old proto1 MessageSet wire format for extensions.
330 // from proto1 easier; new code should avoid fields named "descriptor".
/external/v8/test/cctest/
Dtest-api.cc6771 v8::Local<v8::Object> proto1 = in THREADED_TEST() local
6775 CHECK(!proto1->Has(env1.local(), v8_str("custom")).FromJust()); in THREADED_TEST()
10702 Local<Value> proto1 = o1->GetPrototype(); in THREADED_TEST() local
10703 CHECK(proto1->IsObject()); in THREADED_TEST()
10704 CHECK(proto1.As<v8::Object>()->Equals(context.local(), o2).FromJust()); in THREADED_TEST()