/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/ |
p1.cpp | 3 [[carries_dependency, carries_dependency]] int m1(); // expected-error {{attribute 'carries_dependency' cannot appear multiple times in an attribute specifier}} 5 [[carries_dependency()]] int m3(); // expected-error {{attribute 'carries_dependency' cannot have an argument list}} 10 [[carries_dependency]] int (*f4)(); // expected-error {{'carries_dependency' attribute only applies to functions, methods, and parameters}} 11 int (*f5 [[carries_dependency]])(); // expected-error {{'carries_dependency' attribute only applies to functions, methods, and parameters}} 12 int (*f6)() [[carries_dependency]]; // expected-error {{'carries_dependency' attribute cannot be applied to types}} 13 int (*f7)(int n [[carries_dependency]]); // expected-error {{'[[carries_dependency]]' attribute only allowed on parameter in a function declaration}} 15 int (*f9(int n))(int n [[carries_dependency]]); // expected-error {{'[[carries_dependency]]' attribute only allowed on parameter in a function declaration}} 16 int typedef f10(int n [[carries_dependency]]); // expected-error {{'[[carries_dependency]]' attribute only allowed on parameter in a function declaration}} 17 using T = int(int n [[carries_dependency]]); // expected-error {{'[[carries_dependency]]' attribute only allowed on parameter in a function declaration} [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Element.idl | 27 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString tagName; 37 [PerWorldBindings] readonly attribute NamedNodeMap attributes; 52 [PerWorldBindings] readonly attribute CSSStyleDeclaration style; 55 [Reflect] attribute DOMString id; 56 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString namespaceURI; 57 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, RaisesException=Setter] attribute DOMString prefix; 58 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString localName; 62 [PerWorldBindings] readonly attribute long offsetLeft; 63 [PerWorldBindings] readonly attribute long offsetTop; 64 [PerWorldBindings] readonly attribute long offsetWidth [all...] |
Document.idl | 28 readonly attribute DocumentType doctype; 29 readonly attribute DOMImplementation implementation; 30 readonly attribute Element documentElement; 52 [TreatReturnedNullStringAs=Null, MeasureAs=DocumentInputEncoding] readonly attribute DOMString inputEncoding; // Removed from DOM4. 54 [TreatReturnedNullStringAs=Null, MeasureAs=DocumentXMLEncoding] readonly attribute DOMString xmlEncoding; // Removed from DOM4. 55 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, RaisesException=Setter, MeasureAs=DocumentXMLVersion] attribute DOMString xmlVersion; // Removed from DOM4. 56 [RaisesException=Setter, MeasureAs=DocumentXMLStandalone] attribute boolean xmlStandalone; // Removed from DOM4. 60 [TreatReturnedNullStringAs=Null] readonly attribute DOMString documentURI; 81 [ImplementedAs=domWindow] readonly attribute Window defaultView; 85 readonly attribute StyleSheetList styleSheets [all...] |
/external/clang/test/Sema/ |
x86-attr-force-align-arg-pointer.c | 3 int a __attribute__((force_align_arg_pointer)); // expected-warning{{attribute only applies to functions}} 5 // It doesn't matter where the attribute is located. 12 // It doesn't matter which declaration has the attribute. 16 // Attribute is ignored on function pointer types. 19 // Attribute is also ignored on function typedefs.
|
attr-args.c | 4 inline __attribute__((noreturn(a))) void *f1(); // expected-error {{'noreturn' attribute takes no arguments}} 5 inline __attribute__((always_inline(a))) void *f2(); // expected-error {{'always_inline' attribute takes no arguments}} 6 inline __attribute__((cdecl(a))) void *f3(); // expected-error {{'cdecl' attribute takes no arguments}} 7 inline __attribute__((const(a))) void *f4(); // expected-error {{'const' attribute takes no arguments}} 8 inline __attribute__((fastcall(a))) void *f5(); // expected-error {{'fastcall' attribute takes no arguments}} 9 inline __attribute__((malloc(a))) void *f5(); // expected-error {{'malloc' attribute takes no arguments}} 10 inline __attribute__((nothrow(a))) void *f7(); // expected-error {{'nothrow' attribute takes no arguments}} 11 inline __attribute__((stdcall(a))) void *f8(); // expected-error {{'stdcall' attribute takes no arguments}} 12 inline __attribute__((used(a))) void *f9(); // expected-error {{'used' attribute takes no arguments}} 13 inline __attribute__((unused(a))) void *f10(); // expected-error {{'unused' attribute takes no arguments} [all...] |
constructor-attribute.c | 3 int x __attribute__((constructor)); // expected-warning {{'constructor' attribute only applies to functions}} 6 int f() __attribute__((constructor(1,2))); // expected-error {{attribute takes no more than 1 argument}} 7 int f() __attribute__((constructor(1.0))); // expected-error {{'constructor' attribute requires parameter 1 to be an integer constant}} 9 int x __attribute__((destructor)); // expected-warning {{'destructor' attribute only applies to functions}} 12 int f() __attribute__((destructor(1,2))); // expected-error {{attribute takes no more than 1 argument}} 13 int f() __attribute__((destructor(1.0))); // expected-error {{'destructor' attribute requires parameter 1 to be an integer constant}}
|
mips16_attr_allowed.c | 16 void foo32a() __attribute__((nomips16(xyz))) ; // expected-error {{'nomips16' attribute takes no arguments}} 17 void __attribute__((mips16(xyz))) foo16a(); // expected-error {{'mips16' attribute takes no arguments}} 19 void __attribute__((nomips16(1, 2))) foo32b(); // expected-error {{'nomips16' attribute takes no arguments}} 20 void __attribute__((mips16(1, 2))) foo16b(); // expected-error {{'mips16' attribute takes no arguments}} 23 __attribute((nomips16)) int a; // expected-error {{attribute only applies to functions}} 25 __attribute((mips16)) int b; // expected-error {{attribute only applies to functions}}
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLAppletElement.idl | 24 [Reflect] attribute DOMString align; 25 [Reflect] attribute DOMString alt; 26 [Reflect] attribute DOMString archive; 27 [Reflect] attribute DOMString code; 28 [Reflect, URL] attribute DOMString codeBase; 29 [Reflect] attribute DOMString height; 30 [Reflect] attribute unsigned long hspace; 31 [Reflect] attribute DOMString name; 32 [Reflect, URL] attribute DOMString _object; // "object" is a reserved word 33 [Reflect] attribute unsigned long vspace [all...] |
HTMLTableElement.idl | 22 [RaisesException=Setter] attribute HTMLTableCaptionElement caption; 23 [RaisesException=Setter] attribute HTMLTableSectionElement tHead; 24 [RaisesException=Setter] attribute HTMLTableSectionElement tFoot; 26 readonly attribute HTMLCollection rows; 27 readonly attribute HTMLCollection tBodies; 28 [Reflect] attribute DOMString align; 29 [Reflect, TreatNullAs=NullString] attribute DOMString bgColor; 30 [Reflect] attribute DOMString border; 31 [Reflect, TreatNullAs=NullString] attribute DOMString cellPadding; 32 [Reflect, TreatNullAs=NullString] attribute DOMString cellSpacing [all...] |
HTMLScriptElement.idl | 21 attribute DOMString text; 22 [Reflect=for] attribute DOMString htmlFor; 23 [Reflect] attribute DOMString event; 24 [Reflect] attribute DOMString charset; 25 attribute boolean async; 26 [Reflect] attribute boolean defer; 27 [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src; 28 [Reflect] attribute DOMString type; 29 [Reflect] attribute DOMString crossOrigin; 30 [Reflect, RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute DOMString nonce [all...] |
ValidityState.idl | 25 readonly attribute boolean valueMissing; 26 readonly attribute boolean typeMismatch; 27 readonly attribute boolean patternMismatch; 28 readonly attribute boolean tooLong; 29 readonly attribute boolean rangeUnderflow; 30 readonly attribute boolean rangeOverflow; 31 readonly attribute boolean stepMismatch; 32 readonly attribute boolean badInput; 33 readonly attribute boolean customError; 34 readonly attribute boolean valid [all...] |
HTMLDocument.idl | 31 readonly attribute HTMLCollection embeds; 32 [ImplementedAs=embeds] readonly attribute HTMLCollection plugins; 33 readonly attribute HTMLCollection scripts; 37 [Replaceable, ImplementedAs=allForBinding] readonly attribute HTMLAllCollection all; 44 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir; 45 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString designMode; 46 readonly attribute DOMString compatMode; 48 readonly attribute Element activeElement; 52 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString bgColor; 53 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString fgColor [all...] |
HTMLFormElement.idl | 22 [Reflect=accept_charset] attribute DOMString acceptCharset; 23 [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString action; 24 [Reflect] attribute DOMString autocomplete; 25 [CustomElementCallbacks] attribute DOMString enctype; 26 [CustomElementCallbacks] attribute DOMString encoding; 27 [CustomElementCallbacks] attribute DOMString method; 28 [Reflect] attribute DOMString name; 29 [Reflect] attribute boolean noValidate; 30 [Reflect] attribute DOMString target; 32 readonly attribute HTMLCollection elements [all...] |
/external/jdiff/src/ |
api.xsd | 16 <xsd:attribute name="name" type="xsd:string"/> 17 <xsd:attribute name="jdversion" type="xsd:string"/> 28 <xsd:attribute name="name" type="xsd:string"/> 39 <xsd:attribute name="name" type="xsd:string"/> 40 <xsd:attribute name="extends" type="xsd:string" use='optional'/> 41 <xsd:attribute name="abstract" type="xsd:boolean"/> 42 <xsd:attribute name="src" type="xsd:string" use='optional'/> 43 <xsd:attribute name="static" type="xsd:boolean"/> 44 <xsd:attribute name="final" type="xsd:boolean"/> 45 <xsd:attribute name="deprecated" type="xsd:string"/ [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldAttributedCharacterIteratorTest.java | 34 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2, 37 HashSet<AttributedCharacterIterator.Attribute> attr = 38 new HashSet<AttributedCharacterIterator.Attribute>(); 39 attr.add(AttributedCharacterIterator.Attribute.LANGUAGE); 44 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null, 50 attr.add(AttributedCharacterIterator.Attribute.READING); 58 Set<AttributedCharacterIterator.Attribute> emptyAttributes = 64 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, 68 Set<AttributedCharacterIterator.Attribute> attributes = 70 for(AttributedCharacterIterator.Attribute attr:attributes) 77 Object attribute = local [all...] |
/external/chromium_org/ui/accessibility/ |
ax_node_data.cc | 29 StringAttribute attribute, const std::string& value) { 30 string_attributes.push_back(std::make_pair(attribute, value)); 34 IntAttribute attribute, int value) { 35 int_attributes.push_back(std::make_pair(attribute, value)); 39 FloatAttribute attribute, float value) { 40 float_attributes.push_back(std::make_pair(attribute, value)); 44 BoolAttribute attribute, bool value) { 45 bool_attributes.push_back(std::make_pair(attribute, value)); 49 IntListAttribute attribute, const std::vector<int32>& value) { 50 intlist_attributes.push_back(std::make_pair(attribute, value)) [all...] |
/external/proguard/src/proguard/classfile/editor/ |
AttributesEditor.java | 24 import proguard.classfile.attribute.*; 67 * target code attribute. 82 * Adds the given attribute to the target. 84 public void addAttribute(Attribute attribute) 89 // Try to replace an existing attribute. 93 attribute)) 95 // Otherwise append the attribute. 99 attribute); 106 // Try to replace an existing attribute [all...] |
/external/chromium/chrome/browser/importer/ |
toolbar_importer_unittest.cc | 60 "<attribute> " 62 "</attribute> " 63 "<attribute> " 65 "</attribute> " 66 "<attribute> <name>notebook_name</name> <value>My notebook 0</value> " 67 "</attribute> " 68 "<attribute> <name>section_name</name> <value>My section 0 " 69 "</value> </attribute> </attributes> " 81 "<attribute> " 83 "</attribute> " [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
WindowEventHandlers.idl | 34 //attribute EventHandler onafterprint; 35 //attribute EventHandler onbeforeprint; 36 attribute EventHandler onbeforeunload; 37 attribute EventHandler onhashchange; 38 attribute EventHandler onmessage; 39 attribute EventHandler onoffline; 40 attribute EventHandler ononline; 41 attribute EventHandler onpagehide; 42 attribute EventHandler onpageshow; 43 attribute EventHandler onpopstate [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/speech/ |
SpeechSynthesisUtterance.idl | 31 attribute DOMString text; 32 attribute DOMString lang; 33 attribute SpeechSynthesisVoice voice; 34 attribute float volume; 35 attribute float rate; 36 attribute float pitch; 38 attribute EventHandler onstart; 39 attribute EventHandler onend; 40 attribute EventHandler onerror; 41 attribute EventHandler onpause [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkAnimate3DSchema.xsd | 18 <xs:attribute name="axis" type="Sk3D:Point" />
19 <xs:attribute name="hackHeight" type="Sk:Float" />
20 <xs:attribute name="hackWidth" type="Sk:Float" />
21 <xs:attribute name="location" type="Sk3D:Point" />
22 <xs:attribute name="observer" type="Sk3D:Point" />
23 <xs:attribute name="patch" type="Sk3D:Patch" />
24 <xs:attribute name="zenith" type="Sk3D:Point" />
25 <xs:attribute name="id" type="xs:ID" />
31 <xs:attribute name="origin" type="Sk3D:Point" />
32 <xs:attribute name="rotateDegrees" type="Sk:MemberFunction" /> [all...] |
/external/skia/src/animator/ |
SkAnimate3DSchema.xsd | 18 <xs:attribute name="axis" type="Sk3D:Point" />
19 <xs:attribute name="hackHeight" type="Sk:Float" />
20 <xs:attribute name="hackWidth" type="Sk:Float" />
21 <xs:attribute name="location" type="Sk3D:Point" />
22 <xs:attribute name="observer" type="Sk3D:Point" />
23 <xs:attribute name="patch" type="Sk3D:Patch" />
24 <xs:attribute name="zenith" type="Sk3D:Point" />
25 <xs:attribute name="id" type="xs:ID" />
31 <xs:attribute name="origin" type="Sk3D:Point" />
32 <xs:attribute name="rotateDegrees" type="Sk:MemberFunction" /> [all...] |
/libcore/luni/src/main/java/java/text/ |
AttributedCharacterIterator.java | 40 public static class Attribute implements Serializable { 45 * This attribute marks segments from an input method. Most input 51 public static final Attribute INPUT_METHOD_SEGMENT = new Attribute("input_method_segment"); 54 * The attribute describing the language of a character. The value 57 public static final Attribute LANGUAGE = new Attribute("language"); 61 * Japanese), this attribute allows to define which reading should be 65 public static final Attribute READING = new Attribute("reading") [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary | 6 # composed of Attribute/Value Pairs. The value of each attribute 20 # ATTRIBUTE VALUE 38 # ATTRIBUTE RP-Upstream-Speed-Limit 1 integer RoaringPenguin 46 ATTRIBUTE User-Name 1 string 47 ATTRIBUTE Password 2 string 48 ATTRIBUTE CHAP-Password 3 string 49 ATTRIBUTE NAS-IP-Address 4 ipaddr 50 ATTRIBUTE NAS-Port-Id 5 integer 51 ATTRIBUTE Service-Type 6 intege [all...] |
/external/clang/test/SemaCXX/ |
attr-no-sanitize-address.cpp | 12 // expected-error {{'no_sanitize_address' attribute takes no arguments}} 18 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}} 23 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}} 28 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}} 33 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}} 37 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
|