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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/f_special_ea/
name 1 Special files with extended attributes
  /external/chromium_org/ppapi/shared_impl/
media_stream_video_track_shared_unittest.cc 12 MediaStreamVideoTrackShared::Attributes attributes; local
13 EXPECT_TRUE(MediaStreamVideoTrackShared::VerifyAttributes(attributes));
18 MediaStreamVideoTrackShared::Attributes attributes; local
19 attributes.buffers = 0;
20 EXPECT_TRUE(MediaStreamVideoTrackShared::VerifyAttributes(attributes));
22 attributes.buffers = 8;
23 EXPECT_TRUE(MediaStreamVideoTrackShared::VerifyAttributes(attributes));
25 attributes.buffers = 1024
34 MediaStreamVideoTrackShared::Attributes attributes; local
52 MediaStreamVideoTrackShared::Attributes attributes; local
74 MediaStreamVideoTrackShared::Attributes attributes; local
    [all...]
media_stream_audio_track_shared_unittest.cc 12 MediaStreamAudioTrackShared::Attributes attributes; local
13 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));
18 MediaStreamAudioTrackShared::Attributes attributes; local
19 attributes.buffers = 0;
20 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));
22 attributes.buffers = 8;
23 EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));
25 attributes.buffers = 1024
34 MediaStreamAudioTrackShared::Attributes attributes; local
    [all...]
media_stream_audio_track_shared.cc 11 const Attributes& attributes) {
12 if (attributes.buffers < 0)
14 if (!(attributes.duration == 0 ||
15 (attributes.duration >= 10 && attributes.duration <= 10000)))
media_stream_video_track_shared.cc 20 const Attributes& attributes) {
21 if (attributes.buffers < 0)
23 if (attributes.format < PP_VIDEOFRAME_FORMAT_UNKNOWN ||
24 attributes.format > PP_VIDEOFRAME_FORMAT_LAST) {
27 if (attributes.width < 0 ||
28 attributes.width > kMaxWidth ||
29 attributes.width & 0x3) {
32 if (attributes.height < 0 ||
33 attributes.height > kMaxHeight |
    [all...]
media_stream_audio_track_shared.h 15 struct Attributes {
16 Attributes() : buffers(0), duration(0) {}
21 static bool VerifyAttributes(const Attributes& attributes);
media_stream_video_track_shared.h 15 struct Attributes {
16 Attributes()
27 static bool VerifyAttributes(const Attributes& attributes);
  /external/e2fsprogs/tests/r_inline_xattr/
name 1 shrinking filesystem with in-inode extended attributes
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SimpleAttributeTableGenerator.java 13 private final AttributeTable attributes; field in class:SimpleAttributeTableGenerator
16 AttributeTable attributes)
18 this.attributes = attributes;
23 return attributes;
  /external/proguard/src/proguard/classfile/attribute/annotation/
package.html 2 This package contains classes to represent the annotation attributes inside
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
package.html 2 This package contains visitors for annotation attributes and their components.
  /external/proguard/src/proguard/classfile/attribute/
package.html 2 This package contains classes to represent the attributes inside class files.
  /external/proguard/src/proguard/classfile/attribute/visitor/
package.html 2 This package contains visitors for attributes and their components.
  /external/llvm/test/Feature/
cold.ll 8 ; CHECK: attributes #0 = { cold }
9 attributes #0 = { cold }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attributes.java 20 * Attributes ::=
24 public class Attributes
27 private ASN1Set attributes; field in class:Attributes
29 private Attributes(ASN1Set set)
31 attributes = set;
34 public Attributes(ASN1EncodableVector v)
36 attributes = new DLSet(v);
45 * <li> {@link Attributes} object
46 * <li> {@link org.bouncycastle.asn1.ASN1Set#getInstance(java.lang.Object) ASN1Set} input formats with Attributes structure inside
52 public static Attributes getInstance(Object obj
    [all...]
  /external/chromium_org/third_party/polymer/components/core-layout/
README.md 4 ## DEPRECATED (in favor of layout attributes)
  /external/chromium_org/third_party/polymer/components-chromium/core-layout/
README.md 4 ## DEPRECATED (in favor of layout attributes)
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesNameTest.java 20 import java.util.jar.Attributes;
26 * java.util.jar.Attributes.Name#Name(java.lang.String)
30 new Attributes.Name(null);
38 Attributes.Name attr1 = new Attributes.Name("Attr");
39 Attributes.Name attr2 = new Attributes.Name("Attr");
42 attr2 = new Attributes.Name("Attr1");
47 Attributes.Name attr1 = new Attributes.Name("Attr1")
    [all...]
OldAttributesTest.java 20 import java.util.jar.Attributes;
24 private Attributes a;
28 a = new Attributes();
45 Attributes attr = new Attributes();
50 Attributes attr = new Attributes(10);
56 .get(new Attributes.Name("1")));
63 .getValue(new Attributes.Name("1")));
65 .getValue(new Attributes.Name("0")))
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 26 import org.xml.sax.Attributes;
41 String qName, Attributes attributes) {
45 assertEquals(1, attributes.getLength());
46 assertEquals("", attributes.getURI(0));
47 assertOneOf("bar", "", attributes.getLocalName(0));
48 assertEquals("bar", attributes.getQName(0));
54 String qName, Attributes attributes) {
58 assertEquals(1, attributes.getLength())
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CurrentXmlHandler.java 19 import org.xml.sax.Attributes;
55 public void startElement(String uri, String localName, String name, Attributes attributes)
57 super.startElement(uri, localName, name, attributes);
59 mCurrentPackageName = getValue(attributes, "name");
65 if (isEnum(attributes)) {
70 mCurrentClassName = getValue(attributes, "name");
71 mDeprecated = isDeprecated(attributes);
72 ApiClass apiClass = new ApiClass(mCurrentClassName, mDeprecated, isAbstract(attributes));
79 mDeprecated = isDeprecated(attributes);
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AttributesEditor.java 27 * This class can add and delete attributes to and from classes, fields,
28 * methods, and code attributes. Attributes to be added must be filled out
30 * attributes of the same type are always replaced.
43 * Creates a new AttributeAdder that will edit attributes in the given
54 * Creates a new AttributeAdder that will edit attributes in the given
66 * Creates a new AttributeAdder that will edit attributes in the given
92 targetAttribute.attributes,
96 targetAttribute.attributes =
98 targetAttribute.attributes,
    [all...]
  /external/llvm/test/Assembler/
2008-09-02-FunctionNotes.ll 1 ; Test function attributes
20 ; CHECK: attributes #0 = { alwaysinline }
21 ; CHECK: attributes #1 = { noinline }
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
AttributesTest.java 26 import java.util.jar.Attributes;
30 private Attributes a;
34 a = new Attributes();
42 * java.util.jar.Attributes#Attributes(java.util.jar.Attributes)
45 Attributes a2 = new Attributes(a);
52 * java.util.jar.Attributes#clear()
64 * java.util.jar.Attributes#containsKey(java.lang.Object
    [all...]
  /external/clang/test/Parser/
namespace-alias-attr.cpp 7 namespace B __attribute__ (( static )) = A; // expected-error{{attributes cannot be specified on namespace alias}}

Completed in 505 milliseconds

1 2 3 4 5 6 7 8 91011>>