Searched refs:type (Results 101 - 125 of 19236) sorted by relevance

1234567891011>>

/external/llvm/test/MC/ELF/
H A Dcommon.s7 .type common1,@object
24 .type common2,@object
53 .type common3,@object
70 .type foo,@function
75 .type common4,@object
H A Dtype-propagate.s4 // behavior is a bit different than gas. If the type of a symbol changes,
5 // gas will update the type of the aliases only if those aliases were declare
11 .type sym01, @object
13 .type sym02, @function
18 .type sym03, @function
25 .type sym10, @object
30 .type sym10, @function
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_outerProductGLSL.py4 type = "mat" + str(x)
6 type = type + "x" + str(y)
7 print type + " outerProduct(vec" + str(y) + " u, vec" + str(x) + " v)\n{"
8 print " " + type + " m;"
/external/smack/src/org/jivesoftware/smack/filter/
H A DIQTypeFilter.java27 * and it matches the type provided in the constructor.
34 private IQ.Type type; field in class:IQTypeFilter
36 public IQTypeFilter(IQ.Type type) { argument
37 this.type = type;
46 return (packet instanceof IQ && ((IQ) packet).getType().equals(type));
H A DMessageTypeFilter.java27 * Filters for packets of a specific type of Message (e.g. CHAT).
34 private final Message.Type type; field in class:MessageTypeFilter
37 * Creates a new message type filter using the specified message type.
39 * @param type the message type.
41 public MessageTypeFilter(Message.Type type) { argument
42 this.type = type;
50 return ((Message) packet).getType().equals(this.type);
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebRTCSessionDescription.cpp43 static PassRefPtr<WebRTCSessionDescriptionPrivate> create(const WebString& type, const WebString& sdp);
45 WebString type() { return m_type; } function in class:blink::FINAL
46 void setType(const WebString& type) { m_type = type; } argument
52 WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp);
58 PassRefPtr<WebRTCSessionDescriptionPrivate> WebRTCSessionDescriptionPrivate::create(const WebString& type, const WebString& sdp) argument
60 return adoptRef(new WebRTCSessionDescriptionPrivate(type, sdp));
63 WebRTCSessionDescriptionPrivate::WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp) argument
64 : m_type(type)
79 void WebRTCSessionDescription::initialize(const WebString& type, cons argument
84 WebString WebRTCSessionDescription::type() const function in class:blink::WebRTCSessionDescription
90 setType(const WebString& type) argument
[all...]
/external/chromium_org/third_party/angle/src/common/
H A Dutilities.h19 int VariableComponentCount(GLenum type);
20 GLenum VariableComponentType(GLenum type);
21 size_t VariableComponentSize(GLenum type);
22 size_t VariableInternalSize(GLenum type);
23 size_t VariableExternalSize(GLenum type);
24 GLenum VariableBoolVectorType(GLenum type);
25 int VariableRowCount(GLenum type);
26 int VariableColumnCount(GLenum type);
27 bool IsSampler(GLenum type);
28 bool IsMatrixType(GLenum type);
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dstack_alloc.h64 * @def PUSH(stack, size, type)
66 * Allocates 'size' elements of type 'type' on the stack
70 * @param type Type of element
82 * @def ALLOC(var, size, type)
84 * Allocate 'size' elements of 'type' on stack
88 * @param type Type of element
93 #define VARDECL(type, var)
94 #define ALLOC(var, size, type) type va
[all...]
/external/libopus/celt/
H A Dstack_alloc.h64 * @def PUSH(stack, size, type)
66 * Allocates 'size' elements of type 'type' on the stack
70 * @param type Type of element
82 * @def ALLOC(var, size, type)
84 * Allocate 'size' elements of 'type' on stack
88 * @param type Type of element
93 #define VARDECL(type, var)
94 #define ALLOC(var, size, type) type va
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dauto_fs4.h38 static inline void set_autofs_type_indirect(unsigned int *type) argument
40 *type = AUTOFS_TYPE_INDIRECT;
44 static inline unsigned int autofs_type_indirect(unsigned int type) argument
46 return (type == AUTOFS_TYPE_INDIRECT);
49 static inline void set_autofs_type_direct(unsigned int *type) argument
51 *type = AUTOFS_TYPE_DIRECT;
55 static inline unsigned int autofs_type_direct(unsigned int type) argument
57 return (type == AUTOFS_TYPE_DIRECT);
60 static inline void set_autofs_type_offset(unsigned int *type) argument
62 *type
66 autofs_type_offset(unsigned int type) argument
71 autofs_type_trigger(unsigned int type) argument
81 set_autofs_type_any(unsigned int *type) argument
87 autofs_type_any(unsigned int type) argument
[all...]
H A Dv4l2-dv-timings.h39 .type = V4L2_DV_BT_656_1120, \
48 .type = V4L2_DV_BT_656_1120, \
55 .type = V4L2_DV_BT_656_1120, \
64 .type = V4L2_DV_BT_656_1120, \
71 .type = V4L2_DV_BT_656_1120, \
78 .type = V4L2_DV_BT_656_1120, \
87 .type = V4L2_DV_BT_656_1120, \
95 .type = V4L2_DV_BT_656_1120, \
103 .type = V4L2_DV_BT_656_1120, \
111 .type
[all...]
/external/chromium_org/base/allocator/
H A Dtype_profiler_unittest.cc59 const std::type_info* type; local
61 type = LookupType(dummy);
62 ASSERT_NE(kConstNull, type);
63 EXPECT_STREQ(typeid(int).name(), type->name());
66 type = LookupType(dummy);
67 EXPECT_EQ(kConstNull, type);
72 const std::type_info* type; local
74 type = LookupType(dummy);
75 ASSERT_NE(kConstNull, type);
76 // For an array, the profiler remembers its base type
86 const std::type_info* type; local
107 const std::type_info* type; local
143 const std::type_info* type; local
158 const std::type_info* type; local
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dui_events.cc7 MouseEvent::MouseEvent(MouseEventType type, argument
13 : type(type),
22 TouchEvent::TouchEvent(TouchEventType type, argument
25 : type(type),
31 KeyEvent::KeyEvent(KeyEventType type, argument
36 : type(type),
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DCrypto.cpp44 ArrayBufferView::ViewType type = array->type(); local
45 return type == ArrayBufferView::TypeInt8
46 || type == ArrayBufferView::TypeUint8
47 || type == ArrayBufferView::TypeUint8Clamped
48 || type == ArrayBufferView::TypeInt16
49 || type == ArrayBufferView::TypeUint16
50 || type == ArrayBufferView::TypeInt32
51 || type == ArrayBufferView::TypeUint32;
67 exceptionState.throwDOMException(TypeMismatchError, String::format("The provided ArrayBufferView is of type '
[all...]
/external/chromium_org/ui/base/
H A Dpage_transition_types.h28 PageTransition type);
30 bool PageTransitionIsValidType(int32 type);
32 UI_BASE_EXPORT PageTransition PageTransitionFromInt(int32 type);
36 UI_BASE_EXPORT bool PageTransitionIsMainFrame(PageTransition type);
39 UI_BASE_EXPORT bool PageTransitionIsRedirect(PageTransition type);
43 UI_BASE_EXPORT bool PageTransitionIsNewNavigation(PageTransition type);
46 UI_BASE_EXPORT int32 PageTransitionGetQualifier(PageTransition type);
50 UI_BASE_EXPORT bool PageTransitionIsWebTriggerable(PageTransition type);
52 // Return a string version of the core type values.
54 PageTransition type);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DClassicToken.cs46 int type; field in class:Antlr.Runtime.ClassicToken
54 public ClassicToken(int type) { argument
55 this.type = type;
60 type = oldToken.Type;
66 public ClassicToken(int type, string text) { argument
67 this.type = type;
71 public ClassicToken(int type, string text, int channel) { argument
72 this.type
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DClassicToken.cs48 int type; field in class:Antlr.Runtime.ClassicToken
56 public ClassicToken( int type )
58 this.type = type;
64 type = oldToken.Type;
70 public ClassicToken( int type, string text ) argument
72 this.type = type;
76 public ClassicToken( int type, string text, int channel ) argument
78 this.type
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs49 public static Type getComponentType( this Type type )
51 return type.GetElementType();
55 public static ConstructorInfo getConstructor( this Type type, Type[] argumentTypes ) argument
57 return type.GetConstructor( argumentTypes );
61 public static FieldInfo getField( this Type type, string name ) argument
63 FieldInfo field = type.GetField( name );
71 public static string getName( this Type type )
73 return type.Name;
83 public static bool isArray( this Type type )
85 return type
[all...]
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_action.cc10 SpellcheckAction::SpellcheckAction() : type(TYPE_PENDING), index(-1) {}
12 SpellcheckAction::SpellcheckAction(SpellcheckActionType type, argument
15 : type(type), index(index), value(value) {}
20 return type == TYPE_ADD_TO_DICT ||
21 type == TYPE_IGNORE ||
22 type == TYPE_IN_DICTIONARY ||
23 type == TYPE_MANUALLY_CORRECTED ||
24 type == TYPE_NO_ACTION ||
25 type
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dform_group.cc21 for (ServerFieldTypeSet::const_iterator type = types.begin();
22 type != types.end(); ++type) {
23 if (GetInfo(AutofillType(*type), app_locale) == text)
24 matching_types->insert(*type);
32 for (ServerFieldTypeSet::const_iterator type = types.begin();
33 type != types.end(); ++type) {
34 if (!GetInfo(AutofillType(*type), app_locale).empty())
35 non_empty_types->insert(*type);
39 GetInfo(const AutofillType& type, const std::string& app_locale) const argument
44 SetInfo(const AutofillType& type, const base::string16& value, const std::string& app_locale) argument
[all...]
/external/chromium_org/content/public/test/
H A Dtest_notification_tracker.cc13 : type(NOTIFICATION_ALL),
20 : type(t),
32 int type,
34 registrar_.Add(this, type, source);
41 bool TestNotificationTracker::Check1AndReset(int type) { argument
46 bool success = events_[0].type == type;
57 bool success = events_[0].type == type1 && events_[1].type == type2;
69 bool success = events_[0].type
31 ListenFor( int type, const NotificationSource& source) argument
76 Observe( int type, const NotificationSource& source, const NotificationDetails& details) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementException.cpp39 String CustomElementException::preamble(const AtomicString& type) argument
41 return "Registration failed for type '" + type + "'. ";
44 void CustomElementException::throwException(Reason reason, const AtomicString& type, ExceptionState& exceptionState) argument
48 exceptionState.throwDOMException(NotSupportedError, preamble(type) + "Elements cannot be registered from extensions.");
52 exceptionState.throwDOMException(NotSupportedError, preamble(type) + "Prototype constructor property is not configurable.");
56 exceptionState.throwDOMException(InvalidStateError, preamble(type) + "The context is no longer valid.");
60 exceptionState.throwDOMException(InvalidStateError, preamble(type) + "The context is no longer valid.");
64 exceptionState.throwDOMException(InvalidStateError, preamble(type) + "The context is no longer valid.");
68 exceptionState.throwDOMException(NotSupportedError, preamble(type)
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DBiquadFilterNode.cpp41 String BiquadFilterNode::type() const function in class:blink::BiquadFilterNode
43 switch (const_cast<BiquadFilterNode*>(this)->biquadProcessor()->type()) {
66 void BiquadFilterNode::setType(const String& type) argument
68 if (type == "lowpass")
70 else if (type == "highpass")
72 else if (type == "bandpass")
74 else if (type == "lowshelf")
76 else if (type == "highshelf")
78 else if (type == "peaking")
80 else if (type
86 setType(unsigned type) argument
[all...]
/external/chromium_org/ui/message_center/
H A Dnotifier_settings.cc11 NotifierId::NotifierId(NotifierType type, argument
13 : type(type),
15 DCHECK(type != WEB_PAGE);
20 : type(WEB_PAGE),
24 : type(SYSTEM_COMPONENT) {
28 if (type != other.type)
34 if (type == WEB_PAGE)
41 if (type !
[all...]
/external/android-clat/
H A Dicmp.c44 * Determines whether an ICMP type is an error message.
45 * type: the ICMP type
47 int is_icmp_error(uint8_t type) { argument
48 return type == 3 || type == 11 || type == 12;
52 * Determines whether an ICMPv6 type is an error message.
53 * type: the ICMPv6 type
55 is_icmp6_error(uint8_t type) argument
63 icmp_to_icmp6_type(uint8_t type, uint8_t code) argument
91 icmp_to_icmp6_code(uint8_t type, uint8_t code) argument
126 icmp6_to_icmp_type(uint8_t type, uint8_t code) argument
151 icmp6_to_icmp_code(uint8_t type, uint8_t code) argument
[all...]

Completed in 975 milliseconds

1234567891011>>