Home
last modified time | relevance | path

Searched refs:strings_ (Results 1 – 10 of 10) sorted by relevance

/external/google-breakpad/src/common/linux/
Dsynth_elf.h76 if (strings_.find(s) != strings_.end()) in Add()
77 return strings_[s]; in Add()
81 strings_[s] = string_label; in Add()
90 map<string,Label> strings_; variable
/external/google-breakpad/src/common/
Dstabs_reader.cc73 strings_(stabstr, stabstr_size), in StabsReader()
83 if (offset < 0 || (size_t) offset >= strings_.Size()) { in SymbolString()
90 return reinterpret_cast<const char *>(strings_.start + offset); in SymbolString()
Dstabs_reader.h205 ByteBuffer strings_; variable
/external/v8/src/ast/
Dast-value-factory.cc250 strings_.Add(new_string); in NewConsString()
265 for (int i = 0; i < strings_.length(); ++i) { in Internalize()
266 strings_[i]->Internalize(isolate); in Internalize()
370 strings_.Add(new_string); in GetString()
Dast-value-factory.h232 ZoneList<const AstRawString*>* strings_; member
355 List<AstString*> strings_; variable
/external/v8/src/profiler/
Dheap-snapshot-generator.h574 strings_(StringsMatch), in HeapSnapshotJSONSerializer()
613 HashMap strings_; variable
Dheap-snapshot-generator.cc2770 strings_.LookupOrInsert(const_cast<char*>(s), StringHash(s)); in GetStringId()
3153 strings_.occupancy() + 1); in SerializeStrings()
3154 for (HashMap::Entry* entry = strings_.Start(); in SerializeStrings()
3156 entry = strings_.Next(entry)) { in SerializeStrings()
/external/opencv3/modules/features2d/src/
Dbrisk.cpp66 return strings_; in descriptorSize()
132 int strings_; // number of uchars the descriptor consists of member in cv::BRISK_Impl
445 strings_ = (int) ceil((float(noShortPairs_)) / 128.0) * 4 * 4; in generateKernel()
689 _descriptors.create((int)ksize, strings_, CV_8U); in computeDescriptorsAndOrOrientation()
796 ptr += strings_; in computeDescriptorsAndOrOrientation()
/external/protobuf/src/google/protobuf/
Ddescriptor.cc458 vector<string*> strings_; // All strings in the pool. member in google::protobuf::DescriptorPool::Tables
469 : strings_before_checkpoint(tables->strings_.size()), in CheckPoint()
593 STLDeleteElements(&strings_); in ~Tables()
653 strings_.begin() + checkpoint.strings_before_checkpoint, strings_.end()); in RollbackToLastCheckpoint()
666 strings_.resize(checkpoint.strings_before_checkpoint); in RollbackToLastCheckpoint()
848 strings_.push_back(result); in AllocateString()
/external/v8/src/
Dobjects.cc18062 explicit StringsKey(Handle<FixedArray> strings) : strings_(strings) { } in StringsKey()
18066 int len = strings_->length(); in IsMatch()
18069 if (o->get(i) != strings_->get(i)) return false; in IsMatch()
18074 uint32_t Hash() override { return HashForObject(*strings_); } in Hash()
18086 Handle<Object> AsHandle(Isolate* isolate) override { return strings_; } in AsHandle()
18089 Handle<FixedArray> strings_; member in v8::internal::StringsKey