HomeSort by relevance Sort by last modified time
    Searched defs:ArrayIndex (Results 1 - 3 of 3) sorted by null

  /external/clang/include/clang/AST/
APValue.h 62 /// ArrayIndex - The array index of the next item in the path.
63 uint64_t ArrayIndex;
  /external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h 137 typedef Json::ArrayIndex ArrayIndex;
175 CZString( ArrayIndex index );
182 ArrayIndex index() const;
188 ArrayIndex index_;
296 ArrayIndex size() const;
315 void resize( ArrayIndex size );
322 Value &operator[]( ArrayIndex index );
334 const Value &operator[]( ArrayIndex index ) const;
343 Value get( ArrayIndex index,
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 441 llvm::Value *ArrayIndex = CGF.Builder.CreateLoad(ArrayIndexVar);
442 Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress");
443 llvm::Value *Next = llvm::ConstantInt::get(ArrayIndex->getType(), 1);
444 Next = CGF.Builder.CreateAdd(ArrayIndex, Next, "inc");
    [all...]

Completed in 151 milliseconds