HomeSort by relevance Sort by last modified time
    Searched full:inttype (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
Lang.tokens 6 INTTYPE=8
LangDumpDecl.tokens 6 INTTYPE=8
Lang.g 14 type : INTTYPE // automatic tree construction builds a node for this rule
18 INTTYPE : 'int' ;
LangDumpDecl.g 13 type : INTTYPE ;
LangDumpDecl.m 93 @"DECL", @"FLOATTYPE", @"ID", @"INT", @"INTTYPE", @"WS", @"';'", nil] retain]];
189 * LangDumpDecl.g:13:1: type : INTTYPE ;
197 // LangDumpDecl.g:13:6: ( INTTYPE ) // ruleBlockSingleAlt
198 // LangDumpDecl.g:13:8: INTTYPE // alt
200 [self match:input TokenType:INTTYPE Follow:FOLLOW_INTTYPE_in_type81];
LangLexer.h 26 #define INTTYPE 8
LangLexer.m 98 // $ANTLR start "INTTYPE"
106 NSInteger _type = INTTYPE;
129 /* $ANTLR end "INTTYPE" */
341 // Lang.g:1:8: ( T__10 | INTTYPE | FLOATTYPE | ID | INT | WS ) //ruleblock
483 // Lang.g:1:16: INTTYPE // alt
LangDumpDecl.h 35 #define INTTYPE 8
LangParser.m 195 @"DECL", @"FLOATTYPE", @"ID", @"INT", @"INTTYPE", @"WS", @"';'", nil] retain]];
443 * Lang.g:14:1: type : ( INTTYPE | FLOATTYPE );
463 // Lang.g:14:6: ( INTTYPE | FLOATTYPE ) // ruleBlockSingleAlt
473 if ([input LA:1] == FLOATTYPE||[input LA:1] == INTTYPE) {
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 26 template<typename IntType>
27 size_t encode(ByteType *&pBuf, IntType pValue);
29 template<typename IntType>
30 IntType decode(const ByteType *pBuf, size_t &pSize);
32 template<typename IntType>
33 IntType decode(const ByteType *&pBuf);
39 template<typename IntType>
40 size_t size(IntType pValue) {
99 template<typename IntType>
100 size_t encode(char *&pBuf, IntType pValue)
    [all...]
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 39 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned,
60 PointerIntPair(PointerTy Ptr, IntType Int) : Value(0) {
72 IntType getInt() const {
73 return (IntType)((Value >> IntShift) & IntMask);
85 void setInt(IntType Int) {
121 template<typename PointerTy, unsigned IntBits, typename IntType>
122 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > {
127 template<typename PointerTy, unsigned IntBits, typename IntType>
128 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType> > {
129 typedef PointerIntPair<PointerTy, IntBits, IntType> Ty
    [all...]
  /packages/inputmethods/LatinIME/java/res/anim/
alt_code_key_while_typing_fadein.xml 24 android:valueType="intType"
alt_code_key_while_typing_fadeout.xml 24 android:valueType="intType"
language_on_spacebar_fadeout.xml 24 android:valueType="intType"
  /external/llvm/utils/
llvm.grm 45 INTTYPE ::= "i" ^ EUINT64VAL ;
69 IntType ::= INTTYPE;
194 PrimType ::= INTTYPE | float | double | "ppc_fp128" | fp128 | "x86_fp80"
359 | br INTTYPE ValueRef ^ "," label ValueRef ^ "," label ValueRef
360 | switch IntType ValueRef ^ "," label ValueRef "[" JumpTable "]"
361 | switch IntType ValueRef ^ "," label ValueRef "[" ^ "]"
368 JumpTable ::= JumpTable IntType ConstValueRef ^ "," label ValueRef
369 | IntType ConstValueRef ^ "," label ValueRef ;
412 | malloc Types ^ "," INTTYPE ValueRef OptCAlig
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
testing.h 156 // This function returns a pseudo-random value of type IntType between 0 and
162 template<typename IntType>
163 inline IntType PortableRandomInRange(IntType limit) {
175 return static_cast<IntType>(limit * scaled_value);
  /external/clang/include/clang/Basic/
TargetInfo.h 113 enum IntType {
132 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType,
158 IntType getSizeType() const { return SizeType; }
159 IntType getIntMaxType() const { return IntMaxType; }
160 IntType getUIntMaxType() const { return UIntMaxType; }
161 IntType getPtrDiffType(unsigned AddrSpace) const {
164 IntType getIntPtrType() const { return IntPtrType; }
165 IntType getWCharType() const { return WCharType; }
166 IntType getWIntType() const { return WIntType; }
167 IntType getChar16Type() const { return Char16Type;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_string.c 755 } inttype = DO_INT; local
802 if ( inttype > DO_SHORT ) {
803 ++inttype;
807 if ( inttype < DO_LONGLONG ) {
808 ++inttype;
814 inttype = DO_LONGLONG;
834 if ( inttype == DO_LONGLONG ) {
849 switch (inttype) {
887 if ( inttype == DO_LONGLONG ) {
902 switch (inttype) {
1132 } inttype = DO_INT; local
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_texture.cpp 224 Type * intType = Type::getInt32Ty(builder.getContext());
232 tc = builder.CreateFPToSI(tc, intType);
255 Value * tcPtr = builder.CreateAlloca(intType);
278 Type * intType = builder.getInt32Ty();
279 PointerType * intPointerType = PointerType::get(intType, 0);
286 textureDimensions = new GlobalVariable(*module, intType, true,
340 Type * const intType = Type::getInt32Ty(builder.getContext());
341 lhs = builder.CreateBitCast(lhs, intType);
342 rhs = builder.CreateBitCast(rhs, intType);
371 Type * const intType = builder.getInt32Ty()
    [all...]
llvm_scanline.cpp 264 Type * const intType = builder.getInt32Ty();
272 // src = builder.CreateBitCast(src, intType); // it's already RGBA int32
302 // src = builder.CreateBitCast(src, intType); // it's already RGBA int32
425 Type * intType = builder.getInt32Ty();
426 PointerType * intPointerType = PointerType::get(intType, 0);
436 funcArgs.push_back(intType); // count
454 Type * intType = builder.getInt32Ty();
455 PointerType * intPointerType = PointerType::get(intType, 0);
487 Value * countPtr = builder.CreateAlloca(intType);
572 zPtr = builder.CreateAlloca(intType); // temp store for modifying incoming
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestInterpretedLexing.java 109 final int INTtype = g.getTokenType("INT");
112 assertEquals(result.getType(), INTtype);
115 assertEquals(result.getType(), INTtype);
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 207 /* 6 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
224 /* 1 */ code.addInvokestatic(intClass, "valueOf", intClass, new CtClass[]{CtClass.intType});
241 /* 1 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
262 /* 9 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
284 /* 7 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
  /external/clang/lib/Basic/
TargetInfo.cpp 99 const char *TargetInfo::getTypeName(IntType T) {
115 const char *TargetInfo::getTypeConstantSuffix(IntType T) {
131 unsigned TargetInfo::getTypeWidth(IntType T) const {
147 unsigned TargetInfo::getTypeAlign(IntType T) const {
163 bool TargetInfo::isTypeSigned(IntType T) {
  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 327 const clang::QualType &IntType = FD->getASTContext().IntTy;
328 if (FD->getResultType().getCanonicalType() == IntType) {
373 const clang::QualType &IntType = FD->getASTContext().IntTy;
380 if (QT != IntType) {
393 if (FD->getResultType().getCanonicalType() != IntType) {
  /external/webkit/Source/JavaScriptCore/wtf/
TCPackedCache.h 125 #define N_ONES_(IntType, N) \
126 ( (N) == 0 ? 0 : ((static_cast<IntType>(1) << ((N)-1))-1 + \
127 (static_cast<IntType>(1) << ((N)-1))) )

Completed in 498 milliseconds

1 2 3