Searched refs:type (Results 501 - 525 of 19236) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/ppapi/cpp/
H A Dmouse_cursor.cc21 PP_MouseCursor_Type type,
27 instance.pp_instance(), type, image.pp_resource(),
20 SetCursor(const InstanceHandle& instance, PP_MouseCursor_Type type, const ImageData& image, const Point& hot_spot) argument
/external/chromium_org/ppapi/proxy/
H A Dplugin_var_serialization_rules.cc29 if (var.type == PP_VARTYPE_OBJECT)
35 if (var.type == PP_VARTYPE_OBJECT) {
45 if (var.type == PP_VARTYPE_OBJECT) {
47 } else if (var.type >= PP_VARTYPE_STRING) {
70 if (var.type == PP_VARTYPE_OBJECT) {
97 if (var.type == PP_VARTYPE_OBJECT)
107 if (var.type == PP_VARTYPE_OBJECT) {
110 } else if (var.type >= PP_VARTYPE_STRING) {
/external/chromium_org/remoting/host/win/
H A Dcom_security.h10 // Concatenates ACE type, permissions and sid given as SDDL strings into an ACE
12 #define SDDL_ACE(type, permissions, sid) \
13 L"(" type L";;" permissions L";;;" sid L")"
/external/chromium_org/storage/common/fileapi/
H A Ddirectory_entry.cc12 DirectoryEntryType type,
16 is_directory(type == DIRECTORY),
11 DirectoryEntry(const std::string& name, DirectoryEntryType type, int64 size, const base::Time& last_modified_time) argument
/external/chromium_org/sync/engine/
H A Ddirectory_commit_contributor.cc14 ModelType type,
17 type_(type),
12 DirectoryCommitContributor( syncable::Directory* dir, ModelType type, DirectoryTypeDebugInfoEmitter* debug_info_emitter) argument
/external/chromium_org/sync/internal_api/test/
H A Dnull_sync_context_proxy.cc16 syncer::ModelType type,
23 void NullSyncContextProxy::Disconnect(syncer::ModelType type) { argument
15 ConnectTypeToSync( syncer::ModelType type, const DataTypeState& data_type_state, const UpdateResponseDataList& saved_pending_updates, const base::WeakPtr<ModelTypeSyncProxyImpl>& type_sync_proxy) argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleMedia.idl31 readonly attribute DOMString type;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContextLifecycleObserver.cpp44 ContextLifecycleObserver::ContextLifecycleObserver(ExecutionContext* executionContext, Type type) argument
45 : LifecycleObserver<ExecutionContext>(executionContext, type)
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementException.h57 static void throwException(Reason, const AtomicString& type, ExceptionState&);
62 static String preamble(const AtomicString& type);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DStyleSheetResource.h44 StyleSheetResource(const ResourceRequest& request, Type type, const String& mimeType, const String& charset) argument
45 : TextResource(request, type, mimeType, charset)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLOListElement.idl24 [Reflect] attribute DOMString type;
H A DHTMLStyleElement.idl24 [Reflect] attribute DOMString type;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLActiveInfo.idl30 readonly attribute unsigned long type;
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositedSelectionBound.h47 : type(Caret)
52 Type type; member in struct:blink::CompositedSelectionBound
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestUpload.cpp60 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total) argument
62 ASSERT(type == EventTypeNames::load || type == EventTypeNames::abort || type == EventTypeNames::error || type == EventTypeNames::timeout);
63 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total));
67 void XMLHttpRequestUpload::handleRequestError(const AtomicString& type) argument
71 dispatchEventAndLoadEnd(type, lengthComputable, m_lastBytesSent, m_lastTotalBytesToBeSent);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamEvent.cpp40 PassRefPtrWillBeRawPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream) argument
42 return adoptRefWillBeNoop(new MediaStreamEvent(type, canBubble, cancelable, stream));
45 PassRefPtrWillBeRawPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, const MediaStreamEventInit& initializer) argument
47 return adoptRefWillBeNoop(new MediaStreamEvent(type, initializer));
54 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream) argument
55 : Event(type, canBubble, cancelable)
60 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, const MediaStreamEventInit& initializer) argument
61 : Event(type, initializer)
H A DRTCSessionDescription.idl36 [RaisesException=Setter] attribute DOMString? type;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContentType.h37 explicit ContentType(const String& type);
40 String type() const;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCryptoKey.cpp44 WebCryptoKeyPrivate(PassOwnPtr<WebCryptoKeyHandle> handle, WebCryptoKeyType type, bool extractable, const WebCryptoKeyAlgorithm& algorithm, WebCryptoKeyUsageMask usages) argument
46 , type(type)
55 const WebCryptoKeyType type; member in class:blink::WebCryptoKeyPrivate
61 WebCryptoKey WebCryptoKey::create(WebCryptoKeyHandle* handle, WebCryptoKeyType type, bool extractable, const WebCryptoKeyAlgorithm& algorithm, WebCryptoKeyUsageMask usages) argument
64 key.m_private = adoptRef(new WebCryptoKeyPrivate(adoptPtr(handle), type, extractable, algorithm, usages));
79 WebCryptoKeyType WebCryptoKey::type() const function in class:blink::WebCryptoKey
82 return m_private->type;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMCustomEvent.cpp41 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue) argument
46 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
H A DWebTextInputInfo.cpp38 return type == other.type
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCredentialManagerError.h21 WebCredentialManagerError(ErrorType type, WebString message) argument
22 : errorType(type)
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DInitialize.h14 void InsertBuiltInFunctions(sh::GLenum type, ShShaderSpec spec, const ShBuiltInResources &resources, TSymbolTable &table);
16 void IdentifyBuiltIns(sh::GLenum type, ShShaderSpec spec,
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dtype_check.h67 /* This header file contains some common macros for enforcing type checking.
69 * pointers, but we wish to have type checking when they are used with a
70 * specific type. */
72 /* CHECKED_CAST casts |p| from type |from| to type |to|. */
76 * was a pointer to |type|. */
77 #define CHECKED_PTR_OF(type, p) CHECKED_CAST(void*, type*, (p))
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCSessionDescription.h38 // The session type.
39 @property(nonatomic, copy, readonly) NSString *type; variable
41 - (id)initWithType:(NSString *)type sdp:(NSString *)sdp;

Completed in 346 milliseconds

<<21222324252627282930>>