Home
last modified time | relevance | path

Searched refs:fs_string (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/frameworks/native/libs/input/rust/
H A Ddata_store.rs158 let mut fs_string = String::new(); in read() localVariable
161 Ok(mut file) => match file.read_to_string(&mut fs_string) { in read()
166 fs_string in read()
211 fs_string: String, field
225 self.0.read().unwrap().fs_string.clone() in read()
228 fn write(&self, fs_string: String) { in write()
229 self.0.write().unwrap().fs_string = fs_string; in write()
/aosp_15_r20/external/deqp/external/openglcts/modules/gl/
H A Dgl4cTextureViewTests.cpp5381 std::string fs_string = fs_body; in initIterationSpecificProgramObject() local
5383 while ((token_location = fs_string.find(token_n_samples)) != std::string::npos) in initIterationSpecificProgramObject()
5385 fs_string.replace(token_location, strlen(token_n_samples), n_samples_sstream.str()); in initIterationSpecificProgramObject()
5388 while ((token_location = fs_string.find(token_sampler_declarations)) != std::string::npos) in initIterationSpecificProgramObject()
5390fs_string.replace(token_location, strlen(token_sampler_declarations), sampler_declarations_string); in initIterationSpecificProgramObject()
5393 while ((token_location = fs_string.find(token_sample_fetch)) != std::string::npos) in initIterationSpecificProgramObject()
5395 fs_string.replace(token_location, strlen(token_sample_fetch), sample_fetch_fs_string); in initIterationSpecificProgramObject()
5399 const char *fs_body_raw_ptr = fs_string.c_str(); in initIterationSpecificProgramObject()