Searched refs:Type (Results 201 - 225 of 3758) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/packet/
H A DXMPPError.java31 * <hr><td><b>Code</b></td><td><b>XMPP Error</b></td><td><b>Type</b></td></hr>
63 private Type type;
134 public XMPPError(int code, Type type, String condition, String message,
173 public Type getType() {
296 * <li>XMPPError.Type.WAIT - retry after waiting (the error is temporary)
297 * <li>XMPPError.Type.CANCEL - do not retry (the error is unrecoverable)
298 * <li>XMPPError.Type.MODIFY - retry after changing the data sent
299 * <li>XMPPError.Type.AUTH - retry after providing credentials
300 * <li>XMPPError.Type.CONTINUE - proceed (the condition was only a warning)
303 public static enum Type { enum in class:XMPPError
[all...]
/external/chromium_org/v8/src/
H A Dtypes-inl.h66 T* ZoneTypeConfig::cast(Type* type) {
72 bool ZoneTypeConfig::is_bitset(Type* type) {
78 bool ZoneTypeConfig::is_struct(Type* type, int tag) {
84 bool ZoneTypeConfig::is_class(Type* type) {
90 ZoneTypeConfig::Type::bitset ZoneTypeConfig::as_bitset(Type* type) {
92 return static_cast<Type::bitset>(reinterpret_cast<uintptr_t>(type) ^ 1u);
97 ZoneTypeConfig::Struct* ZoneTypeConfig::as_struct(Type* type) {
104 i::Handle<i::Map> ZoneTypeConfig::as_class(Type* type) {
111 ZoneTypeConfig::Type* ZoneTypeConfi
[all...]
/external/lldb/tools/lldb-perf/lib/
H A DResults.h32 enum class Type class in class:lldb_perf::Results::Result
42 Result (Type type, const char *name, const char *description) :
64 if (m_type == Type::Array)
71 if (m_type == Type::Dictionary)
78 if (m_type == Type::Double)
86 if (m_type == Type::String)
93 if (m_type == Type::Unsigned)
114 Type
123 Type m_type;
132 Result (Type
[all...]
/external/llvm/test/MC/ARM/
H A Dthumb_set.s65 @ CHECK: Type: Function
71 @ CHECK: Type: Function
77 @ CHECK: Type: Function
83 @ CHECK: Type: Function
89 @ CHECK: Type: Function
95 @ CHECK: Type: Object
101 @ CHECK: Type: Function
107 @ CHECK: Type: Function
115 @ CHECK-NEXT: Type: Object
123 @ CHECK: Type
[all...]
H A Dthumb-types.s58 @ CHECK: Type: Function
64 @ CHECK: Type: Object
70 @ CHECK: Type: Function
76 @ CHECK: Type: Object
82 @ CHECK: Type: Function
88 @ CHECK: Type: GNU_IFunc
94 @ CHECK: Type: TLS
100 @ CHECK: Type: None
106 @ CHECK: Type: None
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp1 //===--- CodeGenTypes.cpp - Type translation for LLVM CodeGen -------------===//
80 /// ConvertTypeForMem - Convert type T into a llvm::Type. This differs from
84 llvm::Type *CodeGenTypes::ConvertTypeForMem(QualType T){
85 llvm::Type *R = ConvertType(T);
99 bool CodeGenTypes::isRecordLayoutComplete(const Type *Ty) const {
100 llvm::DenseMap<const Type*, llvm::StructType *>::const_iterator I =
120 const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr();
268 static llvm::Type *getTypeForFormat(llvm::LLVMContext &VMContext,
273 return llvm::Type::getHalfTy(VMContext);
275 return llvm::Type
[all...]
/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp43 unsigned TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty,
44 Type *OpTy) const {
69 Intrinsic::ID IID, Type *RetTy, ArrayRef<Type *> ParamTys) const {
74 Intrinsic::ID IID, Type *RetTy, ArrayRef<const Value *> Arguments) const {
103 bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
111 int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
119 bool TargetTransformInfo::isTruncateFree(Type *Ty1, Type *Ty2) const {
123 bool TargetTransformInfo::isTypeLegal(Type *T
[all...]
/external/ceres-solver/include/ceres/internal/
H A Dmanual_constructor.h92 template <typename Type>
100 inline Type* get() {
101 return reinterpret_cast<Type*>(space_);
103 inline const Type* get() const {
104 return reinterpret_cast<const Type*>(space_);
107 inline Type* operator->() { return get(); }
108 inline const Type* operator->() const { return get(); }
110 inline Type& operator*() { return *get(); }
111 inline const Type& operator*() const { return *get(); }
120 new(space()) Type;
[all...]
/external/clang/lib/Format/
H A DTokenAnnotator.cpp58 CurrentToken->Type = TT_TemplateCloser;
72 ((CurrentToken->Previous->Type == TT_BinaryOperator &&
100 Left->Type = TT_ObjCBlockLParen;
112 Left->Previous->Type == TT_BinaryOperator)) {
118 Left->Previous->Type != TT_OverloadedOperator))) {
122 Left->Previous->MatchingParen->Type == TT_LambdaLSquare) {
129 Left->Type = TT_AttributeParen;
138 Left->Type = TT_ObjCMethodExpr;
157 Prev->Type = TT_BinaryOperator;
163 if (CurrentToken->Previous->Type
[all...]
/external/lldb/source/Symbol/
H A DType.cpp1 //===-- Type.cpp ------------------------------------------------*- C++ -*-===//
24 #include "lldb/Symbol/Type.h"
63 Type *
68 Type *resolved_type = m_symbol_file.ResolveTypeUID (GetID());
76 Type::Type function in class:Type
89 std::enable_shared_from_this<Type> (),
105 Type::Type () : function in class:Type
106 std::enable_shared_from_this<Type> (),
123 Type::Type (const Type &rhs) : function in class:Type
[all...]
H A DClangASTType.cpp24 #include "clang/AST/Type.h"
58 const clang::Type::TypeClass type_class = qual_type->getTypeClass();
61 case clang::Type::ConstantArray:
62 case clang::Type::IncompleteArray:
63 case clang::Type::VariableArray:
72 case clang::Type::Record:
73 case clang::Type::Enum:
106 case clang::Type::ObjCObject:
107 case clang::Type::ObjCInterface:
141 case clang::Type
[all...]
/external/clang/test/Parser/
H A Dcxx-decl.cpp7 struct Type { struct
8 int Type; member in struct:Type
52 int Type : fooenum; member in struct:a
55 void test(struct Type *P) {
56 int Type; local
57 Type = 1 ? P->Type : Type;
59 Type = (y:b) 4; // expected-error {{unexpected ':' in nested name specifier}}
60 Type
[all...]
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMetaHeader.h113 MetafileType Type; member in class:MetafileHeader
134 MetafileType GetType() const { return Type; }
163 return ((Type == MetafileTypeWmf) || (Type == MetafileTypeWmfAldus));
167 BOOL IsWmfAldus() const { return (Type == MetafileTypeWmf); }
170 BOOL IsEmf() const { return (Type == MetafileTypeEmf); }
173 BOOL IsEmfOrEmfPlus() const { return (Type >= MetafileTypeEmf); }
176 BOOL IsEmfPlus() const { return (Type >= MetafileTypeEmfPlusOnly); }
179 BOOL IsEmfPlusDual() const { return (Type == MetafileTypeEmfPlusDual); }
182 BOOL IsEmfPlusOnly() const { return (Type
[all...]
/external/chromium_org/v8/src/compiler/
H A Dmachine-operator.cc154 #define LOAD(Type) \
155 struct Load##Type##Operator FINAL : public Operator1<LoadRepresentation> { \
156 Load##Type##Operator() \
159 "Load", k##Type) {} \
161 Load##Type##Operator k##Load##Type;
165 #define STORE(Type) \
166 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \
167 explicit Store##Type##Operator(WriteBarrierKind write_barrier_kind) \
170 "Store", StoreRepresentation(k##Type, write_barrier_kin
[all...]
/external/llvm/lib/Object/
H A DSymbolicFile.cpp22 SymbolicFile::SymbolicFile(unsigned int Type, argument
24 : Binary(Type, std::move(Source)) {}
30 sys::fs::file_magic Type,
32 if (Type == sys::fs::file_magic::unknown)
33 Type = sys::fs::identify_magic(Object->getBuffer());
35 switch (Type) {
62 return ObjectFile::createObjectFile(Object, Type);
64 llvm_unreachable("Unexpected Binary File Type");
29 createSymbolicFile(std::unique_ptr<MemoryBuffer> &Object, sys::fs::file_magic Type, LLVMContext *Context) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DBasicVerifier.java34 import org.mockito.asm.Type;
144 expected = newValue(Type.getObjectType(((FieldInsnNode) insn).owner));
174 expected = newValue(Type.getType(((FieldInsnNode) insn).desc));
194 expected1 = newValue(Type.getType("[I"));
198 if (isSubTypeOf(value1, newValue(Type.getType("[Z")))) {
199 expected1 = newValue(Type.getType("[Z"));
201 expected1 = newValue(Type.getType("[B"));
206 expected1 = newValue(Type.getType("[C"));
210 expected1 = newValue(Type.getType("[S"));
214 expected1 = newValue(Type
[all...]
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary51 ATTRIBUTE Service-Type 6 integer
75 ATTRIBUTE Acct-Status-Type 40 integer
86 ATTRIBUTE NAS-Port-Type 61 integer
112 ATTRIBUTE Auth-Type 1000 integer
135 VALUE Service-Type Login-User 1
136 VALUE Service-Type Framed-User 2
137 VALUE Service-Type Callback-Login-User 3
138 VALUE Service-Type Callback-Framed-User 4
139 VALUE Service-Type Outbound-User 5
140 VALUE Service-Type Administrativ
[all...]
/external/chromium_org/net/dns/
H A Drecord_rdata.cc45 uint16 SrvRecordRdata::Type() const { function in class:net::SrvRecordRdata
50 if (other->Type() != Type()) return false;
81 uint16 ARecordRdata::Type() const { function in class:net::ARecordRdata
86 if (other->Type() != Type()) return false;
114 uint16 AAAARecordRdata::Type() const { function in class:net::AAAARecordRdata
119 if (other->Type() != Type()) return false;
142 uint16 CnameRecordRdata::Type() cons function in class:net::CnameRecordRdata
171 uint16 PtrRecordRdata::Type() const { function in class:net::PtrRecordRdata
208 uint16 TxtRecordRdata::Type() const { function in class:net::TxtRecordRdata
266 uint16 NsecRecordRdata::Type() const { function in class:net::NsecRecordRdata
[all...]
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
H A DProviderBookmarkNodeTest.java13 import org.chromium.chrome.browser.ChromeBrowserProvider.Type;
68 BookmarkNode root = new BookmarkNode(1, Type.FOLDER, "Bookmarks", null, null);
69 root.addChild(new BookmarkNode(2, Type.URL, "Google", "http://www.google.com/", root));
70 root.addChild(new BookmarkNode(3, Type.URL, "GoogleMaps", "http://maps.google.com/", root));
72 BookmarkNode folder1 = new BookmarkNode(4, Type.FOLDER, "Youtube", null, root);
74 folder1.addChild(new BookmarkNode(5, Type.FOLDER, "Empty folder", null, folder1));
76 BookmarkNode folder2 = new BookmarkNode(6, Type.FOLDER, "Some other folder", null, folder1);
79 folder1.addChild(new BookmarkNode(7, Type.URL, "RickRoll'D",
81 folder2.addChild(new BookmarkNode(8, Type.URL, "Surprised Vader",
158 BookmarkNode node = new BookmarkNode(1, Type
[all...]
/external/llvm/include/llvm/IR/
H A DGetElementPtrTypeIterator.h24 : public std::iterator<std::forward_iterator_tag, Type *, ptrdiff_t> {
26 Type *, ptrdiff_t> super;
29 Type *CurTy;
33 static generic_gep_type_iterator begin(Type *Ty, ItTy It) {
53 Type *operator*() const {
57 Type *getIndexedType() const {
64 Type *operator->() const { return operator*(); }
102 gep_type_begin(Type *Op0, ArrayRef<T> A) {
108 gep_type_end(Type * /*Op0*/, ArrayRef<T> A) {
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DGeneratedMessageLite.java118 public final <Type> int getExtensionCount(
119 final GeneratedExtension<MessageType, List<Type>> extension) {
126 public final <Type> Type getExtension(
127 final GeneratedExtension<MessageType, Type> extension) {
133 return (Type) value;
139 public final <Type> Type getExtension(
140 final GeneratedExtension<MessageType, List<Type>> extension,
143 return (Type) extension
[all...]
/external/skia/include/utils/
H A DSkJSON.h18 enum Type { enum in class:SkJSON
86 * Returns true if a slot matching the name and Type is found.
88 bool find(const char name[], Type) const;
97 * Finds the first slot matching the name and Type and removes it.
100 bool remove(const char name[], Type);
128 Type type() const;
180 const Slot* findSlot(const char name[], Type) const;
190 * Creates an array with the specified Type and element count. All
193 Array(Type, int count);
217 Type typ
[all...]
/external/chromium_org/base/threading/
H A Dthread_local.h16 // ThreadLocalPointer<Type> wraps a Type*. It performs no creation or
83 template <typename Type>
94 Type* Get() {
95 return static_cast<Type*>(
99 void Set(Type* ptr) {
109 DISALLOW_COPY_AND_ASSIGN(ThreadLocalPointer<Type>);
/external/chromium_org/chrome/common/mac/
H A Dlaunchd.h15 enum Type { enum in class:Launchd
55 Type type,
62 Type type,
67 Type type,
73 virtual bool DeletePlist(Domain domain, Type type, CFStringRef name);
/external/chromium_org/components/omnibox/
H A Dautocomplete_provider.h127 enum Type { enum in class:AutocompleteProvider
138 explicit AutocompleteProvider(Type type);
141 static const char* TypeToString(Type type);
168 // TODO(derat): Make metrics use AutocompleteProvider::Type directly, or at
198 Type type() const { return type_; }
242 Type type_;

Completed in 6251 milliseconds

1234567891011>>