/external/lldb/source/Interpreter/ |
D | Property.cpp | 26 Property::Property (const PropertyDefinition &definition) : in Property() argument 27 m_name (definition.name), in Property() 28 m_description (definition.description), in Property() 30 m_is_global (definition.global) in Property() 32 switch (definition.type) in Property() 40 m_value_sp.reset (new OptionValueArch(definition.default_cstr_value)); in Property() 50 …new OptionValueArray(OptionValue::ConvertTypeToMask((OptionValue::Type)definition.default_uint_val… in Property() 58 if (definition.default_cstr_value) in Property() 59 …m_value_sp.reset (new OptionValueBoolean(Args::StringToBoolean (definition.default_cstr_value, fal… in Property() 61 m_value_sp.reset (new OptionValueBoolean(definition.default_uint_value != 0)); in Property() [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/ |
D | CustomElements.js | 327 var definition = scope.getRegisteredDefinition(is || node.localName); 328 if (definition) { 329 if (is && definition.tag == node.localName) { 330 return upgradeWithDefinition(node, definition); 331 } else if (!is && !definition.extends) { 332 return upgradeWithDefinition(node, definition); 337 function upgradeWithDefinition(element, definition) { argument 339 if (definition.is) { 340 element.setAttribute("is", definition.is); 342 implementPrototype(element, definition); [all …]
|
D | webcomponents-lite.js | 1388 var definition = scope.getRegisteredDefinition(is || node.localName); 1389 if (definition) { 1390 if (is && definition.tag == node.localName) { 1391 return upgradeWithDefinition(node, definition); 1392 } else if (!is && !definition.extends) { 1393 return upgradeWithDefinition(node, definition); 1398 function upgradeWithDefinition(element, definition) { argument 1400 if (definition.is) { 1401 element.setAttribute("is", definition.is); 1403 implementPrototype(element, definition); [all …]
|
/external/clang/test/SemaObjC/ |
D | check-dup-objc-decls-1.m | 3 @interface Foo // expected-note {{previous definition is here}} 8 @class Bar; // expected-note {{previous definition is here}} 16 typedef int OBJECT; // expected-note {{previous definition is here}} 21 typedef int Gorf; // expected-note {{previous definition is here}} 23 …{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}} 32 @interface A<P> @end // expected-note {{previous definition is here}} 33 @interface A<Q> @end // expected-error {{duplicate interface definition for class 'A'}} 35 @protocol PP<P> @end // expected-note {{previous definition is here}} 36 @protocol PP<Q> @end // expected-warning {{duplicate protocol definition of 'PP'}} 38 @interface A(Cat)<P> @end // expected-note {{previous definition is here}} [all …]
|
D | category-1.m | 5 @protocol p1,p2,p3; // expected-note {{protocol 'p1' has no definition}} \ 6 // expected-note {{protocol 'p2' has no definition}} 8 …<p1> // expected-warning {{cannot find protocol definition for 'p1'}} expected-note {{previous def… 11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1'… 17 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}} 20 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}} 21 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}} 24 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Catego… 25 @interface MyClass1 (Category7) @end // expected-warning {{duplicate definition of category 'Catego… 26 @interface MyClass1 (Category8) @end // expected-warning {{duplicate definition of category 'Catego… [all …]
|
D | deprecate_function_containers.m | 5 void p_foo() {} // expected-warning {{function definition inside an Objective-C container is deprec… 9 void foo() {} // expected-warning {{function definition inside an Objective-C container is deprecat… 10 inline void v_foo() {} // expected-warning {{function definition inside an Objective-C container is… 11 static int s_foo() {return 0; } // expected-warning {{function definition inside an Objective-C con… 12 static inline int si_val() { return 1; } // expected-warning {{function definition inside an Object… 16 void cat_foo() {} // expected-warning {{function definition inside an Objective-C container is depr… 32 …e_observe_moin1(void (^callback)(id)) { // expected-warning {{function definition inside an Object…
|
D | class-def-test-1.m | 3 @protocol SUPER; // expected-note {{protocol 'SUPER' has no definition}} 5 @interface SUPER <SUPER> @end // expected-warning {{cannot find protocol definition for 'SUPER'}} 7 typedef int INTF; // expected-note {{previous definition is here}} 11 @interface OBJECT @end // expected-note {{previous definition is here}} 13 @interface INTF1 : OBJECT @end // expected-note {{previous definition is here}} 15 @interface INTF1 : OBJECT @end // expected-error {{duplicate interface definition for class 'INTF1'… 19 typedef int OBJECT2; // expected-note 2 {{previous definition is here}}
|
D | class-proto-1.m | 5 @protocol p1,p2,p3; // expected-note {{protocol 'p2' has no definition}} \ 6 // expected-note {{protocol 'p3' has no definition}} 18 @interface E1 <p2> @end // expected-warning {{cannot find protocol definition for 'p2'}} 25 @interface E2 <p1,p2,p3> @end // expected-warning {{cannot find protocol definition for 'p3'}} 42 … UndefinedParentProtocol; // expected-note {{protocol 'UndefinedParentProtocol' has no definition}} 47 …SObject <UndefinedProtocol> // expected-warning {{cannot find protocol definition for 'UndefinedPr…
|
D | method-undefined-warn-1.m | 11 @implementation INTF // expected-warning {{method definition for 'int_meth' not found}} \ 12 // expected-warning {{method definition for 'cls_meth' not found}} \ 13 // expected-warning {{method definition for 'cls_meth1:' not found}} 27 @implementation INTF1 // expected-warning {{method definition for 'int_meth' not found}} \ 28 // expected-warning {{method definition for 'cls_meth' not found}} \ 29 // expected-warning {{method definition for 'cls_meth1:' not found}}
|
D | method-typecheck-1.m | 4 - (void) setMoo: (int) x; // expected-note {{previous definition is here}} 5 - (int) setMoo1: (int) x; // expected-note {{previous definition is here}} 18 + (void) cMoo: (int) x; // expected-note 2 {{previous definition is here}} 28 - (void) setCat: (int) x; // expected-note 2 {{previous definition is here}} 29 + (void) cCat: (int) x; // expected-note {{previous definition is here}} 44 - (float)returnCGFloat; // expected-note {{previous definition is here}}
|
D | ivar-lookup.m | 54 int IVAR; // expected-note 4 {{previous definition is here}} 61 int PIVAR; // expected-note {{previous definition is here}} 137 int d; // expected-note {{previous definition is here}} 138 NSString *e_strong; // expected-note {{previous definition is here}} 139 NSData *f_weak; // expected-note {{previous definition is here}} 140 int g; // expected-note 2 {{previous definition is here}} 145 int g; // expected-note {{previous definition is here}} \
|
D | method-typecheck-2.m | 4 - (void) doSomethingInProtocol: (float) x; // expected-note {{previous definition is here}} 5 + (void) doSomethingClassyInProtocol: (float) x; // expected-note {{previous definition is here}} 11 - (void) doSomething: (float) x; // expected-note {{previous definition is here}} 12 + (void) doSomethingClassy: (int) x; // expected-note {{previous definition is here}}
|
D | method-conflict-1.m | 15 - (void)myMethod1:(NSObject *)object; // broken-note {{previous definition is here}} 30 - (void)myMethod:(id <MyProtocol>)object; // broken-note {{previous definition is here}} 31 - (void)myMethod1:(id <MyProtocol>)object; // broken-note {{previous definition is here}} 47 - (void) test1:(A*) object; // broken-note {{previous definition is here}} 58 - (void) test1:(id) object; // broken-note {{previous definition is here}} 68 - (B*) test2; // broken-note {{previous definition is here}}
|
D | objc2-merge-gc-attribue-decl.m | 16 extern id p3; // expected-note {{previous definition is here}} 19 extern void *p4; // expected-note {{previous definition is here}} 25 extern char* __strong p6; // expected-note {{previous definition is here}} 28 extern __strong char* p7; // expected-note {{previous definition is here}}
|
D | alias-test-2.m | 4 @interface Super @end // expected-note {{previous definition is here}} 6 @interface MyWpModule @end // expected-note {{previous definition is here}} 15 @interface MyAlias : AliasForSuper // expected-error {{duplicate interface definition for class 'My…
|
/external/libxml2/result/ |
D | svg2.rde | 60 4 3 #text 0 1 Java Font definition:Dialog 0 71 4 3 #text 0 1 Java Font definition:Helvetica 0 99 4 3 #text 0 1 Java Font definition:Dialog 0 110 4 3 #text 0 1 Java Font definition:Helvetica 700 159 4 3 #text 0 1 Java Font definition:Dialog 700 170 4 3 #text 0 1 Java Font definition:Dialog 700
|
D | svg2.rdr | 60 4 3 #text 0 1 Java Font definition:Dialog 0 71 4 3 #text 0 1 Java Font definition:Helvetica 0 99 4 3 #text 0 1 Java Font definition:Dialog 0 110 4 3 #text 0 1 Java Font definition:Helvetica 700 159 4 3 #text 0 1 Java Font definition:Dialog 700 170 4 3 #text 0 1 Java Font definition:Dialog 700
|
/external/libxml2/result/schemas/ |
D | derivation-ok-restriction-2-1-1_0_0.err | 1 …th the corresponding 'required' attribute use of the base complex type definition '{http://FOO}typ… 2 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ… 3 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ… 4 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ… 5 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ… 6 …use for the 'required' attribute use 'barB_3' of the base complex type definition '{http://FOO}typ…
|
D | derivation-ok-restriction-4-1-err_0_0.err | 1 …omplex type 'type.A': The complex type definition has an attribute wildcard, but the base complex … 2 …ildcard is not a valid subset of the wildcard in the base complex type definition '{http://FOO}bas… 3 …the attribute wildcard is weaker than the one in the base complex type definition '{http://FOO}bas…
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
D | RegisterAllocator.java | 82 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg); in getCategoryForSsaReg() local 84 if (definition == null) { in getCategoryForSsaReg() 88 return definition.getResult().getCategory(); in getCategoryForSsaReg() 100 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg); in getDefinitionSpecForSsaReg() local 102 return definition == null ? null : definition.getResult(); in getDefinitionSpecForSsaReg()
|
/external/clang/test/Index/ |
D | arc-complete.m | 10 // CHECK-CC1: macro definition:{TypedText __autoreleasing} (70) 14 // CHECK-CC1: macro definition:{TypedText __strong} (70) 15 // CHECK-CC1: macro definition:{TypedText __unsafe_unretained} (70) 16 // CHECK-CC1: macro definition:{TypedText __weak} (70)
|
D | complete-exprs.m | 27 // CHECK-CC1: macro definition:{TypedText bool} (51) 28 // CHECK-CC1: macro definition:{TypedText NO} (65) 30 // CHECK-CC1: macro definition:{TypedText YES} (65) 48 // CHECK-CC4: macro definition:{TypedText bool} (51) 49 // CHECK-CC4: macro definition:{TypedText NO} (65) 51 // CHECK-CC4: macro definition:{TypedText YES} (65)
|
/external/markdown/docs/extensions/ |
D | footnotes.txt | 23 Footnotes[^1] have a label[^label] and a definition[^!DEF]. 27 [^!DEF]: The definition of a footnote. 29 A footnote definition may contain multiple lines, paragraphs, code blocks, 33 [^1]: The first paragraph of the definition. 35 Paragraph two of the definition.
|
/external/elfutils/src/ |
D | NOTES | 12 uses the bar() definition from libbar.so and does not mention the definition 14 definition in y2.o. 26 has to use the definition in -lbar and not pull the definition from liby3.a.
|
/external/clang/test/SemaObjCXX/ |
D | objc2-merge-gc-attribue-decl.mm | 38 extern id p3; // expected-note {{previous definition is here}} 41 extern void *p4; // expected-note {{previous definition is here}} 47 extern char* __strong p6; // expected-note {{previous definition is here}} 50 extern __strong char* p7; // expected-note {{previous definition is here}}
|