Searched refs:Type (Results 126 - 150 of 3758) sorted by relevance

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DAddPropertyTransformer.java20 import org.mockito.asm.Type;
26 private final Type[] types;
31 types = new Type[size];
33 types[i] = (Type)props.get(names[i]);
37 public AddPropertyTransformer(String[] names, Type[] types) {
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat6 ATTRIBUTE User-Service-Type 6 integer
19 VALUE Service-Type Shell-User 6
20 VALUE Auth-Type Unix 1
21 VALUE Service-Type Dialback-Login-User 3
22 VALUE Service-Type Dialback-Framed-User 4
33 VALUE Service-Type Login 1
34 VALUE Service-Type Framed 2
35 VALUE Service-Type Callback-Login 3
36 VALUE Service-Type Callback-Framed 4
37 VALUE Service-Type Exe
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dindentation.py38 Type = javascripttokens.JavaScriptTokenType variable
93 Type.START_PAREN, Type.START_PARAMETERS)
145 if token_type == Type.END_PAREN:
146 self._PopTo(Type.START_PAREN)
148 elif token_type == Type.END_PARAMETERS:
149 self._PopTo(Type.START_PARAMETERS)
151 elif token_type == Type.END_BRACKET:
152 self._PopTo(Type.START_BRACKET)
154 elif token_type == Type
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dindentation.py38 Type = javascripttokens.JavaScriptTokenType variable
93 Type.START_PAREN, Type.START_PARAMETERS)
145 if token_type == Type.END_PAREN:
146 self._PopTo(Type.START_PAREN)
148 elif token_type == Type.END_PARAMETERS:
149 self._PopTo(Type.START_PARAMETERS)
151 elif token_type == Type.END_BRACKET:
152 self._PopTo(Type.START_BRACKET)
154 elif token_type == Type
[all...]
/external/llvm/test/MC/AsmParser/
H A Dsection_names.s34 # CHECK-NEXT: Type: SHT_PROGBITS
36 # CHECK-NEXT: Type: SHT_PROGBITS
38 # CHECK-NEXT: Type: SHT_PROGBITS
40 # CHECK-NEXT: Type: SHT_INIT_ARRAY
42 # CHECK-NEXT: Type: SHT_PROGBITS
44 # CHECK-NEXT: Type: SHT_PROGBITS
46 # CHECK-NEXT: Type: SHT_FINI_ARRAY
48 # CHECK-NEXT: Type: SHT_PROGBITS
50 # CHECK-NEXT: Type: SHT_PROGBITS
52 # CHECK-NEXT: Type
[all...]
/external/clang/lib/AST/
H A DInheritViz.cpp46 void WriteGraph(QualType Type) { argument
47 Out << "digraph \"" << DOT::EscapeString(Type.getAsString()) << "\" {\n";
48 WriteNode(Type, false);
55 void WriteNode(QualType Type, bool FromVirtual);
60 raw_ostream& WriteNodeReference(QualType Type, bool FromVirtual);
63 void InheritanceHierarchyWriter::WriteNode(QualType Type, bool FromVirtual) { argument
64 QualType CanonType = Context.getCanonicalType(Type);
77 WriteNodeReference(Type, FromVirtual);
80 std::string TypeName = Type.getAsString();
95 = static_cast<const CXXRecordDecl *>(Type
125 WriteNodeReference(QualType Type, bool FromVirtual) argument
[all...]
/external/mockito/src/org/mockito/internal/util/reflection/
H A DGenericMetadataSupport.java29 * <li>A new instance representing the metadata is created using the {@link #inferFrom(Type)} method from a real
53 * @see #inferFrom(Type)
65 protected Map<TypeVariable, Type> contextualActualTypeParameters = new HashMap<TypeVariable, Type>();
68 protected void registerTypeVariablesOn(Type classType) {
74 Type[] actualTypeArguments = parameterizedType.getActualTypeArguments();
77 Type actualTypeArgument = actualTypeArguments[i];
139 public List<Type> extraInterfaces() {
155 public Map<TypeVariable, Type> actualTypeArguments() {
157 LinkedHashMap<TypeVariable, Type> actualTypeArgument
[all...]
H A DGenericMaster.java9 import java.lang.reflect.Type;
20 Type generic = field.getGenericType();
22 Type actual = ((ParameterizedType) generic).getActualTypeArguments()[0];
/external/clang/lib/Driver/
H A DAction.cpp57 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) argument
58 : Action(Kind, Input, Type) {
61 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type) argument
62 : Action(Kind, Inputs, Type) {
103 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type) argument
104 : JobAction(LinkJobClass, Inputs, Type) {
109 LipoJobAction::LipoJobAction(ActionList &Inputs, types::ID Type) argument
110 : JobAction(LipoJobClass, Inputs, Type) {
115 DsymutilJobAction::DsymutilJobAction(ActionList &Inputs, types::ID Type) argument
116 : JobAction(DsymutilJobClass, Inputs, Type) {
121 VerifyJobAction(ActionClass Kind, Action *Input, types::ID Type) argument
128 VerifyJobAction(ActionClass Kind, ActionList &Inputs, types::ID Type) argument
137 VerifyDebugInfoJobAction(Action *Input, types::ID Type) argument
144 VerifyPCHJobAction(Action *Input, types::ID Type) argument
[all...]
/external/compiler-rt/lib/asan/tests/
H A Dasan_asm_test.cc34 #define DECLARE_ASM_WRITE(Type, Size, Mov, Reg) \
35 template<> void asm_write<Type>(Type *ptr, Type val) { \
44 #define DECLARE_ASM_READ(Type, Size, Mov, Reg) \
45 template<> Type asm_read<Type>(Type *ptr) { \
46 Type res; \
67 #define DECLARE_ASM_WRITE(Type, Siz
[all...]
/external/harfbuzz_ng/src/
H A Dhb-object-private.hh179 template <typename Type>
180 static inline void hb_object_trace (const Type *obj, const char *function)
184 template <typename Type>
185 static inline Type *hb_object_create (void)
187 Type *obj = (Type *) hb_object_header_t::create (sizeof (Type));
191 template <typename Type>
192 static inline bool hb_object_is_inert (const Type *obj)
196 template <typename Type>
[all...]
/external/clang/include/clang/Basic/
H A DDiagnosticOptions.h40 #define ENUM_DIAGOPT(Name, Type, Bits, Default)
47 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits;
64 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
65 Type get##Name() const { return static_cast<Type>(Name); } \
66 void set##Name(Type Value) { Name = static_cast<unsigned>(Value); }
71 #define ENUM_DIAGOPT(Name, Type, Bits, Default) set##Name(Default);
/external/replicaisland/src/com/replica/replicaisland/
H A DShellSorter.java21 public class ShellSorter<Type> extends Sorter<Type> {
30 public void sort(Type[] array, int count, Comparator<Type> comparator) {
58 public void insertionSort(Type[] array, int count, int start, int increment,
59 Comparator<Type> comparator) {
62 Type temp;
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java36 public enum Type { enum in class:JavaExpression
43 return call(Type.STRING, "asString", expression);
52 return call(Type.INT, "asInt", expression);
61 return call(Type.BOOLEAN, "asBoolean", expression);
68 return call(Type.VALUE, "asVariableValue", expression, TemplateTranslator.DATA_CONTEXT);
70 return call(Type.VALUE, "asValue", expression);
89 final JavaExpression stringExpr = expression.cast(Type.STRING);
90 return new JavaExpression(Type.VAR_NAME) {
115 // JavaExpression of Type VOID.
119 return new JavaExpression(Type
142 private Type(String symbol) { method in class:JavaExpression.Type
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs84 Type = TokenTypes.EndOfFile
89 Type = TokenTypes.Invalid
94 Type = TokenTypes.Invalid
/external/chromium_org/cc/animation/
H A Danimation_events.h18 enum Type { Started, Finished, Aborted, PropertyUpdate }; enum in struct:cc::AnimationEvent
20 AnimationEvent(Type type,
26 Type type;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLValue.h38 enum Type { NullValue, NumberValue, StringValue }; enum in class:blink::SQLValue
45 Type type() const { return m_type; }
51 Type m_type;
/external/chromium_org/v8/src/compiler/
H A Djs-builtin-reducer-unittest.cc31 Node* Parameter(Type* t, int32_t index = 0) {
33 NodeProperties::SetBounds(n, Bounds(Type::None(), t));
52 Type* const kNumberTypes[] = {
53 Type::UnsignedSmall(), Type::OtherSignedSmall(), Type::OtherUnsigned31(),
54 Type::OtherUnsigned32(), Type::OtherSigned32(), Type::SignedSmall(),
55 Type
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstBoolean.java19 import com.android.dx.rop.type.Type;
76 public Type getType() {
77 return Type.BOOLEAN;
H A DCstKnownNull.java19 import com.android.dx.rop.type.Type;
61 public Type getType() {
62 return Type.KNOWN_NULL;
H A DCstLong.java19 import com.android.dx.rop.type.Type;
64 public Type getType() {
65 return Type.LONG;
/external/llvm/include/llvm/Target/
H A DTargetIntrinsicInfo.h24 class Type;
40 /// intrinsic, Tys should point to an array of numTys pointers to Type,
43 virtual std::string getName(unsigned IID, Type **Tys = nullptr,
59 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = nullptr,
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h370 bool hasProperty(unsigned MCFlag, QueryType Type = AnyInBundle) const {
372 if (Type == IgnoreBundle || !isBundled() || isBundledWithPred())
376 return hasPropertyInBundle(1 << MCFlag, Type);
383 bool isVariadic(QueryType Type = IgnoreBundle) const {
384 return hasProperty(MCID::Variadic, Type);
389 bool hasOptionalDef(QueryType Type = IgnoreBundle) const {
390 return hasProperty(MCID::HasOptionalDef, Type);
396 bool isPseudo(QueryType Type = IgnoreBundle) const {
397 return hasProperty(MCID::Pseudo, Type);
400 bool isReturn(QueryType Type
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-js-constant-cache.cc42 Type* upper(Node* node) { return NodeProperties::GetBounds(node).upper; }
66 Type* t = T.upper(zero);
68 CHECK(t->Is(Type::Number()));
69 CHECK(t->Is(Type::Integral32()));
70 CHECK(t->Is(Type::Signed32()));
71 CHECK(t->Is(Type::Unsigned32()));
72 CHECK(t->Is(Type::SignedSmall()));
73 CHECK(t->Is(Type::UnsignedSmall()));
87 Type* t = T.upper(minus_zero);
89 CHECK(t->Is(Type
[all...]
/external/llvm/include/llvm/IR/
H A DDataLayout.h26 #include "llvm/IR/Type.h"
36 class Type;
64 unsigned TypeBitWidth : 24; ///< Type bit width
84 uint32_t TypeByteWidth; ///< Type byte width
146 bool ABIAlign, Type *Ty) const;
153 unsigned getAlignment(Type *Ty, bool abi_or_pref) const;
322 unsigned getPointerTypeSizeInBits(Type *) const;
324 unsigned getPointerTypeSize(Type *Ty) const {
330 /// Type SizeInBits StoreSizeInBits AllocSizeInBits[*]
347 /// The type passed must have a size (Type
[all...]

Completed in 620 milliseconds

1234567891011>>