Searched refs:Attributes (Results 1 - 25 of 198) sorted by relevance

12345678

/external/chromium_org/ppapi/shared_impl/
H A Dmedia_stream_audio_track_shared.h15 struct Attributes { struct in class:ppapi::MediaStreamAudioTrackShared
16 Attributes() : buffers(0), duration(0) {} function in struct:ppapi::MediaStreamAudioTrackShared::Attributes
21 static bool VerifyAttributes(const Attributes& attributes);
H A Dmedia_stream_video_track_shared.h15 struct Attributes { struct in class:ppapi::MediaStreamVideoTrackShared
16 Attributes() function in struct:ppapi::MediaStreamVideoTrackShared::Attributes
27 static bool VerifyAttributes(const Attributes& attributes);
H A Dmedia_stream_audio_track_shared.cc11 const Attributes& attributes) {
H A Dmedia_stream_audio_track_shared_unittest.cc12 MediaStreamAudioTrackShared::Attributes attributes;
18 MediaStreamAudioTrackShared::Attributes attributes;
34 MediaStreamAudioTrackShared::Attributes attributes;
H A Dmedia_stream_video_track_shared_unittest.cc12 MediaStreamVideoTrackShared::Attributes attributes;
18 MediaStreamVideoTrackShared::Attributes attributes;
34 MediaStreamVideoTrackShared::Attributes attributes;
52 MediaStreamVideoTrackShared::Attributes attributes;
74 MediaStreamVideoTrackShared::Attributes attributes;
H A Dmedia_stream_video_track_shared.cc20 const Attributes& attributes) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributes.java20 * Attributes ::=
24 public class Attributes class in inherits:ASN1Object
29 private Attributes(ASN1Set set) method in class:Attributes
34 public Attributes(ASN1EncodableVector v) method in class:Attributes
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)
54 if (obj instanceof Attributes)
56 return (Attributes)obj;
60 return new Attributes(ASN1Se
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorUnknown.java23 import org.xml.sax.Attributes;
H A DProcessorDecimalFormat.java24 import org.xml.sax.Attributes;
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorAttributeSet.java28 import org.xml.sax.Attributes;
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorExsltFuncResult.java29 import org.xml.sax.Attributes;
46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorNamespaceAlias.java25 import org.xml.sax.Attributes;
59 * Attributes object.
62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorPreserveSpace.java29 import org.xml.sax.Attributes;
56 * Attributes object.
60 Attributes attributes)
H A DProcessorStripSpace.java29 import org.xml.sax.Attributes;
56 * Attributes object.
59 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
/external/llvm/bindings/python/llvm/
H A Denumerations.py22 'Attributes',
33 Attributes = [ variable
/external/clang/include/clang/Basic/
H A DBuiltins.h53 const char *Name, *Type, *Attributes, *HeaderName; member in struct:clang::Builtin::Info
59 !strcmp(Attributes, RHS.Attributes);
97 return strchr(GetRecord(ID).Attributes, 'c') != nullptr;
102 return strchr(GetRecord(ID).Attributes, 'n') != nullptr;
107 return strchr(GetRecord(ID).Attributes, 'r') != nullptr;
112 return strchr(GetRecord(ID).Attributes, 'j') != nullptr;
118 return strchr(GetRecord(ID).Attributes, 'u') != nullptr;
124 return strchr(GetRecord(ID).Attributes, 'F') != nullptr;
131 return strchr(GetRecord(ID).Attributes, '
[all...]
/external/smack/src/com/kenai/jbosh/
H A DCMSessionParams.java85 resp.getAttribute(Attributes.ACK));
86 String rid = req.getAttribute(Attributes.RID);
91 getRequiredAttribute(resp, Attributes.SID)),
93 getRequiredAttribute(resp, Attributes.WAIT)),
95 resp.getAttribute(Attributes.VER)),
97 resp.getAttribute(Attributes.POLLING)),
99 resp.getAttribute(Attributes.INACTIVITY)),
101 resp.getAttribute(Attributes.REQUESTS)),
103 resp.getAttribute(Attributes.HOLD)),
105 resp.getAttribute(Attributes
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerTrace.java23 import org.xml.sax.Attributes;
123 public void fireGenerateEvent(int eventType, String name, Attributes atts);
/external/chromium_org/webkit/common/gpu/
H A Dwebgraphicscontext3d_in_process_command_buffer_impl.h45 const blink::WebGraphicsContext3D::Attributes& attributes,
51 const blink::WebGraphicsContext3D::Attributes& attributes,
57 const blink::WebGraphicsContext3D::Attributes& attributes);
81 const blink::WebGraphicsContext3D::Attributes& attributes,
H A Dwebgraphicscontext3d_in_process_command_buffer_impl.cc36 const blink::WebGraphicsContext3D::Attributes& attributes,
52 const blink::WebGraphicsContext3D::Attributes& attributes,
66 const blink::WebGraphicsContext3D::Attributes& attributes) {
80 const blink::WebGraphicsContext3D::Attributes& attributes,
/external/chromium_org/content/common/gpu/client/
H A Dgpu_in_process_context_tests.cc22 blink::WebGraphicsContext3D::Attributes attributes;
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFormSubmission.h50 class Attributes { class in class:blink::FormSubmission
51 WTF_MAKE_NONCOPYABLE(Attributes);
53 Attributes() function in class:blink::FormSubmission::Attributes
79 void copyFrom(const Attributes&);
91 static PassRefPtrWillBeRawPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, PassRefPtrWillBeRawPtr<Event>, FormSubmissionTrigger);
116 // FIXME: Hold an instance of Attributes instead of individual members.
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp147 unsigned Attributes = ODS.getPropertyAttributes(); local
150 Attributes |= deduceWeakPropertyFromType(*this, T);
152 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
154 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
157 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
159 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
160 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
161 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &&
162 !(Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) &&
163 !(Attributes
244 makePropertyAttributesAsWritten(unsigned Attributes) argument
314 HandlePropertyInClassExtension(Scope *S, SourceLocation AtLoc, SourceLocation LParenLoc, FieldDeclarator &FD, Selector GetterSel, Selector SetterSel, const bool isAssign, const bool isReadWrite, const unsigned Attributes, const unsigned AttributesAsWritten, bool *isOverridingProperty, TypeSourceInfo *T, tok::ObjCKeywordKind MethodImplKind) argument
520 CreatePropertyDecl(Scope *S, ObjCContainerDecl *CDecl, SourceLocation AtLoc, SourceLocation LParenLoc, FieldDeclarator &FD, Selector GetterSel, Selector SetterSel, const bool isAssign, const bool isReadWrite, const unsigned Attributes, const unsigned AttributesAsWritten, TypeSourceInfo *TInfo, tok::ObjCKeywordKind MethodImplKind, DeclContext *lexicalDC) argument
1760 unsigned Attributes = Property->getPropertyAttributes(); local
2076 CheckObjCPropertyAttributes(Decl *PDecl, SourceLocation Loc, unsigned &Attributes, bool propertyInPrimaryClass) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DClassCache.java11 import java.util.jar.Attributes;
18 private static final Attributes.Name VERSION_ATTRIBUTE = new Attributes.Name("version");
31 Attributes attributes = manifest.getEntries().get("robolectric");
51 Attributes attributes = new Attributes();
/external/chromium_org/content/browser/android/in_process/
H A Dsynchronous_compositor_factory_impl.h43 const blink::WebGraphicsContext3D::Attributes& attributes,
49 const blink::WebGraphicsContext3D::Attributes& attributes) OVERRIDE;

Completed in 3436 milliseconds

12345678