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

<<11121314151617181920>>

  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapEventReport.java 41 public enum Type {
50 private Type(String specName) {
60 private final Type mType;
68 private final BluetoothMapBmessage.Type mMsgType;
71 mType = parseType(attrs.get("type"));
73 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
91 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
107 private Type parseType(String type) throws IllegalArgumentException
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyabc.i 1 %define %pythonabc(Type, Abc)
2 %feature("python:abc", #Abc) Type;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
ifunc-5b.d 7 [ ]+Offset[ ]+Info[ ]+Type[ ]+.*
11 [ ]+Offset[ ]+Info[ ]+Type[ ]+.*
ifunc-6b.d 7 [ ]+Offset[ ]+Info[ ]+Type[ ]+.*
11 [ ]+Offset[ ]+Info[ ]+Type[ ]+.*
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 24 #include "llvm/IR/Type.h"
47 unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) {
57 assert(OpTy && "Cast instructions must provide the operand type");
74 // An inttoptr cast is free so long as the input is a legal integer type
86 // the pointer, and a legal integer type.
96 // trunc to a native type is free (assuming the target has compare and
105 unsigned getGEPCost(Type *PointeeType, const Value *Ptr,
131 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
132 ArrayRef<Type *> ParamTys)
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 50 unsigned Type) const override;
67 // Determine the type of the relocation.
115 unsigned Type = (unsigned)ELF::R_MIPS_NONE;
116 Type = setRType((unsigned)ELF::R_MIPS_GPREL32, Type);
117 Type = setRType2((unsigned)ELF::R_MIPS_64, Type);
118 Type = setRType3((unsigned)ELF::R_MIPS_NONE, Type);
119 return Type;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstEnumRef.java 19 import com.android.dexgen.rop.type.Type;
22 * Constant type to represent a reference to a particular constant
23 * value of an enumerated type.
32 * @param nat {@code non-null;} the name-and-type; the defining class is derived
50 * <b>Note:</b> This returns the enumerated type.
52 public Type getType() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstEnumRef.java 19 import com.android.dx.rop.type.Type;
22 * Constant type to represent a reference to a particular constant
23 * value of an enumerated type.
32 * @param nat {@code non-null;} the name-and-type; the defining class is derived
50 * <b>Note:</b> This returns the enumerated type.
52 public Type getType() {
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
javascriptstatetracker.py 25 Type = javascripttokens.JavaScriptTokenType
32 flag_type: param, return, define, type, etc.
34 type_start_token: The first token specifying the flag JS type,
36 type_end_token: The last token specifying the flag JS type,
38 type: The type spec string.
39 jstype: The type spec, a TypeAnnotation instance.
107 """Determine the block type given a START_BLOCK token.
112 token: The current token. Can be assumed to be type START_BLOCK
114 Code block type for current token
    [all...]
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/staticprovides/
AllStaticModule.java 18 import static dagger.Provides.Type.SET;
19 import static dagger.Provides.Type.SET_VALUES;
28 @Provides(type = SET) static String contributeString() {
32 @Provides(type = SET_VALUES) static Set<Integer> contibuteEmptyIntegerSet() {
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstEnumRef.java 19 import com.android.dx.rop.type.Type;
22 * Constant type to represent a reference to a particular constant
23 * value of an enumerated type.
32 * @param nat {@code non-null;} the name-and-type; the defining class is derived
50 * <b>Note:</b> This returns the enumerated type.
52 public Type getType() {
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
ProvidesIntoOptional.java 30 * The method's return type and binding annotation determines what Optional this will
56 enum Type {
65 Type value();
  /external/llvm/include/llvm/Support/
Debug.h 41 /// isCurrentDebugType - Return true if the specified string is the debug type
45 bool isCurrentDebugType(const char *Type);
47 /// setCurrentDebugType - Set the current debug type, as if the -debug-only=X
51 void setCurrentDebugType(const char *Type);
62 #define DEBUG_WITH_TYPE(TYPE, X) \
63 do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType(TYPE)) { X; } \
69 #define DEBUG_WITH_TYPE(TYPE, X) do { } while (0)
  /external/llvm/lib/DebugInfo/PDB/
PDB.cpp 23 PDB_ErrorCode llvm::loadDataForPDB(PDB_ReaderType Type, StringRef Path,
25 // Create the correct concrete instance type based on the value of Type.
32 PDB_ErrorCode llvm::loadDataForEXE(PDB_ReaderType Type, StringRef Path,
34 // Create the correct concrete instance type based on the value of Type.
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 36 std::string getName(unsigned int IntrId, Type **Tys = 0,
41 Type **Tys = 0,
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
MethodInfo.java 19 import org.mockito.asm.Type;
29 abstract public Type[] getExceptionTypes();
  /external/skia/src/gpu/vk/
GrVkImageView.h 19 enum Type {
24 static const GrVkImageView* Create(GrVkGpu* gpu, VkImage image, VkFormat format, Type viewType);
  /libcore/ojluni/src/main/java/sun/net/www/protocol/http/
AuthCacheValue.java 40 public enum Type {
61 abstract Type getAuthType ();
  /prebuilts/misc/common/swig/include/2.0.11/php/
factory.i 34 Geometry *Geometry::create(GeomType type) {
35 switch (type) {
51 instead of the plain 'Geometry' type. For example, in python:
58 NOTES: remember to fully qualify all the type names and don't
93 %define %_factory_dispatch(Type)
95 Type *dobj = dynamic_cast<Type *>($1);
98 SWIG_SetPointerZval(return_value, SWIG_as_voidptr(dobj),$descriptor(Type *), $owner);
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
std_vectora.i 28 #define %swig_vector_methods(Type...) %swig_sequence_methods(Type)
29 #define %swig_vector_methods_val(Type...) %swig_sequence_methods_val(Type);
  /system/update_engine/common/
mock_action.h 40 ON_CALL(*this, Type()).WillByDefault(testing::Return("MockAction"));
47 MOCK_CONST_METHOD0(Type, std::string());
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pie/
vaddr-0.d 8 Type: DYN \(Shared object file\)
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 1 //===--- CodeGenTypes.cpp - Type translation for LLVM CodeGen -------------===//
10 // This is the code that handles AST -> LLVM type lowering.
54 // Name the codegen type after the typedef name
55 // if there is no tag type name available
79 /// ConvertTypeForMem - Convert type T into a llvm::Type. This differs from
81 /// a type. For example, the scalar representation for _Bool is i1, but the
83 llvm::Type *CodeGenTypes::ConvertTypeForMem(QualType T) {
84 llvm::Type *R = ConvertType(T);
86 // If this is a non-bool type, don't map it
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
GsonModule.java 26 import dagger.Provides.Type;
37 @Provides(type = Type.SET)
42 @Provides(type = Type.SET)
47 @Provides(type = Type.SET)
52 @Provides(type = Type.SET)
62 @Provides(type = Type.SET
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/
Platform.java 34 private final Platform.Type platformType;
36 public Platform(Type platformType) {
54 * The name of the platform type.
73 * <p>This checks to see whether {@link SupportedPlatform} specifies a {@link Type} that
86 Platform.Type[] types = annotation.value();
87 for (Type type : types) {
88 if (type.equals(platformType)) {
135 * The type of platforms supported.
137 public enum Type {
    [all...]

Completed in 488 milliseconds

<<11121314151617181920>>