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

  /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/chromium_org/third_party/libjingle/source/talk/base/
json_unittest.cc 204 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
211 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
220 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
227 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
236 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
243 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
252 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
259 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
268 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
275 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++)
    [all...]
json.cc 147 for (Json::Value::ArrayIndex i = 0; i < value.size(); ++i) {
235 *out = in[static_cast<Json::Value::ArrayIndex>(n)];
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 180 Value::CZString::CZString( ArrayIndex index )
240 ArrayIndex
975 ArrayIndex
997 return ArrayIndex( value_.map_->size() );
1053 Value::resize( ArrayIndex newSize )
1059 ArrayIndex oldSize = size();
1066 for ( ArrayIndex index = newSize; index < oldSize; ++index )
1079 Value::operator[]( ArrayIndex index )
1103 return (*this)[ ArrayIndex(index) ];
1108 Value::operator[]( ArrayIndex index ) cons
    [all...]
  /external/skia/gm/
gm_expectations.cpp 167 for (Json::ArrayIndex i=0; i<allowedDigests.size(); i++) {
  /external/clang/include/clang/AST/
APValue.h 62 /// ArrayIndex - The array index of the next item in the path.
63 uint64_t ArrayIndex;
  /external/clang/lib/AST/
APValue.cpp 452 Out << '[' << Path[I].ArrayIndex << ']';
ExprConstant.cpp 207 Entries[MostDerivedPathLength - 1].ArrayIndex == MostDerivedArraySize)
225 Entry.ArrayIndex = 0;
251 Entry.ArrayIndex = Imag;
265 Entries.back().ArrayIndex += N;
266 if (Entries.back().ArrayIndex > MostDerivedArraySize) {
267 diagnosePointerArithmetic(Info, E, Entries.back().ArrayIndex);
    [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...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]

Completed in 586 milliseconds