Searched refs:kind (Results 1 - 25 of 1023) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_mutexattr_getkind_np.c41 pthread_mutexattr_getkind_np (pthread_mutexattr_t * attr, int *kind) argument
43 return pthread_mutexattr_gettype (attr, kind);
H A Dpthread_mutexattr_setkind_np.c41 pthread_mutexattr_setkind_np (pthread_mutexattr_t * attr, int kind) argument
43 return pthread_mutexattr_settype (attr, kind);
H A Dpthread_mutexattr_gettype.c42 pthread_mutexattr_gettype (const pthread_mutexattr_t * attr, int *kind) argument
46 if (attr != NULL && *attr != NULL && kind != NULL)
48 *kind = (*attr)->kind;
H A Dpthread_mutexattr_settype.c42 pthread_mutexattr_settype (pthread_mutexattr_t * attr, int kind) argument
125 switch (kind)
130 (*attr)->kind = kind;
H A Dpthread_mutex_trylock.c45 int kind; local
67 kind = mx->kind;
69 if (kind >= 0)
77 if (kind != PTHREAD_MUTEX_NORMAL)
85 if (kind == PTHREAD_MUTEX_RECURSIVE &&
115 kind = -kind - 1; /* Convert to non-robust range */
122 if (kind != PTHREAD_MUTEX_NORMAL)
130 if (PTHREAD_MUTEX_RECURSIVE == kind
[all...]
H A Dpthread_mutex_unlock.c45 int kind; local
61 kind = mx->kind;
63 if (kind >= 0)
65 if (kind == PTHREAD_MUTEX_NORMAL)
89 if (kind != PTHREAD_MUTEX_RECURSIVE
115 kind = -kind - 1; /* Convert to non-robust range */
126 if (PTHREAD_MUTEX_NORMAL == kind)
144 if (kind !
[all...]
/external/chromium_org/mojo/public/tools/bindings/generators/
H A Dmojom_cpp_generator.py46 return ExpressionToText(constant.value, kind=constant.kind)
50 if mojom.IsStructKind(field.kind):
52 return "%s::New()" % GetNameForKind(field.kind)
53 return ExpressionToText(field.default, kind=field.kind)
59 def GetNameForKind(kind, internal = False):
61 if kind.imported_from:
62 parts.extend(NamespaceToArray(kind.imported_from["namespace"]))
65 if kind
[all...]
H A Dmojom_js_generator.py39 def JavaScriptType(kind):
40 if kind.imported_from:
41 return kind.imported_from["unique_name"] + "." + kind.name
42 return kind.name
47 if mojom.IsStructKind(field.kind):
49 return "new %s()" % JavaScriptType(field.kind)
51 if field.kind in mojom.PRIMITIVES:
52 return _kind_to_javascript_default_value[field.kind]
53 if mojom.IsStructKind(field.kind)
[all...]
H A Dmojom_java_generator.py120 return GetNameForElement(element.kind)
143 def GetArrayNullabilityFlags(kind):
150 assert mojom.IsAnyArrayKind(kind)
159 if mojom.IsNullableKind(kind):
161 if mojom.IsNullableKind(kind.kind):
169 def AppendEncodeDecodeParams(initial_params, context, kind, bit):
172 if (kind == mojom.BOOL):
174 if mojom.IsReferenceKind(kind):
175 if mojom.IsAnyArrayKind(kind)
[all...]
/external/clang/utils/ABITest/
H A Dbuild-and-summarize-all.sh11 for kind in return-types single-args; do
12 echo "-- $kind-$bits --"
13 (cd $kind-$bits && ../build-and-summarize.sh $1)
/external/chromium_org/v8/src/
H A Delements-kind.h14 // The "fast" kind for elements that only contain SMI values. Must be first
15 // to make it possible to efficiently check maps for this kind.
19 // The "fast" kind for tagged values. Must be second to make it possible to
20 // efficiently check maps for this and the FAST_SMI_ONLY_ELEMENTS kind
25 // The "fast" kind for unwrapped, non-tagged double values.
29 // The "slow" kind.
32 // The "fast" kind for external arrays
70 // The number to add to a packed elements kind to reach a holey elements kind
76 const char* ElementsKindToString(ElementsKind kind);
85 IsDictionaryElementsKind(ElementsKind kind) argument
90 IsSloppyArgumentsElements(ElementsKind kind) argument
95 IsExternalArrayElementsKind(ElementsKind kind) argument
101 IsTerminalElementsKind(ElementsKind kind) argument
107 IsFixedTypedArrayElementsKind(ElementsKind kind) argument
113 IsFastElementsKind(ElementsKind kind) argument
119 IsTransitionElementsKind(ElementsKind kind) argument
124 IsFastDoubleElementsKind(ElementsKind kind) argument
130 IsExternalFloatOrDoubleElementsKind(ElementsKind kind) argument
136 IsFixedFloatElementsKind(ElementsKind kind) argument
141 IsDoubleOrFloatElementsKind(ElementsKind kind) argument
148 IsFastSmiOrObjectElementsKind(ElementsKind kind) argument
156 IsFastSmiElementsKind(ElementsKind kind) argument
162 IsFastObjectElementsKind(ElementsKind kind) argument
168 IsFastHoleyElementsKind(ElementsKind kind) argument
175 IsHoleyElementsKind(ElementsKind kind) argument
181 IsFastPackedElementsKind(ElementsKind kind) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPathSegment.java22 /** kind of the path segment */
23 private int kind; field in class:XMPPathSegment
45 * @param kind the kind of the segment
47 public XMPPathSegment(String name, int kind) argument
50 this.kind = kind;
55 * @return Returns the kind.
59 return kind;
64 * @param kind Th
66 setKind(int kind) argument
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py64 between a reference kind and its nullable variation. For example:
170 def __init__(self, name=None, kind=None, value=None):
172 self.kind = kind
177 def __init__(self, name=None, kind=None, ordinal=None, default=None):
179 self.kind = kind
201 def AddField(self, name, kind, ordinal=None, default=None):
202 field = Field(name, kind, ordinal, default)
208 ReferenceKind.AddSharedProperty('kind')
[all...]
/external/chromium_org/ui/webui/resources/js/cr/
H A Dlink_controller.js17 * The kind of link open we want to perform.
87 var kind;
91 kind = e.shiftKey ? LinkKind.FOREGROUND_TAB : LinkKind.BACKGROUND_TAB;
93 kind = e.shiftKey ? LinkKind.WINDOW : LinkKind.SELF;
95 this.openUrls([url], kind);
103 * @param {LinkKind} kind The kind of open we want to do.
105 openUrl: function(url, kind) {
106 this.openUrls([url], kind);
112 * @param {LinkKind} kind Th
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DAudioTrack.cpp12 AudioTrack::AudioTrack(const String& id, const AtomicString& kind, const AtomicString& label, const AtomicString& language, bool enabled) argument
16 setKind(kind);
70 bool AudioTrack::isValidKind(const AtomicString& kind) const
72 return (kind == alternativeKeyword())
73 || (kind == descriptionsKeyword())
74 || (kind == mainKeyword())
75 || (kind == mainDescriptionsKeyword())
76 || (kind == translationKeyword())
77 || (kind == commentaryKeyword());
H A DVideoTrack.cpp12 VideoTrack::VideoTrack(const String& id, const AtomicString& kind, const AtomicString& label, const AtomicString& language, bool selected) argument
16 setKind(kind);
72 bool VideoTrack::isValidKind(const AtomicString& kind) const
74 return (kind == alternativeKeyword())
75 || (kind == captionsKeyword())
76 || (kind == mainKeyword())
77 || (kind == signKeyword())
78 || (kind == subtitlesKeyword())
79 || (kind == commentaryKeyword());
/external/clang/lib/Basic/
H A DObjCRuntime.cpp56 Kind kind; local
60 kind = ObjCRuntime::MacOSX;
62 kind = ObjCRuntime::FragileMacOSX;
64 kind = ObjCRuntime::iOS;
69 kind = ObjCRuntime::GNUstep;
71 kind = ObjCRuntime::GCC;
73 kind = ObjCRuntime::ObjFW;
78 TheKind = kind;
86 if (kind == ObjCRuntime::ObjFW && Version > VersionTuple(0, 8))
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebMediaDeviceInfo.cpp41 WebMediaDeviceInfo::MediaDeviceKind kind() const { return m_kind; } function in class:blink::FINAL
54 PassRefPtr<WebMediaDeviceInfoPrivate> WebMediaDeviceInfoPrivate::create(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind kind, const WebString& label, const WebString& groupId) argument
56 return adoptRef(new WebMediaDeviceInfoPrivate(deviceId, kind, label, groupId));
59 WebMediaDeviceInfoPrivate::WebMediaDeviceInfoPrivate(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind kind, const WebString& label, const WebString& groupId) argument
61 , m_kind(kind)
77 void WebMediaDeviceInfo::initialize(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind kind, const WebString& label, const WebString& groupId) argument
79 m_private = WebMediaDeviceInfoPrivate::create(deviceId, kind, label, groupId);
88 WebMediaDeviceInfo::MediaDeviceKind WebMediaDeviceInfo::kind() const function in class:blink::WebMediaDeviceInfo
91 return m_private->kind();
H A DWebSourceInfo.cpp41 WebSourceInfo::SourceKind kind() const { return m_kind; } function in class:blink::FINAL
54 PassRefPtr<WebSourceInfoPrivate> WebSourceInfoPrivate::create(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing) argument
56 return adoptRef(new WebSourceInfoPrivate(id, kind, label, facing));
59 WebSourceInfoPrivate::WebSourceInfoPrivate(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing) argument
61 , m_kind(kind)
77 void WebSourceInfo::initialize(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing) argument
79 m_private = WebSourceInfoPrivate::create(id, kind, label, facing);
88 WebSourceInfo::SourceKind WebSourceInfo::kind() const function in class:blink::WebSourceInfo
91 return m_private->kind();
/external/tcpdump/
H A Dmptcp.h46 u_int8_t kind; member in struct:mptcp_option
54 u_int8_t kind; member in struct:mp_capable
67 u_int8_t kind; member in struct:mp_join
89 u_int8_t kind; member in struct:mp_dss
102 u_int8_t kind; member in struct:mp_add_addr
121 u_int8_t kind; member in struct:mp_remove_addr
129 u_int8_t kind; member in struct:mp_fail
137 u_int8_t kind; member in struct:mp_close
145 u_int8_t kind; member in struct:mp_prio
/external/chromium_org/media/base/
H A Dtext_track_config.cc13 TextTrackConfig::TextTrackConfig(TextKind kind, argument
17 : kind_(kind),
24 return config.kind() == kind_ &&
/external/elfutils/0.153/libelf/
H A Delf_kind.c1 /* Return the kind of file associated with the descriptor.
65 return elf == NULL ? ELF_K_NONE : elf->kind;
H A Dgelf_getclass.c65 return elf == NULL || elf->kind != ELF_K_ELF ? ELFCLASSNONE : elf->class;
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransferItem.idl35 readonly attribute DOMString kind;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaDeviceInfo.idl37 readonly attribute MediaDeviceKind kind;

Completed in 6605 milliseconds

1234567891011>>