Searched refs:Type (Results 101 - 125 of 3758) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/packet/
H A DIQ.java44 private Type type = Type.GET;
59 public Type getType() {
68 public void setType(Type type) {
70 this.type = Type.GET;
120 * Convenience method to create a new empty {@link Type#RESULT IQ.Type.RESULT}
121 * IQ based on a {@link Type#GET IQ.Type.GET} or {@link Type#SE
198 public static class Type { class in class:IQ
236 private Type(String value) { method in class:IQ.Type
[all...]
/external/llvm/unittests/IR/
H A DTypeBuilderTest.cpp20 EXPECT_EQ(Type::getVoidTy(getGlobalContext()), (TypeBuilder<void, true>::get(getGlobalContext())));
21 EXPECT_EQ(Type::getVoidTy(getGlobalContext()), (TypeBuilder<void, false>::get(getGlobalContext())));
23 EXPECT_EQ(Type::getInt8PtrTy(getGlobalContext()),
25 EXPECT_EQ(Type::getInt8PtrTy(getGlobalContext()),
27 EXPECT_EQ(Type::getInt8PtrTy(getGlobalContext()),
29 EXPECT_EQ(Type::getInt8PtrTy(getGlobalContext()),
35 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<int8_t, false>::get(getGlobalContext())));
36 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<uint8_t, false>::get(getGlobalContext())));
37 EXPECT_EQ(Type::getInt16Ty(getGlobalContext()), (TypeBuilder<int16_t, false>::get(getGlobalContext())));
38 EXPECT_EQ(Type
[all...]
/external/deqp/framework/referencerenderer/
H A DrrPrimitiveTypes.hpp53 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLES> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Triangles Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
54 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_STRIP> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::TriangleStrip Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
55 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_FAN> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::TriangleFan Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
56 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Lines Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
57 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineStrip Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
58 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_LOOP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineLoop Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
59 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_POINTS> { typedef pa::Point Type; typedef pa::Point BaseType; typedef pa::Points Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
60 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::LinesAdjacency Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
61 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::LineStripAdjacency Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
62 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLES_ADJACENCY> { typedef pa::TriangleAdjacency Type; typede typedef in struct:rr::PrimitiveTypeTraits
63 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_STRIP_ADJACENCY> { typedef pa::TriangleAdjacency Type; typedef pa::Triangle BaseType; typedef pa::TriangleStripAdjacency Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
[all...]
/external/llvm/include/llvm/IR/
H A DType.h1 //===-- llvm/Type.h - Classes for handling data types -----------*- C++ -*-===//
10 // This file contains the declaration of the Type class. For more "Type"
37 /// The instances of the Type class are immutable: once they are created,
41 /// are created, Type instances can only be created via static factory methods
42 /// in class Type and in derived classes. Once allocated, Types are never
45 class Type { class in namespace:llvm
48 /// Definitions of all of the base types for the Type system. Based on this
51 /// Type::getPrimitiveType function, or else things will break!
89 explicit Type(LLVMContex function in class:llvm::Type
268 isSized(SmallPtrSet<const Type*, 4> *Visited = nullptr) const argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DBasicInterpreter.java35 import org.mockito.asm.Type;
52 public Value newValue(final Type type) {
57 case Type.VOID:
59 case Type.BOOLEAN:
60 case Type.CHAR:
61 case Type.BYTE:
62 case Type.SHORT:
63 case Type.INT:
65 case Type.FLOAT:
67 case Type
[all...]
/external/llvm/lib/IR/
H A DType.cpp1 //===-- Type.cpp - Implement the Type class -------------------------------===//
10 // This file implements the Type class for the IR library.
14 #include "llvm/IR/Type.h"
23 // Type Class Implementation
26 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
45 Type *Type::getScalarType() {
51 const Type *Typ
158 isSizedDerivedType(SmallPtrSet<const Type*, 4> *Visited) const argument
553 isSized(SmallPtrSet<const Type*, 4> *Visited) const argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DType.java42 public class Type { class
102 public static final Type VOID_TYPE = new Type(VOID);
107 public static final Type BOOLEAN_TYPE = new Type(BOOLEAN);
112 public static final Type CHAR_TYPE = new Type(CHAR);
117 public static final Type BYTE_TYPE = new Type(BYTE);
122 public static final Type SHORT_TYP
180 private Type(final int sort) { method in class:Type
192 private Type(final int sort, final char[] buf, final int off, final int len) method in class:Type
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DExpressionTranslator.java19 import com.google.clearsilver.jsilver.compiler.JavaExpression.Type;
84 return translateUntyped(csExpression).cast(Type.STRING);
91 return translateUntyped(csExpression).cast(Type.BOOLEAN);
98 return translateUntyped(csExpression).cast(Type.INT);
105 return translateUntyped(csExpression).cast(Type.DATA);
112 return translateUntyped(csExpression).cast(Type.VAR_NAME);
119 return translateUntyped(csExpression).cast(Type.VALUE);
128 Type type = expression.getType();
197 setResult(cast(Type.INT, node.getExpression()));
202 setResult(prefix(Type
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_management_constants.h33 // The corresponding Manifest::Type.
34 Manifest::Type manifest_type;
42 Manifest::Type GetManifestType(const std::string& name);
/external/chromium_org/components/omnibox/
H A Dautocomplete_match_type.h11 // Type of AutocompleteMatch. Typedef'ed in autocomplete_match.h. Defined here
16 enum Type { enum in struct:AutocompleteMatchType
50 static std::string ToString(AutocompleteMatchType::Type type);
/external/chromium_org/extensions/common/
H A Dcsp_validator.h32 const std::string& policy, Manifest::Type type);
41 const std::string& policy, Manifest::Type type);
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositedSelectionBound.h40 enum Type { enum in struct:blink::CompositedSelectionBound
52 Type type;
/external/clang/include/clang/AST/
H A DASTFwd.h23 class Type;
24 #define TYPE(DERIVED, BASE) class DERIVED##Type;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchBuilder.java19 import com.android.dx.rop.type.Type;
47 public HashSet<Type> getCatchTypes();
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DSignature.java18 import org.mockito.asm.Type;
37 public Signature(String name, Type returnType, Type[] argumentTypes) {
38 this(name, Type.getMethodDescriptor(returnType, argumentTypes));
49 public Type getReturnType() {
50 return Type.getReturnType(desc);
53 public Type[] getArgumentTypes() {
54 return Type.getArgumentTypes(desc);
/external/chromium_org/tools/gyp/tools/Xcode/Specifications/
H A Dgyp.xclangspec31 Type = "xcode.syntax.keyword";
41 Type = "xcode.syntax.identifier.type";
77 Type = "xcode.syntax.plain";
137 Type = "xcode.syntax.definition.function";
148 Type = "xcode.syntax.identifier.type";
207 Type = "xcode.syntax.comment";
223 Type = "xcode.syntax.comment";
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DCallbackInfo.java18 import org.mockito.asm.Type;
22 public static Type[] determineTypes(Class[] callbackTypes) {
23 Type[] types = new Type[callbackTypes.length];
30 public static Type[] determineTypes(Callback[] callbacks) {
31 Type[] types = new Type[callbacks.length];
38 public static CallbackGenerator[] getGenerators(Type[] callbackTypes) {
50 private Type type;
65 type = Type
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Djavascriptstatetracker.py26 Type = javascripttokens.JavaScriptTokenType variable
100 last_code = tokenutil.SearchExcept(token, Type.NON_CODE_TYPES, None,
102 if last_code.type in (Type.END_PARAMETERS, Type.END_PAREN,
103 Type.KEYWORD) and not last_code.IsKeyword('return'):
/external/chromium_org/base/i18n/
H A Dicu_string_conversions.h20 enum Type { enum in class:base::OnStringConversionError
43 OnStringConversionError::Type on_error,
47 OnStringConversionError::Type on_error,
55 OnStringConversionError::Type on_error,
59 OnStringConversionError::Type on_error,
/external/chromium_org/chrome/browser/chromeos/policy/
H A Ddevice_local_account.h20 enum Type { enum in struct:policy::DeviceLocalAccount
29 DeviceLocalAccount(Type type,
34 Type type;
58 DeviceLocalAccount::Type type);
63 DeviceLocalAccount::Type* type);
/external/chromium_org/chrome/browser/prefs/
H A Dsession_startup_pref.h22 enum Type { enum in struct:SessionStartupPref
53 static Type GetDefaultStartupType();
78 // Converts an integer pref value to a SessionStartupPref::Type.
79 static SessionStartupPref::Type PrefValueToType(int pref_value);
81 explicit SessionStartupPref(Type type);
86 Type type;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebIconURL.h45 enum Type { enum in class:blink::WebIconURL
57 WebIconURL(const WebURL& url, Type type)
63 Type iconType() const
80 : m_iconType(static_cast<Type>(iconURL.m_iconType))
88 Type m_iconType;
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cc53 template <typename Type>
56 static_cast<Type *>(0)->Accept(i); // expected-error{{member reference base}}
62 template <typename Type>
63 GMG<Type> GMG<Type>::singleton;
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp18 template<class Class,typename Type,Type Class::*>
23 template<class Class,typename Type,Type Class::*PtrToMember>
24 struct member: non_const_member_base<Class,Type,PtrToMember>
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_atomic_test.cc20 typename T::Type magic0;
22 typename T::Type magic1;
32 typedef typename T::Type Type; typedef
37 val.magic0 = val.magic1 = (Type)-3;
44 val.a.val_dont_use = (Type)v;
45 EXPECT_EQ(atomic_load(&val.a, load_mo), (Type)v);
46 val.a.val_dont_use = (Type)-1;
47 atomic_store(&val.a, (Type)v, store_mo);
48 EXPECT_EQ(val.a.val_dont_use, (Type)
96 typedef typename T::Type Type; typedef
[all...]

Completed in 4574 milliseconds

1234567891011>>