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

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 48 stop.Type != TokenTypes.EndOfFile)) {
73 if (((IToken)stop).Type == TokenTypes.EndOfFile) {
80 // people should subclass if they alter the tree type so this
89 public override int Type {
100 return "<missing type: " +
ParseTree.cs 76 public override int Type {
92 if (t.Type == TokenTypes.EndOfFile) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs 45 int Type
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 51 stop.Type != TokenTypes.EndOfFile ) )
82 if ( ( (IToken)stop ).Type == TokenTypes.EndOfFile )
94 // people should subclass if they alter the tree type so this
104 public override int Type
120 return "<missing type: " +
ParseTree.cs 88 public override int Type
110 if ( t.Type == TokenTypes.EndOfFile )
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
BenchmarkMethods.java 37 enum Type {
42 static Type of(Method benchmarkMethod) {
  /external/clang/include/clang/CodeGen/
SwiftCallingConv.h 19 #include "clang/AST/Type.h"
26 class Type;
49 llvm::Type *Type;
65 void addTypedData(QualType type, CharUnits begin);
69 void addTypedData(llvm::Type *type, CharUnits begin);
70 void addTypedData(llvm::Type *type, CharUnits begin, CharUnits end);
84 /// value and does not consider whether the type is address-only
    [all...]
  /external/clang/test/Parser/
cxx-stmt.cpp 46 struct Type { };
48 enum { Type } Kind;
52 case Type: i = 7; break; // no error.
ms-if-exists.c 4 struct Type {
9 __if_exists(Type) {
16 __if_not_exists(Type) {
26 __if_exists(Type) {
35 __if_exists(Type) {
43 __if_not_exists(Type) {
55 __if_exists(Type) {2, }
73 __if_not_exists(Type) { this will not compile }
81 __if_exists(Type) {
  /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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_atomic_test.cc 20 typename T::Type magic0;
22 typename T::Type magic1;
32 typedef typename T::Type Type;
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)v)
    [all...]
  /external/eigen/Eigen/src/plugins/
CommonCwiseUnaryOps.h 15 /** \internal the return type of conjugate() */
19 >::type ConjugateReturnType;
20 /** \internal the return type of real() const */
24 >::type RealReturnType;
25 /** \internal the return type of real() */
29 >::type NonConstRealReturnType;
30 /** \internal the return type of imag() const */
32 /** \internal the return type of imag() */
48 template<class NewType> struct CastXpr { typedef typename internal::cast_return_type<Derived,const CwiseUnaryOp<internal::scalar_cast_op<Scalar, NewType>, const Derived> >::type Type; };
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorForwardDeclarations.h 22 typedef T* Type;
TensorSyclConvertToDeviceExpression.h 39 typedef typename GetType<IsConst, NonOpCategory<typename ConvertToDeviceExpression<Args>::Type...> >::Type Type;
45 typedef typename GetType<IsConst, NonOpCategory<typename ConvertToDeviceExpression<Args>::Type, MakeGlobalPointer> >::Type Type;
49 /// type is TensorMap
53 typedef CVQual TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>, Options2_, MakeGlobalPointer> Type;\
61 /// type is TensorCwiseNullaryOp, TensorCwiseUnaryOp, TensorCwiseBinaryOp, TensorCwiseTernaryOp, TensorBroadcastingOp
65 typedef CVQual Category<OP, typename ConvertToDeviceExpression<subExprs>::Type... > Type;
    [all...]
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Element.java 36 enum Type {
44 Type type(); method in interface:Element
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 33 * Simple type enumeration to allow us to compare the return types of expressions easily and cast
36 public enum Type {
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) {
97 // This is a special type because we only cast from DataContext, never to it
    [all...]
  /external/libmojo/mojo/edk/embedder/
platform_handle.h 28 : type(Type::MACH), port(port) {}
35 if (type == Type::MACH || type == Type::MACH_NAME)
41 enum class Type {
52 Type type = Type::POSIX member in struct:mojo::edk::PlatformHandle
    [all...]
  /external/libmojo/mojo/edk/system/
dispatcher.h 53 enum class Type {
67 virtual Type GetType() const = 0;
230 // Deserializes a specific dispatcher type from an incoming message.
232 Type type,
251 Dispatcher::Type type) {
252 return out << static_cast<int>(type);
  /external/libxcam/xcore/
x3a_event.h 32 enum Type {
38 explicit X3aEvent (X3aEvent::Type type, uint64_t timestamp)
40 , _type (type)
48 Type get_type () const {
57 X3aEvent::Type _type;
  /external/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 25 Kind Type;
42 Item.Type = static_cast<Kind>(uint16_t(Prefix->RecordKind));
FieldListRecordBuilder.h 21 MethodInfo() : Access(), Kind(), Options(), Type(), VTableSlotOffset(-1) {}
24 TypeIndex Type, int32_t VTableSlotOffset)
25 : Access(Access), Kind(Kind), Options(Options), Type(Type),
31 TypeIndex getType() const { return Type; }
38 TypeIndex Type;
60 void writeVFPtr(const VFPtrRecord &Type);
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 24 /// The type of the macro entry.
25 uint32_t Type;
  /external/llvm/include/llvm/MC/
MCSymbolCOFF.h 18 mutable uint16_t Type;
30 : MCSymbol(SymbolKindCOFF, Name, isTemporary), Type(0) {}
33 return Type;
36 Type = Ty;
  /external/llvm/include/llvm/Target/
CostTable.h 26 MVT::SimpleValueType Type;
35 return ISD == Entry.ISD && Ty == Entry.Type; });
43 /// Type Conversion Cost Table
51 /// Find in type conversion cost table, TypeTy must be comparable to CompareTy
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIASourceFile.cpp 56 DWORD Type;
57 HRESULT Result = SourceFile->get_checksumType(&Type);
60 return static_cast<PDB_Checksum>(Type);

Completed in 858 milliseconds

1 2 3 45 6 7 8 91011>>