HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 101 - 125 of 4287) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 31 unsigned Type; // The type of the relocation.
34 ELFRelocationEntry(uint64_t Offset, const MCSymbolELF *Symbol, unsigned Type,
36 : Offset(Offset), Symbol(Symbol), Type(Type), Addend(Addend) {}
71 unsigned Type) const;
85 // Instead of changing everyone's API we pack the N64 Type fields
96 // N64 relocation type accessors
97 uint8_t getRType(uint32_t Type) const {
98 return (unsigned)((Type >> R_TYPE_SHIFT) & 0xff)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubycontainer_extended.swg 16 * @param Type class inside container
19 %define %swig_container_with_equal_operator( Container, Type )
21 VALUE __delete__( const Type& val ) {
23 Container<Type >::iterator e = $self->end();
24 Container<Type >::iterator i = std::remove( $self->begin(), e, val );
29 r = swig::from< Type >( val );
45 * @param Type class inside container
49 %define %swig_container_with_assignment( Container, Type )
55 Container< Type >* map_bang() {
61 Container< Type >::iterator i = $self->begin()
    [all...]
  /external/llvm/lib/IR/
ValueTypes.cpp 18 #include "llvm/IR/Type.h"
36 assert(VT.isExtended() && "Type is not extended!");
44 assert(ResultVT.isExtended() && "Type is not extended!");
49 assert(isExtended() && "Type is not extended!");
54 assert(isExtended() && "Type is not extended!");
59 assert(isExtended() && "Type is not extended!");
96 assert(isExtended() && "Type is not extended!");
101 assert(isExtended() && "Type is not extended!");
106 assert(isExtended() && "Type is not extended!");
111 llvm_unreachable("Unrecognized extended type!");
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 36 int getScalarizationOverhead(Type *Ty, bool Insert, bool Extract);
66 unsigned Opcode, Type *Ty,
71 int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
72 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
73 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
74 int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
75 int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SimpleVerifier.java 34 import org.mockito.asm.Type;
39 * reference" type (as done in the {@link BasicVerifier}).
49 private final Type currentClass;
54 private final Type currentSuperClass;
82 final Type currentClass,
83 final Type currentSuperClass,
100 final Type currentClass,
101 final Type currentSuperClass,
111 public Value newValue(final Type type) {
166 Type type = ((BasicValue) value).getType(); local
    [all...]
  /external/llvm/include/llvm/IR/
DerivedTypes.h 14 // The implementations of these classes live in the Type.cpp file.
21 #include "llvm/IR/Type.h"
36 /// @brief Integer representation type
37 class IntegerType : public Type {
41 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){
50 ///< Note that bit width is stored in the Type classes SubclassData field
65 /// that can be set by an unsigned version of this type. This is 0xFF for
78 /// @returns a bit mask with ones set for all the bits of this type.
79 /// @brief Get a bit mask for this type.
88 /// Methods for support type inquiry through isa, cast, and dyn_cast
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_atomic_clang.h 47 INLINE typename T::Type atomic_fetch_add(volatile T *a,
48 typename T::Type v, memory_order mo) {
55 INLINE typename T::Type atomic_fetch_sub(volatile T *a,
56 typename T::Type v, memory_order mo) {
63 INLINE typename T::Type atomic_exchange(volatile T *a,
64 typename T::Type v, memory_order mo) {
76 typename T::Type *cmp,
77 typename T::Type xchg,
79 typedef typename T::Type Type;
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFObjectWriter.cpp 41 unsigned Type) const override;
53 unsigned Type) const {
57 switch (Type) {
81 unsigned Type = 0;
91 Type = ELF::R_ARM_REL32;
96 Type = ELF::R_ARM_TLS_IE32;
99 Type = ELF::R_ARM_GOT_PREL;
107 Type = ELF::R_ARM_CALL;
110 Type = ELF::R_ARM_TLS_CALL;
113 Type = ELF::R_ARM_CALL
    [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 44 template<typename Type, typename TObject>
45 static inline const Type& CastR(const TObject &X)
46 { return reinterpret_cast<const Type&> (X); }
47 template<typename Type, typename TObject>
48 static inline Type& CastR(TObject &X)
49 { return reinterpret_cast<Type&> (X); }
52 template<typename Type, typename TObject>
53 static inline const Type* CastP(const TObject *X)
54 { return reinterpret_cast<const Type*> (X); }
55 template<typename Type, typename TObject
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 28 * Represents a JVM type in data-flow analysis. This abstraction is necessary since
29 * a JVM type not only includes all normal Java types, but also a few special types
35 * compare type instances.
38 * to obtain the needed type information.
42 public class Type {
47 /** Represents the double primitive type */
48 public static final Type DOUBLE = new Type(CtClass.doubleType);
49 /** Represents the boolean primitive type */
50 public static final Type BOOLEAN = new Type(CtClass.booleanType)
126 Type type = (Type)prims.get(clazz); local
236 Type type = (Type)prims.get(component); local
325 Type type; local
    [all...]
MultiArrayType.java 26 public class MultiArrayType extends Type {
62 public Type getComponent() {
63 return dims == 1 ? (Type)component : new MultiArrayType(component, dims - 1);
74 public boolean isAssignableFrom(Type type) {
82 public boolean isAssignableTo(Type type) {
83 if (eq(type.getCtClass(), Type.OBJECT.getCtClass()))
86 if (eq(type.getCtClass(), Type.CLONEABLE.getCtClass())
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
TypeUtils.java 20 import org.mockito.asm.Type;
43 public static Type getType(String className) {
44 return Type.getType("L" + className.replace('.', '/') + ";");
80 public static String getPackageName(Type type) {
81 return getPackageName(getClassName(type));
96 public static String getClassName(Type type) {
97 if (isPrimitive(type)) {
98 return (String)rtransforms.get(type.getDescriptor())
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetaheader.h 76 MetafileType Type;
116 if (Type == MetafileTypeEmf
117 || Type == MetafileTypeEmfPlusOnly
118 || Type == MetafileTypeEmfPlusDual)
137 return Type;
145 if (Type == MetafileTypeWmf || Type == MetafileTypeWmfPlaceable)
160 return Type == MetafileTypeEmf;
164 return Type == MetafileTypeEmf
165 || Type == MetafileTypeEmfPlusOnl
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 49 public static Type getComponentType( this Type type )
51 return type.GetElementType();
55 public static ConstructorInfo getConstructor( this Type type, Type[] argumentTypes )
57 return type.GetConstructor( argumentTypes );
61 public static FieldInfo getField( this Type type, string name
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
QuickSorter.java 21 public class QuickSorter<Type> extends Sorter<Type> {
22 public void sort(Type[] array, int count, Comparator<Type> comparator) {
45 public void quicksort(Type[] a, int left, int right, Comparator<Type> comparator) {
53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) {
67 Type swap = a[i]; // swap two elements into place
71 Type swap = a[i]; // swap with partition elemen
    [all...]
  /external/v8/src/compiler/
typer.h 33 Type::FunctionType* function_type = nullptr);
49 Type::FunctionType* function_type() const { return function_type_; }
55 Type::FunctionType* function_type_;
59 Type* singleton_false_;
60 Type* singleton_true_;
61 Type* singleton_the_hole_;
62 Type* signed32ish_;
63 Type* unsigned32ish_;
64 Type* falsish_;
65 Type* truish_
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldProxyTest.java 28 Proxy proxy = new Proxy(Proxy.Type.SOCKS, address);
32 new Proxy(Proxy.Type.SOCKS, null);
42 Proxy proxy1 = new Proxy(Proxy.Type.HTTP, address1);
43 Proxy proxy2 = new Proxy(Proxy.Type.HTTP, address1);
46 new Proxy(Proxy.Type.SOCKS, address1);
47 Proxy proxy4 = new Proxy(Proxy.Type.SOCKS, address1);
54 Proxy proxy5 = new Proxy(Proxy.Type.SOCKS, address1);
55 Proxy proxy6 = new Proxy(Proxy.Type.SOCKS, address2);
61 Proxy proxy = new Proxy(Proxy.Type.HTTP, address);
62 assertEquals(Proxy.Type.HTTP, proxy.type())
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
javascripttokenizer.py 30 Type = javascripttokens.JavaScriptTokenType
95 # Match anything that is allowed in a type definition, except for tokens
261 'type',
277 Matcher(END_BLOCK_COMMENT, Type.END_DOC_COMMENT,
281 Matcher(DOC_INLINE_FLAG, Type.DOC_INLINE_FLAG),
282 Matcher(DOC_FLAG_LEX_SPACES, Type.DOC_FLAG,
286 Matcher(DOC_FLAG, Type.DOC_FLAG, JavaScriptModes.DOC_COMMENT_MODE),
289 Matcher(START_BLOCK, Type.DOC_START_BRACE),
290 Matcher(END_BLOCK, Type.DOC_END_BRACE),
293 Matcher(DOC_TYPE_BLOCK_START, Type.DOC_TYPE_START_BLOCK)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TypeTest.java 20 import android.renderscript.Type;
24 void testBuilderSizes(Type.Builder b, int min, int max) {
34 Type.Builder b = new Type.Builder(mRS, e);
79 testTypeBuilderHelper(Element.TYPE(mRS));
85 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS));
93 Type t = b.create();
102 Type t = b.setX(8).setY(1).create();
127 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 19 import com.android.dx.rop.type.Type;
20 import com.android.dx.rop.type.TypeBearer;
147 * @param ft1 {@code non-null;} a frame type
148 * @param ft2 {@code non-null;} another frame type
157 Type type1 = ft1.getType();
158 Type type2 = ft2.getType();
163 if (type1 == Type.KNOWN_NULL) {
165 * A known-null merges with any other reference type to
166 * be that reference type
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
StreamOpFlag.java 45 * <caption>Type Characteristics</caption>
112 * produce a mask containing only the valid flags for that entity type.
216 * Characteristics belong to certain types, see the Type enum. Bit masks for
249 set(Type.SPLITERATOR).set(Type.STREAM).setAndClear(Type.OP)),
270 set(Type.SPLITERATOR).set(Type.STREAM).setAndClear(Type.OP)),
283 set(Type.SPLITERATOR).set(Type.STREAM).setAndClear(Type.OP).clear(Type.TERMINAL_OP
    [all...]
  /external/clang/test/Parser/
cxx-stmt.cpp 46 struct Type { };
48 enum { Type } Kind;
52 case Type: i = 7; break; // no error.
  /external/dagger2/producers/src/main/java/dagger/producers/
Produces.java 27 * a {@link ListenableFuture}, then the parameter type of the future is bound to the value that the
28 * future provides; otherwise, the return type is bound to the returned value. The production
37 /** The type of binding into which the return type of the annotated method contributes. */
38 enum Type {
40 * The method is the only one which can produce the value for the specified type. This is the
46 * The method's resulting type forms the generic type argument of a {@code Set<T>}, and the
53 * Like {@link #SET}, except the method's return type is either {@code Set<T>} or
61 * The method's return type forms the type argument for the value of
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
TypeCapture.java 22 import java.lang.reflect.Type;
25 * Captures the actual type of {@code T}.
31 /** Returns the captured type. */
32 final Type capture() {
33 Type superclass = getClass().getGenericSuperclass();
  /external/jetty/src/java/org/eclipse/jetty/io/
BuffersFactory.java 23 public static Buffers newBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bufferSize, Buffers.Type otherType,int maxSize)

Completed in 970 milliseconds

1 2 3 45 6 7 8 91011>>