Searched refs:type (Results 601 - 625 of 19236) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIPort.cpp38 MIDIPort::MIDIPort(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, MIDIPortTypeCode type, const String& version) argument
42 , m_type(type)
47 ASSERT(type == MIDIPortTypeInput || type == MIDIPortTypeOutput);
50 String MIDIPort::type() const function in class:blink::MIDIPort
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DScaleTransformOperation.cpp51 return other.type() == ScaleX
52 || other.type() == ScaleY
53 || other.type() == ScaleZ
54 || other.type() == Scale3D
55 || other.type() == Scale;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DIndexRangeCache.h26 void addRange(GLenum type, unsigned int offset, GLsizei count, const RangeUI &range,
28 bool findRange(GLenum type, unsigned int offset, GLsizei count, RangeUI *rangeOut,
34 static RangeUI ComputeRange(GLenum type, const GLvoid *indices, GLsizei count);
39 GLenum type; member in struct:rx::IndexRangeCache::IndexRange
44 IndexRange(GLenum type, intptr_t offset, GLsizei count);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
H A Dsvga3d_caps.h70 * of caps block records which will be a zero word) and the record type
77 SVGA3dCapsRecordType type; member in struct:SVGA3dCapsRecordHeader
107 * Finds the record with the highest-valued type within the given range
124 * Search linearly through the caps block records for the specified type.
128 if ((record->header.type >= recordTypeMin) &&
129 (record->header.type <= recordTypeMax) &&
130 (!found || (record->header.type > found->header.type))) {
/external/chromium_org/third_party/skia/tests/
H A DRecordTestUtils.h10 ReadAs() : ptr(NULL), type(SkRecords::Type(~0)) {}
13 SkRecords::Type type; member in struct:ReadAs
15 void operator()(const U& r) { ptr = &r; type = U::kType; }
18 void operator()(const T&) { type = U::kType; }
21 // Assert that the ith command in record is of type T, and return it.
26 REPORTER_ASSERT(r, T::kType == reader.type);
/external/chromium_org/v8/tools/
H A Ddetect-builtins.js32 property.type = "getter";
36 var type = typeof value;
37 property.type = type;
38 if (type === "function") {
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp8.cpp71 typedef Base type; typedef in struct:test2::Base
79 using Base<T>::type::foo; //expected-error {{redeclaration of using decl}}
89 typedef int type; typedef in namespace:test3::N
95 using N::type;
96 using N::type;
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp40 typedef T type; typedef in struct:remove_reference
45 typedef T type; typedef in struct:remove_reference
50 typedef T type; typedef in struct:remove_reference
54 template<typename T> int &f(typename remove_reference<T>::type&);
55 template<typename T> float &f(typename remove_reference<T>::type&&);
/external/clang/test/SemaTemplate/
H A Dms-if-exists.cpp4 typedef int type; typedef in struct:Nontemplate
9 __if_exists(Nontemplate::type) {
10 typedef Nontemplate::type type; typedef
26 X<int>::type i1;
27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
29 X<int>::type4 i4; // expected-error{{no type named 'type4' in 'X<int>'}}
H A Dext-vector-type.cpp4 typedef T __attribute__((ext_vector_type(Length))) type; typedef in struct:make1
8 make1<int, 5>::type x;
14 typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{zero vector size}} typedef in struct:make2
23 typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element type 's'}} typedef in struct:make3
34 typedef T __attribute__((ext_vector_type(Length))) type; typedef in struct:make4
38 make4<int, 4>::type x;
45 typedef int_ptr __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element type}} typedef in struct:make5
50 typedef int __attribute__((ext_vector_type(Length))) type; typedef in struct:make6
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstType.java19 import com.android.dx.rop.type.Type;
24 * Constants that represent an arbitrary type (reference or primitive).
61 /** {@code non-null;} instance corresponding to the type {@code boolean[]} */
64 /** {@code non-null;} instance corresponding to the type {@code byte[]} */
67 /** {@code non-null;} instance corresponding to the type {@code char[]} */
70 /** {@code non-null;} instance corresponding to the type {@code double[]} */
73 /** {@code non-null;} instance corresponding to the type {@code float[]} */
76 /** {@code non-null;} instance corresponding to the type {@code long[]} */
79 /** {@code non-null;} instance corresponding to the type {@code int[]} */
82 /** {@code non-null;} instance corresponding to the type {
86 private final Type type; field in class:CstType
125 intern(Type type) argument
143 CstType(Type type) argument
[all...]
/external/elfutils/0.153/libelf/
H A Delf32_fsize.c1 /* Return the size of an object file type.
64 elfw2(LIBELFBITS, fsize) (type, count, version)
65 Elf_Type type;
77 if (unlikely (type >= ELF_T_NUM))
85 * __libelf_type_sizes[version - 1][ELFW(ELFCLASS,LIBELFBITS) - 1][type]);
88 * __libelf_type_sizes[0][ELFW(ELFCLASS,LIBELFBITS) - 1][type]);
/external/ltrace/
H A Dlens.c25 #include "type.h"
32 /* Find the closest enclosing parental value whose type has a
35 for (parent = value; (parent != NULL && parent->type != NULL
36 && parent->type->lens == NULL);
41 if (parent != NULL && parent->type != NULL
42 && parent->type->lens != NULL)
43 lens = parent->type->lens;
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_caps.h70 * of caps block records which will be a zero word) and the record type
77 SVGA3dCapsRecordType type; member in struct:SVGA3dCapsRecordHeader
107 * Finds the record with the highest-valued type within the given range
124 * Search linearly through the caps block records for the specified type.
128 if ((record->header.type >= recordTypeMin) &&
129 (record->header.type <= recordTypeMax) &&
130 (!found || (record->header.type > found->header.type))) {
/external/objenesis/main/src/org/objenesis/instantiator/jrockit/
H A DJRockitLegacyInstantiator.java55 private final Class type; field in class:JRockitLegacyInstantiator
57 public JRockitLegacyInstantiator(Class type) { argument
59 this.type = type;
64 return safeAllocObjectMethod.invoke(null, new Object[] {type});
/external/skia/tests/
H A DRecordTestUtils.h10 ReadAs() : ptr(NULL), type(SkRecords::Type(~0)) {}
13 SkRecords::Type type; member in struct:ReadAs
15 void operator()(const U& r) { ptr = &r; type = U::kType; }
18 void operator()(const T&) { type = U::kType; }
21 // Assert that the ith command in record is of type T, and return it.
26 REPORTER_ASSERT(r, T::kType == reader.type);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
H A DImmutableFieldReference.java42 @Nonnull protected final String type; field in class:ImmutableFieldReference
46 @Nonnull String type) {
49 this.type = type;
65 @Nonnull public String getType() { return type; }
44 ImmutableFieldReference(@onnull String definingClass, @Nonnull String name, @Nonnull String type) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderAnnotation.java42 @Nonnull final BuilderTypeReference type; field in class:BuilderAnnotation
46 public BuilderAnnotation(int visibility, @Nonnull BuilderTypeReference type, argument
49 this.type = type;
58 return type.getType();
H A DBuilderMethodParameter.java40 @Nonnull final BuilderTypeReference type; field in class:BuilderMethodParameter
44 public BuilderMethodParameter(@Nonnull BuilderTypeReference type, argument
47 this.type = type;
53 return type.getType();
/external/chromium_org/media/cast/net/rtcp/
H A Dreceiver_rtcp_event_subscriber.cc13 const size_t max_size_to_retain, EventMediaType type)
14 : max_size_to_retain_(max_size_to_retain), type_(type) {
27 if (ShouldProcessEvent(frame_event.type, frame_event.media_type)) {
29 switch (frame_event.type) {
34 rtcp_event.type = frame_event.type;
53 if (ShouldProcessEvent(packet_event.type, packet_event.media_type)) {
55 if (packet_event.type == PACKET_RECEIVED) {
56 rtcp_event.type = packet_event.type;
12 ReceiverRtcpEventSubscriber( const size_t max_size_to_retain, EventMediaType type) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageEvent.cpp50 PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
52 return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
55 PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const StorageEventInit& initializer) argument
57 return adoptRefWillBeNoop(new StorageEvent(type, initializer));
60 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
61 : Event(type, false, false)
70 StorageEvent::StorageEvent(const AtomicString& type, const StorageEventInit& initializer) argument
71 : Event(type, initializer)
80 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
85 initEvent(type, canBubbl
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dstack.h72 * This file defines macros for type safe use of the stack functions. A stack
73 * of a specific type of object has type |STACK_OF(type)|. This can be defined
74 * (once) with |DEFINE_STACK_OF(type)| and declared where needed with
75 * |DECLARE_STACK_OF(type)|. For example:
112 #define STACK_OF(type) struct stack_st_##type
114 #define DEFINE_STACK_OF(type) \
115 STACK_OF(type) {\
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DEnumMultiset.java37 public static <E extends Enum<E>> EnumMultiset<E> create(Class<E> type) { argument
38 return new EnumMultiset<E>(type);
58 private transient Class<E> type; field in class:EnumMultiset
61 private EnumMultiset(Class<E> type) { argument
62 super(WellBehavedMap.wrap(new EnumMap<E, Count>(type)));
63 this.type = type;
69 stream.writeObject(type);
74 * @serialData the {@code Class<E>} for the enum type, the number of distinct
83 type
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dsource_entry.js33 // Only the last event should have the same type first event,
36 logEntry.type == this.entries_[0].type) {
47 if (logEntry.type != EventType.HTTP_CACHE_OPEN_ENTRY ||
69 if (e.source.type == EventSourceType.NONE) {
71 // by a "source ID", so we will just stringize the event's type.
72 this.description_ = EventTypeNames[e.type];
80 switch (e.source.type) {
124 if (this.entries_[0].type == EventType.SOCKET_ALIVE &&
143 switch (e.type) {
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dgen_insn_test.pl237 my $type = $RegTypes{$1};
247 type => $type,
256 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
274 my $type = "st";
284 type => $type,
293 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
310 my $type = $1;
321 my $type
[all...]

Completed in 690 milliseconds

<<21222324252627282930>>