OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:attribute
(Results
276 - 300
of
7894
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegCurvetoCubicAbs.idl
28
[StrictTypeChecking]
attribute
float x;
29
[StrictTypeChecking]
attribute
float y;
30
[StrictTypeChecking]
attribute
float x1;
31
[StrictTypeChecking]
attribute
float y1;
32
[StrictTypeChecking]
attribute
float x2;
33
[StrictTypeChecking]
attribute
float y2;
SVGPathSegCurvetoCubicRel.idl
28
[StrictTypeChecking]
attribute
float x;
29
[StrictTypeChecking]
attribute
float y;
30
[StrictTypeChecking]
attribute
float x1;
31
[StrictTypeChecking]
attribute
float y1;
32
[StrictTypeChecking]
attribute
float x2;
33
[StrictTypeChecking]
attribute
float y2;
SVGRadialGradientElement.idl
27
readonly
attribute
SVGAnimatedLength cx;
28
readonly
attribute
SVGAnimatedLength cy;
29
readonly
attribute
SVGAnimatedLength r;
30
readonly
attribute
SVGAnimatedLength fx;
31
readonly
attribute
SVGAnimatedLength fy;
32
readonly
attribute
SVGAnimatedLength fr;
SVGRectElement.idl
28
readonly
attribute
SVGAnimatedLength x;
29
readonly
attribute
SVGAnimatedLength y;
30
readonly
attribute
SVGAnimatedLength width;
31
readonly
attribute
SVGAnimatedLength height;
32
readonly
attribute
SVGAnimatedLength rx;
33
readonly
attribute
SVGAnimatedLength ry;
SVGUseElement.idl
27
readonly
attribute
SVGAnimatedLength x;
28
readonly
attribute
SVGAnimatedLength y;
29
readonly
attribute
SVGAnimatedLength width;
30
readonly
attribute
SVGAnimatedLength height;
32
[MeasureAs=SVGInstanceRoot] readonly
attribute
SVGElementInstance instanceRoot;
33
readonly
attribute
SVGElementInstance animatedInstanceRoot;
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.idl
30
readonly
attribute
MediaKeyError error;
33
readonly
attribute
DOMString keySystem;
34
readonly
attribute
DOMString sessionId;
41
[RuntimeEnabled=EncryptedMedia]
attribute
EventHandler onwebkitkeyadded;
42
[RuntimeEnabled=EncryptedMedia]
attribute
EventHandler onwebkitkeyerror;
43
[RuntimeEnabled=EncryptedMedia]
attribute
EventHandler onwebkitkeymessage;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBTransaction.idl
32
readonly
attribute
DOMString mode;
33
readonly
attribute
IDBDatabase db;
34
readonly
attribute
DOMError error;
41
attribute
EventHandler onabort;
42
attribute
EventHandler oncomplete;
43
attribute
EventHandler onerror;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDTMFSender.idl
30
readonly
attribute
boolean canInsertDTMF;
31
readonly
attribute
MediaStreamTrack track;
32
readonly
attribute
DOMString toneBuffer;
33
readonly
attribute
long duration;
34
readonly
attribute
long interToneGap;
38
attribute
EventHandler ontonechange;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DynamicsCompressorNode.idl
28
readonly
attribute
AudioParam threshold; // in Decibels
29
readonly
attribute
AudioParam knee; // in Decibels
30
readonly
attribute
AudioParam ratio; // unit-less
31
readonly
attribute
AudioParam reduction; // in Decibels
32
readonly
attribute
AudioParam attack; // in Seconds
33
readonly
attribute
AudioParam release; // in Seconds
/external/chromium_org/third_party/sfntly/cpp/src/test/
test_xml_utils.cc
42
for (const TiXmlAttribute*
attribute
= node->ToElement()->FirstAttribute();
43
attribute
!= NULL;
attribute
=
attribute
->Next()) {
44
if (
attribute
->Name() == name) {
45
return
attribute
;
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
p1.cpp
10
[[noreturn, noreturn]] void b() { throw 0; } // expected-error {{
attribute
'noreturn' cannot appear multiple times in an
attribute
specifier}}
13
[[noreturn()]] void c(); // expected-error {{
attribute
'noreturn' cannot have an argument list}}
15
void d() [[noreturn]]; // expected-error {{'noreturn'
attribute
cannot be applied to types}}
16
int d2 [[noreturn]]; // expected-error {{'noreturn'
attribute
only applies to functions and methods}}
20
int f(); // expected-note {{declaration missing '[[noreturn]]'
attribute
is here}}
/external/clang/test/Parser/
attributes.mm
3
__attribute__((deprecated)) @class B; // expected-error {{prefix
attribute
must be followed by an interface or protocol}}
12
EXP class C2 {}; // expected-warning {{
attribute
'visibility' is ignored, place it after "class" to apply
attribute
to type declaration}}
18
// FIXME: Prefix
attribute
recovery skips until ';'
19
EXP @implementation I2 @end; // expected-error {{prefix
attribute
must be followed by an interface or protocol}}
22
EXP @class OC2; // expected-error {{prefix
attribute
must be followed by an interface or protocol}}
/external/clang/test/Sema/
attr-cleanup.c
5
extern int g1 __attribute((cleanup(c1))); // expected-warning {{cleanup
attribute
ignored}}
6
int g2 __attribute((cleanup(c1))); // expected-warning {{cleanup
attribute
ignored}}
7
static int g3 __attribute((cleanup(c1))); // expected-warning {{cleanup
attribute
ignored}}
11
int v1 __attribute((cleanup)); // expected-error {{'cleanup'
attribute
takes one argument}}
12
int v2 __attribute((cleanup(1, 2))); // expected-error {{'cleanup'
attribute
takes one argument}}
14
static int v3 __attribute((cleanup(c1))); // expected-warning {{cleanup
attribute
ignored}}
attr-visibility.c
10
struct __attribute__((visibility("hidden"))) test4; // expected-note {{previous
attribute
is here}}
15
struct __attribute__((visibility("hidden"))) test5; // expected-note {{previous
attribute
is here}}
18
void test6() __attribute__((visibility("hidden"), // expected-note {{previous
attribute
is here}}
21
extern int test7 __attribute__((visibility("default"))); // expected-note {{previous
attribute
is here}}
24
typedef int __attribute__((visibility("default"))) bar; // expected-warning {{'visibility'
attribute
ignored}}
26
int x __attribute__((type_visibility("default"))); // expected-error {{'type_visibility'
attribute
only applies to types and namespaces}}
/external/clang/test/SemaCXX/
init-priority-attr.cpp
22
Two goo __attribute__((init_priority(2,3))) ( 5, 6 ); // expected-error {{'init_priority'
attribute
takes one argument}}
24
Two coo[2] __attribute__((init_priority(3))); // expected-error {{init_priority
attribute
requires integer constant between 101 and 65535 inclusive}}
26
Two koo[4] __attribute__((init_priority(1.13))); // expected-error {{'init_priority'
attribute
requires an integer constant}}
29
Two func() __attribute__((init_priority(1001))); // expected-error {{can only use 'init_priority'
attribute
on file-scope definitions of objects of class type}}
31
int i __attribute__((init_priority(1001))); // expected-error {{can only use 'init_priority'
attribute
on file-scope definitions of objects of class type}}
34
Two foo __attribute__((init_priority(1001))); // expected-error {{can only use 'init_priority'
attribute
on file-scope definitions of objects of class type}}
/external/clang/test/SemaObjC/
format-arg-attribute.m
8
extern void fc1 (const NSString *) __attribute__((format_arg)); // expected-error {{'format_arg'
attribute
takes one argument}}
9
extern void fc2 (const NSString *) __attribute__((format_arg())); // expected-error {{'format_arg'
attribute
takes one argument}}
10
extern void fc3 (const NSString *) __attribute__((format_arg(1, 2))); // expected-error {{'format_arg'
attribute
takes one argument}}
12
struct s1 { int i; } __attribute__((format_arg(1))); // expected-warning {{'format_arg'
attribute
only applies to functions}}
13
union u1 { int i; } __attribute__((format_arg(1))); // expected-warning {{'format_arg'
attribute
only applies to functions}}
14
enum e1 { E1V0 } __attribute__((format_arg(1))); // expected-warning {{'format_arg'
attribute
only applies to functions}}
/external/proguard/src/proguard/classfile/attribute/
ConstantValueAttribute.java
21
package proguard.classfile.
attribute
;
24
import proguard.classfile.
attribute
.visitor.AttributeVisitor;
27
* This
Attribute
represents a constant value
attribute
.
31
public class ConstantValueAttribute extends
Attribute
56
// Implementations for
Attribute
.
DeprecatedAttribute.java
21
package proguard.classfile.
attribute
;
24
import proguard.classfile.
attribute
.visitor.AttributeVisitor;
27
* This
Attribute
represents a deprecated
attribute
.
31
public class DeprecatedAttribute extends
Attribute
50
// Implementations for
Attribute
.
SourceDirAttribute.java
21
package proguard.classfile.
attribute
;
24
import proguard.classfile.
attribute
.visitor.AttributeVisitor;
27
* This
Attribute
represents a source directory
attribute
.
31
public class SourceDirAttribute extends
Attribute
56
// Implementations for
Attribute
.
SourceFileAttribute.java
21
package proguard.classfile.
attribute
;
24
import proguard.classfile.
attribute
.visitor.AttributeVisitor;
27
* This
Attribute
represents a source file
attribute
.
31
public class SourceFileAttribute extends
Attribute
56
// Implementations for
Attribute
.
SyntheticAttribute.java
21
package proguard.classfile.
attribute
;
24
import proguard.classfile.
attribute
.visitor.AttributeVisitor;
27
* This
Attribute
represents a synthetic
attribute
.
31
public class SyntheticAttribute extends
Attribute
50
// Implementations for
Attribute
.
/external/sfntly/cpp/src/test/
test_xml_utils.cc
42
for (const TiXmlAttribute*
attribute
= node->ToElement()->FirstAttribute();
43
attribute
!= NULL;
attribute
=
attribute
->Next()) {
44
if (
attribute
->Name() == name) {
45
return
attribute
;
/external/smack/src/com/kenai/jbosh/
AttrAck.java
20
* Data type representing the getValue of the {@code ack}
attribute
of the
26
* Creates a new
attribute
object.
28
* @param val
attribute
getValue
36
* Creates a new
attribute
instance from the provided String.
38
* @param str string representation of the
attribute
39
* @return
attribute
instance or {@code null} if provided string is
AttrHold.java
20
* Data type representing the getValue of the {@code hold}
attribute
of the
26
* Creates a new
attribute
object.
28
* @param val
attribute
getValue
37
* Creates a new
attribute
instance from the provided String.
39
* @param str string representation of the
attribute
40
* @return
attribute
instance or {@code null} if provided string is
AttrInactivity.java
20
* Data type representing the value of the {@code inactivity}
attribute
of the
26
* Creates a new
attribute
object.
28
* @param val
attribute
value
37
* Creates a new
attribute
instance from the provided String.
39
* @param str string representation of the
attribute
40
* @return instance of the
attribute
for the specified string, or
Completed in 360 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>