HomeSort by relevance Sort by last modified time
    Searched full:proto1 (Results 1 - 25 of 28) sorted by null

1 2

  /external/clang/test/SemaObjCXX/
overload-1.mm 3 @protocol Proto1 @end
7 void f(id<Proto1> *) { } // expected-note {{previous definition is here}}
9 void f(id<Proto1, Proto2> *) { } // expected-error {{conflicting types for 'f'}}
11 void f(Class<Proto1> *) { } // expected-note {{previous definition is here}}
13 void f(Class<Proto1, Proto2> *) { } // expected-error {{conflicting types for 'f'}}
17 void f(I<Proto1> *) { } // expected-note {{previous definition is here}}
19 void f(I<Proto1, Proto2> *) { } // expected-error {{conflicting types for 'f'}}
23 void f1(I<Proto1> *) { }
25 void f1(I1<Proto1, Proto2> *) { }
  /external/v8/test/mjsunit/
enumeration-order.js 72 proto2[3] = 0; // also on the 'proto1' object
78 var proto1 = {};
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;
99 '3', '5', // indexed from 'proto1'
    [all...]
  /external/clang/test/CodeGenObjC/
default-property-synthesis.m 19 @protocol PROTO1 <PROTO>
28 @interface Sub : Super <PROTO1>
  /external/clang/test/Rewriter/
rewrite-protocol-qualified.mm 20 @protocol Proto1, Proto2;
25 unsigned char func(id<Proto1, Proto2> inProxy);
instancetype-test.mm 18 @protocol Proto1
57 [[Subclass1<Proto1> alloc] methodInProto2]; // expected-warning{{method '-methodInProto2' not found (return type defaults to 'id')}}
61 Subclass1<Proto1> *sc1proto1 = 0;
69 // Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init];
  /external/clang/test/SemaObjC/
class-proto-1.m 9 @protocol PROTO1
instancetype.m 17 @protocol Proto1
56 typedef Subclass1<Proto1> SC1Proto1;
62 Subclass1<Proto1> *sc1proto1 = 0;
72 Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init];
125 @interface Subclass3 <Proto1, Proto2>
137 @protocol Proto3 <Proto1, Proto2>
protocols.m 18 @protocol PROTO1
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py     [all...]
  /external/chromium/net/tools/testserver/
chromiumsync_test.py 256 proto1, result1 = DoCommit(name='namae', id_string='Foo',
261 parent=proto1)
264 parent=proto1, prev=proto2)
267 for p, r in [(proto1, result1), (proto2, result2), (proto3, result3)]:
277 self.assertEqual(result1.parent_id_string, proto1.parent_id_string)
311 (proto1b, result1b, proto1),
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h 66 // The name is coerced to lower-case to emulate proto1 behavior. People
cpp_unittest.cc 610 // field names. Some old proto1 .protos unfortunately used camel-case field
611 // names. In proto1, these names were forced to lower-case. So, we do the
    [all...]
  /external/protobuf/src/google/protobuf/
unittest.proto 56 // The field name "b" fails to compile in proto1 because it conflicts with
58 // This file needs to compile in proto1 to test backwards-compatibility.
385 // parents. This is NOT possible in proto1; only proto2. When attempting
386 // to compile with proto1, this will emit an error; so we only include it
descriptor.proto 234 // outer class with the given name. This applies to both Proto1
283 // Set true to use the old proto1 MessageSet wire format for extensions.
305 // from proto1 easier; new code should avoid fields named "descriptor".
text_format.cc 128 // For backwards-compatibility with proto1, we need to allow the 'f' suffix
1009 // We special-case MessageSet elements for compatibility with proto1.
    [all...]
text_format_unittest.cc 395 // end. This is needed for backwards-compatibility with proto1.
    [all...]
repeated_field.h 408 // subclass it in one place as a hack for compatibility with proto1. The
    [all...]
  /external/ipsec-tools/src/racoon/
proposal.h 52 * +------- proto1[trans1, trans2, trans3, ...]
  /external/clang/lib/AST/
ASTImporter.cpp 514 const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1);
516 if (Proto1->getNumArgs() != Proto2->getNumArgs())
518 for (unsigned I = 0, N = Proto1->getNumArgs(); I != N; ++I) {
520 Proto1->getArgType(I),
524 if (Proto1->isVariadic() != Proto2->isVariadic())
526 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
528 if (Proto1->getExceptionSpecType() == EST_Dynamic) {
529 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
531 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
533 Proto1->getExceptionType(I)
    [all...]
  /external/v8/test/cctest/
test-api.cc 4331 v8::Handle<v8::Object> proto1 = local
7764 Local<Value> proto1 = o1->GetPrototype(); local
    [all...]
  /external/openssh/
clientloop.c 150 static int escape_char1; /* Escape character. (proto1 only) */
151 static int escape_pending1; /* Last character was an escape (proto1 only) */
964 * Process the characters one by one, call with c==NULL for proto1 case.
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
ParseExprCXX.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 161 // We special-case MessageSet elements for compatibility with proto1.
    [all...]

Completed in 847 milliseconds

1 2