Home
last modified time | relevance | path

Searched refs:ArrayIndex (Results 1 – 19 of 19) sorted by relevance

/external/jsoncpp/chromium-overrides/include/json/
Dvalue.h137 typedef Json::ArrayIndex ArrayIndex; typedef
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,
346 bool isValidIndex( ArrayIndex index ) const;
[all …]
/external/jsoncpp/include/json/
Dvalue.h137 typedef Json::ArrayIndex ArrayIndex; typedef
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,
346 bool isValidIndex( ArrayIndex index ) const;
[all …]
Dforwards.h26 typedef unsigned int ArrayIndex; typedef
/external/jsoncpp/src/lib_json/
Djson_internalarray.inl234 ValueInternalArray::makeIterator( IteratorState &it, ArrayIndex index ) const
269 for ( ArrayIndex index = 0; index < size_; ++index, increment(itOther) )
318 ArrayIndex tempSize = size_;
335 ValueInternalArray::resize( ArrayIndex newSize )
362 ValueInternalArray::makeIndexValid( ArrayIndex index )
373 ArrayIndex nextPageIndex =
398 ValueInternalArray::resolveReference( ArrayIndex index )
406 ValueInternalArray::find( ArrayIndex index ) const
413 ValueInternalArray::ArrayIndex
426 ValueInternalArray::ArrayIndex
[all …]
Djson_value.cpp176 Value::CZString::CZString( ArrayIndex index ) in CZString()
236 ArrayIndex
971 ArrayIndex
993 return ArrayIndex( value_.map_->size() ); in size()
1049 Value::resize( ArrayIndex newSize ) in resize()
1055 ArrayIndex oldSize = size(); in resize()
1062 for ( ArrayIndex index = newSize; index < oldSize; ++index ) in resize()
1075 Value::operator[]( ArrayIndex index ) in operator []()
1099 return (*this)[ ArrayIndex(index) ]; in operator []()
1104 Value::operator[]( ArrayIndex index ) const in operator []()
[all …]
/external/jsoncpp/chromium-overrides/src/lib_json/
Djson_value.cpp180 Value::CZString::CZString( ArrayIndex index ) in CZString()
240 ArrayIndex
975 ArrayIndex
997 return ArrayIndex( value_.map_->size() ); in size()
1053 Value::resize( ArrayIndex newSize ) in resize()
1059 ArrayIndex oldSize = size(); in resize()
1066 for ( ArrayIndex index = newSize; index < oldSize; ++index ) in resize()
1079 Value::operator[]( ArrayIndex index ) in operator []()
1103 return (*this)[ ArrayIndex(index) ]; in operator []()
1108 Value::operator[]( ArrayIndex index ) const in operator []()
[all …]
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyOps.def37 TIL_OPCODE_DEF(ArrayIndex)
DThreadSafetyTIL.h1094 class ArrayIndex : public SExpr {
1098 ArrayIndex(SExpr *A, SExpr *N) : SExpr(COP_ArrayIndex), Array(A), Index(N) {} in ArrayIndex() function
1099 ArrayIndex(const ArrayIndex &E, SExpr *A, SExpr *N) in ArrayIndex() function
1116 typename C::CType compare(const ArrayIndex* E, C& Cmp) const { in compare()
DThreadSafetyTraverse.h745 void printArrayIndex(const ArrayIndex *E, StreamType &SS) { in printArrayIndex()
/external/v8/src/x87/
Dlithium-codegen-x87.h413 int st(X87Register reg) { return st2idx(ArrayIndex(reg)); } in st()
429 int ArrayIndex(X87Register reg);
Dlithium-codegen-x87.cc536 int i = ArrayIndex(reg); in Fxch()
561 int LCodeGen::X87Stack::ArrayIndex(X87Register reg) { in ArrayIndex() function in v8::internal::LCodeGen::X87Stack
581 int i = ArrayIndex(reg); in Free()
/external/jsoncpp/
DNEWS.txt93 - The type Json::ArrayIndex is used for indexes of a JSON value array. It
/external/clang/lib/CodeGen/
DCGClass.cpp455 llvm::Value *ArrayIndex = CGF.Builder.CreateLoad(ArrayIndexVar); in EmitAggMemberInitializer() local
456 Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress"); in EmitAggMemberInitializer()
457 llvm::Value *Next = llvm::ConstantInt::get(ArrayIndex->getType(), 1); in EmitAggMemberInitializer()
458 Next = CGF.Builder.CreateAdd(ArrayIndex, Next, "inc"); in EmitAggMemberInitializer()
/external/clang/include/clang/AST/
DAPValue.h63 uint64_t ArrayIndex; member
/external/clang/lib/AST/
DAPValue.cpp459 Out << '[' << Path[I].ArrayIndex << ']'; in printPretty()
DExprConstant.cpp208 Entries[MostDerivedPathLength - 1].ArrayIndex == MostDerivedArraySize) in isOnePastTheEnd()
226 Entry.ArrayIndex = 0; in addArrayUnchecked()
252 Entry.ArrayIndex = Imag; in addComplexUnchecked()
266 Entries.back().ArrayIndex += N; in adjustIndex()
267 if (Entries.back().ArrayIndex > MostDerivedArraySize) { in adjustIndex()
268 diagnosePointerArithmetic(Info, E, Entries.back().ArrayIndex); in adjustIndex()
2234 uint64_t Index = Sub.Entries[I].ArrayIndex; in findSubobject()
2269 uint64_t Index = Sub.Entries[I].ArrayIndex; in findSubobject()
2458 if (A.Entries[I].ArrayIndex != B.Entries[I].ArrayIndex) { in FindDesignatorMismatch()
/external/clang/lib/Analysis/
DThreadSafetyCommon.cpp589 return new (Arena) til::ArrayIndex(E0, E1); in translateArraySubscriptExpr()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp2367 TEST(ArraySubscriptMatchers, ArrayIndex) { in TEST() argument
/external/clang/lib/Sema/
DSemaTemplate.cpp4879 Value.getLValuePath()[0].ArrayIndex == 0 && in CheckTemplateArgument()