/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | shortnumberinfo.h | 33 using std::list; 34 using std::map; 35 using std::set; 36 using std::string; 187 scoped_ptr<std::map<string, PhoneMetadata> > 192 scoped_ptr<std::set<string> >
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-coverage.h | 42 std::vector<CoverageBlock> blocks; 51 std::vector<CoverageFunction> functions; 54 class Coverage : public std::vector<CoverageScript> { 61 static std::unique_ptr<Coverage> CollectPrecise(Isolate* isolate); 64 static std::unique_ptr<Coverage> CollectBestEffort(Isolate* isolate); 70 static std::unique_ptr<Coverage> Collect(
|
/third_party/node/deps/v8/src/codegen/ |
H A D | machine-type.cc | 24 std::ostream& operator<<(std::ostream& os, MachineRepresentation rep) { in operator <<() 66 std::ostream& operator<<(std::ostream& os, MachineSemantic type) { in operator <<() 88 std::ostream& operator<<(std::ostream& os, MachineType type) { in operator <<()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | remote-object-id.cc | 50 std::unique_ptr<RemoteObjectId>* result) { in parse() 51 std::unique_ptr<RemoteObjectId> remoteObjectId(new RemoteObjectId()); in parse() 54 *result = std::move(remoteObjectId); in parse() 64 std::unique_ptr<RemoteCallFrameId>* result) { in parse() 65 std::unique_ptr<RemoteCallFrameId> remoteCallFrameId(new RemoteCallFrameId()); in parse() 68 *result = std::move(remoteCallFrameId); in parse()
|
/third_party/node/deps/v8/src/objects/ |
H A D | managed.h | 41 // {Managed<T>} is essentially a {std::shared_ptr<T>} allocated on the heap 46 // {std::shared_ptr<T>}, thereby decrementing its internal reference count, 58 V8_INLINE const std::shared_ptr<CppType>& get() { return *GetSharedPtrPtr(); } in get() 75 // Create a {Managed<CppType>} from an existing {std::unique_ptr<CppType>}. 80 std::unique_ptr<CppType> unique_ptr); 82 // Create a {Managed<CppType>} from an existing {std::shared_ptr<CppType>}. 85 std::shared_ptr<CppType> shared_ptr); 89 // std::shared_ptr<CppType>. 90 std::shared_ptr<CppType>* GetSharedPtrPtr() { in GetSharedPtrPtr() 93 return reinterpret_cast<std in GetSharedPtrPtr() [all...] |
/third_party/libabigail/src/ |
H A D | abg-viz-svg.cc | 26 std::string filename(_M_title + ".svg"); in write() 27 std::ofstream f(filename); in write() 29 throw std::runtime_error("abigail::svg::write fail"); in write() 31 f << _M_sstream.str() << std::endl; in write() 33 catch(std::exception& e) in write() 44 const std::string start = R"_delimiter_(<?xml version="1.0" encoding="utf-8"?> 55 const std::string units("__units"); 56 const std::string width("__width"); 57 const std::string height("__height"); 59 std [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiFormatPropertiesExtendedKHRtests.cpp | 53 std::ostringstream msg; in checkFlags() 54 msg << setName << ": missing flags 0x" << std::hex << std::setw(16) << std::setfill('0') << missingBits; in checkFlags() 75 std::string testName = de::toLower(std::string(getFormatName(format)).substr(10)); in createTestCases()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktShaderExecutor.hpp | 43 std::string name; //!< Symbol name. 47 Symbol (const std::string& name_, const glu::VarType& varType_) : name(name_), varType(varType_) {} in Symbol() 64 std::vector<Symbol> inputs; 65 std::vector<Symbol> outputs; 66 std::string globalDeclarations; //!< These are placed into global scope. Can contain uniform declarations for example. 67 std::string source; //!< Source snippet to be executed.
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ShaderStorageBlockOutputHLSL.h | 32 using ReferencedInterfaceBlocks = std::map<int, const TReferencedBlock *>; 35 using BlockMemberInfoMap = std::map<const TField *, BlockMemberInfo>; 37 using ShaderVarToFieldMap = std::map<std::string, const TField *>; 44 const std::vector<InterfaceBlock> &shaderStorageBlocks); 82 const std::vector<InterfaceBlock> &mShaderStorageBlocks;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | CriticalAntiDepBreaker.h | 53 std::vector<const TargetRegisterClass *> Classes; 56 std::multimap<unsigned, MachineOperand *> RegRefs; 59 std::multimap<unsigned, MachineOperand *>::const_iterator; 63 std::vector<unsigned> KillIndices; 67 std::vector<unsigned> DefIndices; 82 unsigned BreakAntiDependencies(const std::vector<SUnit> &SUnits,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | CompileUtils.cpp | 40 return std::move(CachedObject); in operator ()() 55 auto ObjBuffer = std::make_unique<SmallVectorMemoryBuffer>( in operator ()() 56 std::move(ObjBufferSV), M.getModuleIdentifier() + "-jitted-objectbuffer"); in operator ()() 64 return std::move(ObjBuffer); in operator ()() 84 JTMB(std::move(JTMB)), ObjCache(ObjCache) {} in ConcurrentIRCompiler() 86 Expected<std::unique_ptr<MemoryBuffer>>
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
H A D | Pipeline.cpp | 32 return any_of(Stages, [](const std::unique_ptr<Stage> &S) { in hasWorkToProcess() 43 return std::move(Err); in run() 55 const std::unique_ptr<Stage> &S = *I; in runCycle() 66 for (const std::unique_ptr<Stage> &S : Stages) { in runCycle() 75 void Pipeline::appendStage(std::unique_ptr<Stage> S) { in appendStage() 82 Stages.push_back(std::move(S)); in appendStage()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/ |
H A D | esextcTessellationShaderQuads.hpp | 92 std::vector<char> data; 105 typedef std::vector<_run> _runs; 173 std::vector<char> set1_data; 174 std::vector<char> set2_data; 189 typedef std::vector<_run> _runs; 193 std::vector<_vec2> getUniqueTessCoordinatesFromVertexDataSet(const float* raw_data,
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkDebugReportUtil.hpp | 44 std::string layerPrefix; 45 std::string message; 60 const std::string& layerPrefix_, in DebugReportMessage() 61 const std::string& message_) in DebugReportMessage() 86 std::ostream& operator<< (std::ostream& str, const DebugReportMessage& message);
|
/third_party/vk-gl-cts/external/amber/src/samples/ |
H A D | png.cc | 51 const std::vector<amber::Value>& values, in ConvertToPNG() 52 std::vector<uint8_t>* buffer) { in ConvertToPNG() 57 std::vector<uint8_t> data; in ConvertToPNG() 84 amber::Result LoadPNG(const std::string file_name, in LoadPNG() 87 std::vector<amber::Value>* values) { in LoadPNG() 88 std::vector<uint8_t> decoded_buffer; in LoadPNG()
|
/third_party/vk-gl-cts/external/amber/src/src/vulkan/ |
H A D | device.h | 49 const std::vector<std::string>& required_features, 50 const std::vector<std::string>& required_device_extensions, 53 const std::vector<std::string>& available_extensions);
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | ErrorMessages.cpp | 23 std::string message; 47 Message m{source, type, id, severity, std::string(message, length), userParam}; in Callback() 48 std::vector<Message> *messages = in Callback() 49 static_cast<std::vector<Message> *>(const_cast<void *>(userParam)); in Callback() 80 std::vector<Message> messages; in TEST_P() 88 const std::string message1 = gl::err::kWebglBindAttribLocationReservedPrefix; in TEST_P()
|
/third_party/skia/src/gpu/d3d/ |
H A D | GrD3DCpuDescriptorManager.h | 51 static std::unique_ptr<Heap> Make(GrD3DGpu* gpu, D3D12_DESCRIPTOR_HEAP_TYPE type, 63 Heap(std::unique_ptr<GrD3DDescriptorHeap>& heap, unsigned int numDescriptors) in Heap() 64 : fHeap(std::move(heap)) in Heap() 72 std::unique_ptr<GrD3DDescriptorHeap> fHeap; 85 std::vector<std::unique_ptr<Heap>> fDescriptorHeaps;
|
/third_party/skia/src/gpu/ |
H A D | GrPaint.h | 65 void setColorFragmentProcessor(std::unique_ptr<GrFragmentProcessor> fp) { in setColorFragmentProcessor() 68 fColorFragmentProcessor = std::move(fp); in setColorFragmentProcessor() 75 void setCoverageFragmentProcessor(std::unique_ptr<GrFragmentProcessor> fp) { in setCoverageFragmentProcessor() 78 fCoverageFragmentProcessor = std::move(fp); in setCoverageFragmentProcessor() 130 std::unique_ptr<GrFragmentProcessor> fColorFragmentProcessor; 131 std::unique_ptr<GrFragmentProcessor> fCoverageFragmentProcessor;
|
/third_party/skia/third_party/externals/swiftshader/tests/SystemUnitTests/ |
H A D | SynchronizationTests.cpp | 62 auto t = std::thread([=, &b] { in TEST() 78 auto t = std::thread([=, &b] { in TEST() 83 ASSERT_TRUE(ev.wait(std::chrono::system_clock::now() + std::chrono::seconds(10))); in TEST() 92 ASSERT_FALSE(ev.wait(std::chrono::system_clock::now() + std::chrono::milliseconds(1))); in TEST()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_dead_breaks.cpp | 34 std::vector<TransformationAddDeadBreak> candidate_transformations; in Apply() 38 std::vector<opt::BasicBlock*> merge_blocks; in Apply() 59 std::vector<uint32_t> phi_ids; in Apply() 87 block.id(), merge_block->id(), break_condition, std::move(phi_ids)); in Apply() 92 std::move(candidate_transformation)); in Apply() 114 auto transformation = std::move(candidate_transformations[index]); in Apply()
|
H A D | fuzzer_pass_obfuscate_constants.h | 88 const std::vector<SpvOp>& greater_than_opcodes, 89 const std::vector<SpvOp>& less_than_opcodes, uint32_t constant_id_1, 99 const std::map<SpvOp, uint32_t>& skipped_opcode_count, 100 std::vector<protobufs::IdUseDescriptor>* constant_uses); 104 std::vector<std::vector<uint32_t>> GetConstantWordsFromUniformsForType(
|
H A D | transformation_flatten_conditional_branch.h | 33 const std::vector<protobufs::SideEffectWrapperInfo>& 63 std::unordered_set<uint32_t> GetFreshIds() const override; 78 std::set<opt::Instruction*>* instructions_that_need_ids); 109 std::unordered_map<opt::Instruction*, protobufs::SideEffectWrapperInfo> 129 std::vector<uint32_t>* dead_blocks, 130 std::vector<uint32_t>* irrelevant_ids);
|
/third_party/skia/third_party/externals/spirv-tools/source/lint/ |
H A D | divergence_analysis.h | 145 std::unordered_map<uint32_t, DivergenceLevel> divergence_; 146 std::unordered_map<uint32_t, uint32_t> divergence_source_; 147 std::unordered_map<uint32_t, uint32_t> divergence_dependence_source_; 152 std::unordered_map<uint32_t, uint32_t> follow_unconditional_branches_; 157 std::ostream& operator<<(std::ostream& os,
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | build_module.cpp | 49 std::unique_ptr<opt::IRContext> BuildModule(spv_target_env env, in BuildModule() 56 std::unique_ptr<opt::IRContext> BuildModule(spv_target_env env, in BuildModule() 74 return status == SPV_SUCCESS ? std::move(irContext) : nullptr; in BuildModule() 77 std::unique_ptr<opt::IRContext> BuildModule(spv_target_env env, in BuildModule() 79 const std::string& text, in BuildModule() 83 std::vector<uint32_t> binary; in BuildModule()
|