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

1 2

  /external/jsoncpp/include/json/
forwards.h 26 typedef unsigned int ArrayIndex;
value.h 134 typedef Json::ArrayIndex ArrayIndex;
170 CZString(ArrayIndex index);
177 ArrayIndex index() const;
184 ArrayIndex index_;
292 ArrayIndex size() const;
311 void resize(ArrayIndex size);
319 Value& operator[](ArrayIndex index);
332 const Value& operator[](ArrayIndex index) const;
342 Value get(ArrayIndex index, const Value& defaultValue) const
    [all...]
  /external/webrtc/webrtc/base/
json_unittest.cc 191 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
198 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
207 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
214 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
223 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
230 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
239 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
246 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++) {
255 for (Json::Value::ArrayIndex i = 0; i < in.size(); ++i) {
262 for (Json::Value::ArrayIndex i = 0; i < in.size(); i++)
    [all...]
json.cc 132 for (Json::Value::ArrayIndex i = 0; i < value.size(); ++i) {
220 *out = in[static_cast<Json::Value::ArrayIndex>(n)];
  /external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
json-forwards.h 234 typedef unsigned int ArrayIndex;
json.h 261 typedef unsigned int ArrayIndex;
518 typedef Json::ArrayIndex ArrayIndex;
554 CZString(ArrayIndex index);
561 ArrayIndex index() const;
577 ArrayIndex index_;
698 ArrayIndex size() const;
717 void resize(ArrayIndex size);
725 Value& operator[](ArrayIndex index);
738 const Value& operator[](ArrayIndex index) const
    [all...]
  /external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
json-forwards.h 234 typedef unsigned int ArrayIndex;
json.h 261 typedef unsigned int ArrayIndex;
518 typedef Json::ArrayIndex ArrayIndex;
554 CZString(ArrayIndex index);
561 ArrayIndex index() const;
577 ArrayIndex index_;
698 ArrayIndex size() const;
717 void resize(ArrayIndex size);
725 Value& operator[](ArrayIndex index);
738 const Value& operator[](ArrayIndex index) const
    [all...]
  /external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
json-forwards.h 234 typedef unsigned int ArrayIndex;
json.h 261 typedef unsigned int ArrayIndex;
518 typedef Json::ArrayIndex ArrayIndex;
554 CZString(ArrayIndex index);
561 ArrayIndex index() const;
577 ArrayIndex index_;
698 ArrayIndex size() const;
717 void resize(ArrayIndex size);
725 Value& operator[](ArrayIndex index);
738 const Value& operator[](ArrayIndex index) const
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
json.h 289 typedef unsigned int ArrayIndex;
561 typedef Json::ArrayIndex ArrayIndex;
597 CZString(ArrayIndex index);
607 ArrayIndex index() const;
623 ArrayIndex index_;
748 ArrayIndex size() const;
767 void resize(ArrayIndex size);
775 Value& operator[](ArrayIndex index);
788 const Value& operator[](ArrayIndex index) const
    [all...]
jsoncpp.cpp     [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 167 Value::CZString::CZString(ArrayIndex index) : cstr_(0), index_(index) {}
178 ? static_cast<ArrayIndex>(other.index_ == noDuplication
209 ArrayIndex Value::CZString::index() const { return index_; }
754 ArrayIndex Value::size() const {
772 return ArrayIndex(value_.map_->size());
818 void Value::resize(ArrayIndex newSize) {
824 ArrayIndex oldSize = size();
830 for (ArrayIndex index = newSize; index < oldSize; ++index) {
840 Value& Value::operator[](ArrayIndex index) {
843 "in Json::Value::operator[](ArrayIndex): requires arrayValue")
    [all...]
  /frameworks/base/cmds/bootanimation/iot/
BootParameters.cpp 31 using Json::ArrayIndex;
173 for (ArrayIndex i = 0; i < keys.size(); ++i) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
VfrCompile.g     [all...]
  /external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp     [all...]
  /external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp     [all...]
  /external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp     [all...]
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 147 for (Json::ArrayIndex i = 0; i < json_values.size(); ++i) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsBoot.c 295 UINTN ArrayIndex;
302 for (ArrayIndex = 0; ArrayIndex < (UINTN) (*BootOrderListSize / sizeof (UINT16)); ArrayIndex++) {
305 if ((*BootOrderList)[BootOrderIndex] == ArrayIndex) {
318 CurrentBootOptionNo = (UINT16) ArrayIndex;
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsBoot.c 297 UINTN ArrayIndex;
304 for (ArrayIndex = 0; ArrayIndex < (UINTN) (*BootOrderListSize / sizeof (UINT16)); ArrayIndex++) {
307 if ((*BootOrderList)[BootOrderIndex] == ArrayIndex) {
320 CurrentBootOptionNo = (UINT16) ArrayIndex;
    [all...]
  /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/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 1094 class ArrayIndex : public SExpr {
1098 ArrayIndex(SExpr *A, SExpr *N) : SExpr(COP_ArrayIndex), Array(A), Index(N) {}
1099 ArrayIndex(const ArrayIndex &E, SExpr *A, SExpr *N)
1116 typename C::CType compare(const ArrayIndex* E, C& Cmp) const {
    [all...]
  /external/clang/lib/AST/
APValue.cpp 459 Out << '[' << Path[I].ArrayIndex << ']';
ExprConstant.cpp 224 Entries[MostDerivedPathLength - 1].ArrayIndex == MostDerivedArraySize)
242 Entry.ArrayIndex = 0;
270 Entry.ArrayIndex = Imag;
286 Entries.back().ArrayIndex += N;
287 if (Entries.back().ArrayIndex > MostDerivedArraySize) {
288 diagnosePointerArithmetic(Info, E, Entries.back().ArrayIndex);
    [all...]

Completed in 977 milliseconds

1 2