/third_party/libabigail/include/ |
H A D | abg-tools-utils.h | 16 #include <string> 29 using std::string; 38 bool file_exists(const string&); 39 bool is_regular_file(const string&); 40 bool file_has_dwarf_debug_info(const string& elf_file_path, 42 bool file_has_ctf_debug_info(const string& elf_file_path, 44 bool is_dir(const string&); 45 bool dir_exists(const string&); 46 bool dir_is_empty(const string &); 47 bool decl_names_equal(const string [all...] |
H A D | abg-suppression.h | 52 suppression_base(const string& label); 54 suppression_base(const string& label, 55 const string& file_name_regex_str, 56 const string& file_name_not_regex_str); 70 const string 74 set_label(const string&); 77 set_file_name_regex_str(const string& regexp); 79 const string& 83 set_file_name_not_regex_str(const string& regexp); 85 const string [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | partialOfLargeAPIIsAbleToBeWorkedWith.js | 3 0: (x: 0) => string; 4 1: (x: 1) => string; 5 2: (x: 2) => string; 6 3: (x: 3) => string; 7 4: (x: 4) => string; 8 5: (x: 5) => string; 9 6: (x: 6) => string; 10 7: (x: 7) => string; 11 8: (x: 8) => string; 12 9: (x: 9) => string; [all...] |
H A D | renamingDestructuredPropertyInFunctionType.js | 4 type O = { a?: string; b: number; c: number; }; 6 type F2 = ({ a: string }: O) => any; // Error 7 type F3 = ({ a: string, b, c }: O) => any; // Error 8 type F4 = ({ a: string }: O) => any; // Error 9 type F5 = ({ a: string, b, c }: O) => any; // Error 10 type F6 = ({ a: string }) => typeof string; // OK 11 type F7 = ({ a: string, b: number }) => typeof number; // Error 16 type G2 = new ({ a: string }: O) => any; // Error 17 type G3 = new ({ a: string, [all...] |
H A D | inferenceOptionalProperties.js | 2 declare function test<T>(x: { [key: string]: T }): T; 4 declare let x1: { a?: string, b?: number }; 5 declare let x2: { a?: string, b?: number | undefined }; 10 var v1: Required<{ a?: string, b?: number }>; 11 var v1: { a: string, b: number }; 13 var v2: Required<{ a?: string, b?: number | undefined }>; 14 var v2: { a: string, b: number | undefined }; 16 var v3: Partial<{ a: string, b: string }>; 17 var v3: { a?: string, [all...] |
H A D | inferenceOptionalPropertiesStrict.js | 2 declare function test<T>(x: { [key: string]: T }): T; 4 declare let x1: { a?: string, b?: number }; 5 declare let x2: { a?: string, b?: number | undefined }; 10 var v1: Required<{ a?: string, b?: number }>; 11 var v1: { a: string, b: number }; 13 var v2: Required<{ a?: string, b?: number | undefined }>; 14 var v2: { a: string, b: number | undefined }; 16 var v3: Partial<{ a: string, b: string }>; 17 var v3: { a?: string, [all...] |
/drivers/hdf_core/framework/tools/hdi-gen/ast/ |
H A D | ast_array_type.h | 35 std::string ToString() const override; 39 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 41 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 43 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 45 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 46 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 48 void EmitCProxyWriteOutVar(const std::string [all...] |
H A D | ast_string_type.h | 22 std::string ToString() const override; 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 35 void EmitCProxyWriteOutVar(const std::string [all...] |
H A D | ast_fd_type.h | 22 std::string ToString() const override;
26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override;
28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override;
30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override;
32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName,
33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override;
35 void EmitCProxyReadVar(const std::string [all...] |
H A D | ast_boolean_type.h | 22 std::string ToString() const override; 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 35 void EmitCProxyReadVar(const std::string [all...] |
H A D | ast_double_type.h | 22 std::string ToString() const override; 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 35 void EmitCProxyReadVar(const std::string [all...] |
H A D | ast_byte_type.h | 22 std::string ToString() const override; 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 35 void EmitCProxyReadVar(const std::string [all...] |
H A D | ast_float_type.h | 22 std::string ToString() const override; 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 35 void EmitCProxyReadVar(const std::string [all...] |
H A D | ast_integer_type.h | 22 std::string ToString() const override; 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 35 void EmitCProxyReadVar(const std::string [all...] |
H A D | ast_long_type.h | 22 std::string ToString() const override; 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 30 std::string EmitJavaType(TypeMode mode, bool isInnerType = false) const override; 32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName, 33 const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix) const override; 35 void EmitCProxyReadVar(const std::string [all...] |
/third_party/skia/third_party/externals/spirv-tools/test/val/ |
H A D | val_capability_test.cpp | 18 #include <string> 42 // Parameter for validation test fixtures. The first std::string is a 74 std::tuple<std::string, std::pair<std::string, std::vector<std::string>>>; 76 const std::string& Capability(const CapTestParameter& p) { in Capability() 79 const std::string& Remainder(const CapTestParameter& p) { in Remainder() 82 const std::vector<std::string>& MustSucceed(const CapTestParameter& p) { in MustSucceed() 87 std::string MakeAssembly(const CapTestParameter& p) { in MakeAssembly() 89 const std::string in MakeAssembly() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/ |
H A D | val_capability_test.cpp | 18 #include <string> 42 // Parameter for validation test fixtures. The first std::string is a 74 std::tuple<std::string, std::pair<std::string, std::vector<std::string>>>; 76 const std::string& Capability(const CapTestParameter& p) { in Capability() 79 const std::string& Remainder(const CapTestParameter& p) { in Remainder() 82 const std::vector<std::string>& MustSucceed(const CapTestParameter& p) { in MustSucceed() 87 std::string MakeAssembly(const CapTestParameter& p) { in MakeAssembly() 89 const std::string in MakeAssembly() [all...] |
/third_party/spirv-tools/test/val/ |
H A D | val_capability_test.cpp | 18 #include <string> 42 // Parameter for validation test fixtures. The first std::string is a 74 std::tuple<std::string, std::pair<std::string, std::vector<std::string>>>; 76 const std::string& Capability(const CapTestParameter& p) { in Capability() 79 const std::string& Remainder(const CapTestParameter& p) { in Remainder() 82 const std::vector<std::string>& MustSucceed(const CapTestParameter& p) { in MustSucceed() 87 std::string MakeAssembly(const CapTestParameter& p) { in MakeAssembly() 89 const std::string in MakeAssembly() [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/gtest/ |
H A D | cjpeg-gtest-wrapper.cpp | 27 #include <string> 40 std::string prog_name = "cjpeg"; in TEST() 41 std::string arg1 = "-rgb"; in TEST() 42 std::string arg2 = "-dct"; in TEST() 43 std::string arg3 = "int"; in TEST() 44 std::string arg4 = "-icc"; in TEST() 45 std::string arg5 = icc_path.MaybeAsASCII(); in TEST() 46 std::string arg6 = "-outfile"; in TEST() 47 std::string arg7 = output_path.MaybeAsASCII(); in TEST() 48 std::string arg in TEST() [all...] |
H A D | djpeg-gtest-wrapper.cpp | 27 #include <string> 31 const static std::vector<std::tuple<const std::string, 32 const std::string, 33 const std::string>> SCALE_IMAGE_MD5 = { 61 ::testing::TestWithParam<std::tuple<const std::string, 62 const std::string, 63 const std::string>> {}; 72 std::string prog_name = "djpeg"; in TEST_P() 73 std::string arg1 = "-dct"; in TEST_P() 74 std::string arg in TEST_P() [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | inlined_string_field.h | 34 #include <string> 54 // InlinedStringField wraps a std::string instance and exposes an API similar to 55 // ArenaStringPtr's wrapping of a std::string* instance. As std::string is 65 explicit InlinedStringField(const std::string& default_value); 67 void AssignWithDefault(const std::string* default_value, 70 void ClearToEmpty(const std::string* default_value, 77 void ClearToEmptyNoArena(const std::string* /*default_value*/) 83 void ClearToDefault(const std::string* default_value, 87 void ClearToDefaultNoArena(const std::string* default_valu [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/third_party/perf/ |
H A D | perf_test.h | 8 #include <string> 24 // string to specify a particular graph and the |trace| to identify a trace 26 void PrintResult(const std::string &measurement, 27 const std::string &modifier, 28 const std::string &trace, 30 const std::string &units, 32 void PrintResult(const std::string &measurement, 33 const std::string &modifier, 34 const std::string &trace, 36 const std::string [all...] |
H A D | perf_test.cc | 16 std::string FormatString(const char *fmt, va_list vararg) in FormatString() 32 return std::string(buffer->data(), len); in FormatString() 35 std::string StringPrintf(const char *fmt, ...) in StringPrintf() 39 std::string result = FormatString(fmt, vararg); in StringPrintf() 44 std::string NumberToString(size_t value) in NumberToString() 49 std::string NumberToString(double value) in NumberToString() 54 std::string ResultsToString(const std::string &measurement, in ResultsToString() 55 const std::string &modifier, in ResultsToString() 56 const std::string in ResultsToString() [all...] |
/drivers/hdf_core/framework/tools/hdi-gen/codegen/ |
H A D | c_client_proxy_code_emitter.h | 23 bool ResolveDirectory(const std::string &targetDirectory) override;
51 void EmitProxyMethodBody(const AutoPtr<ASTMethod> &method, StringBuilder &sb, const std::string &prefix);
53 void EmitCreateBuf(const std::string &dataBufName,
54 const std::string &replyBufName, StringBuilder &sb, const std::string &prefix) const;
56 void EmitCheckThisPointer(StringBuilder &sb, const std::string &prefix) const;
58 void EmitWriteInterfaceToken(const std::string &dataBufName, StringBuilder &sb, const std::string &prefix) const;
61 const std::string &dataBufName, StringBuilder &sb, const std::string [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | regexp_adapter.h | 29 #include <string> 34 using std::string; 43 // Converts to a C++ string. 44 virtual string ToString() const = 0; 54 // Matches string to regular expression, returns true if expression was 56 // input_string - string to be searched. 58 // the beginning of the tested region of the string. 59 // matched_string1..6 - string extracted from the match in sequential order. 63 string* matched_string1, 64 string* matched_string [all...] |