/aosp_15_r20/external/libcups/packaging/ |
H A D | cups.list.in | 30 %replaces lpd 31 %replaces lpr 32 %replaces LPRng 36 %replaces cups-da 37 %replaces cups-de 38 %replaces cups-es 39 %replaces cups-et 40 %replaces cups-fi 41 %replaces cups-fr 42 %replaces cups-he [all …]
|
/aosp_15_r20/external/clang/unittests/Tooling/ |
H A D | RefactoringTest.cpp | 115 Replacements Replaces; in TEST_F() local 116 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1), in TEST_F() 118 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 3, 1), in TEST_F() 120 EXPECT_TRUE(applyAllReplacements(Replaces, Context.Rewrite)); in TEST_F() 130 std::vector<Replacement> Replaces; in TEST_F() local 131 Replaces.push_back(Replacement(Context.Sources, Context.getLocation(ID, 2, 1), in TEST_F() 133 Replaces.push_back( in TEST_F() 135 EXPECT_TRUE(applyAllReplacements(Replaces, Context.Rewrite)); in TEST_F() 142 Replacements Replaces; in TEST_F() local 143 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1), in TEST_F() [all …]
|
/aosp_15_r20/external/clang/unittests/Format/ |
H A D | CleanupTest.cpp | 26 tooling::Replacements Replaces = format::cleanup(Style, Code, Ranges); in cleanup() local 28 auto Result = applyAllReplacements(Code, Replaces); in cleanup() 256 const tooling::Replacements Replaces) { in apply() argument 257 auto CleanReplaces = cleanupAroundReplacements(Code, Replaces, Style); in apply() 266 const tooling::Replacements Replaces) { in formatAndApply() argument 268 auto CleanReplaces = cleanupAroundReplacements(Code, Replaces, Style); in formatAndApply() 307 tooling::Replacements Replaces = { in TEST_F() local 311 EXPECT_EQ(Expected, formatAndApply(Code, Replaces)); in TEST_F() 318 tooling::Replacements Replaces = {createInsertion("#include \"a.h\"")}; in TEST_F() local 319 EXPECT_EQ(Expected, apply(Code, Replaces)); in TEST_F() [all …]
|
/aosp_15_r20/external/clang/lib/Tooling/Core/ |
H A D | Replacement.cpp | 142 unsigned shiftedCodePositionInternal(const T &Replaces, unsigned Position) { in shiftedCodePositionInternal() argument 144 for (const auto& R : Replaces) { in shiftedCodePositionInternal() 158 unsigned shiftedCodePosition(const Replacements &Replaces, unsigned Position) { in shiftedCodePosition() argument 159 return shiftedCodePositionInternal(Replaces, Position); in shiftedCodePosition() 164 unsigned shiftedCodePosition(const std::vector<Replacement> &Replaces, in shiftedCodePosition() argument 166 return shiftedCodePositionInternal(Replaces, Position); in shiftedCodePosition() 169 void deduplicate(std::vector<Replacement> &Replaces, in deduplicate() argument 171 if (Replaces.empty()) in deduplicate() 190 std::sort(Replaces.begin(), Replaces.end(), LessNoPath); in deduplicate() 191 Replaces.erase(std::unique(Replaces.begin(), Replaces.end(), EqualNoPath), in deduplicate() [all …]
|
/aosp_15_r20/external/snakeyaml/src/test/java/org/pyyaml/ |
H A D | PyTokensTest.java | 40 Map<Token.ID, String> replaces = new HashMap<Token.ID, String>(); in testTokens() local 41 replaces.put(Token.ID.Directive, "%"); in testTokens() 42 replaces.put(Token.ID.DocumentStart, "---"); in testTokens() 43 replaces.put(Token.ID.DocumentEnd, "..."); in testTokens() 44 replaces.put(Token.ID.Alias, "*"); in testTokens() 45 replaces.put(Token.ID.Anchor, "&"); in testTokens() 46 replaces.put(Token.ID.Tag, "!"); in testTokens() 47 replaces.put(Token.ID.Scalar, "_"); in testTokens() 48 replaces.put(Token.ID.BlockSequenceStart, "[["); in testTokens() 49 replaces.put(Token.ID.BlockMappingStart, "{{"); in testTokens() [all …]
|
/aosp_15_r20/external/clang/include/clang/Tooling/Core/ |
H A D | Replacement.h | 150 /// \brief Apply all replacements in \p Replaces to the Rewriter \p Rewrite. 156 bool applyAllReplacements(const Replacements &Replaces, Rewriter &Rewrite); 158 /// \brief Apply all replacements in \p Replaces to the Rewriter \p Rewrite. 164 bool applyAllReplacements(const std::vector<Replacement> &Replaces, 167 /// \brief Applies all replacements in \p Replaces to \p Code. 175 const Replacements &Replaces); 177 /// \brief Calculates how a code \p Position is shifted when \p Replaces are 179 unsigned shiftedCodePosition(const Replacements& Replaces, unsigned Position); 181 /// \brief Calculates how a code \p Position is shifted when \p Replaces are 184 /// \pre Replaces[i].getOffset() <= Replaces[i+1].getOffset(). [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/Tooling/Core/ |
D | Replacement.h | 222 explicit Replacements(const Replacement &R) { Replaces.insert(R); } in Replacements() 263 /// Merges \p Replaces into the current replacements. \p Replaces 265 [[nodiscard]] Replacements merge(const Replacements &Replaces) const; 275 unsigned size() const { return Replaces.size(); } in size() 277 void clear() { Replaces.clear(); } in clear() 279 bool empty() const { return Replaces.empty(); } in empty() 281 const_iterator begin() const { return Replaces.begin(); } in begin() 283 const_iterator end() const { return Replaces.end(); } in end() 285 const_reverse_iterator rbegin() const { return Replaces.rbegin(); } in rbegin() 287 const_reverse_iterator rend() const { return Replaces.rend(); } in rend() [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/Tooling/Core/ |
D | Replacement.h | 222 explicit Replacements(const Replacement &R) { Replaces.insert(R); } in Replacements() 263 /// Merges \p Replaces into the current replacements. \p Replaces 265 [[nodiscard]] Replacements merge(const Replacements &Replaces) const; 275 unsigned size() const { return Replaces.size(); } in size() 277 void clear() { Replaces.clear(); } in clear() 279 bool empty() const { return Replaces.empty(); } in empty() 281 const_iterator begin() const { return Replaces.begin(); } in begin() 283 const_iterator end() const { return Replaces.end(); } in end() 285 const_reverse_iterator rbegin() const { return Replaces.rbegin(); } in rbegin() 287 const_reverse_iterator rend() const { return Replaces.rend(); } in rend() [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/Tooling/Core/ |
D | Replacement.h | 222 explicit Replacements(const Replacement &R) { Replaces.insert(R); } in Replacements() 263 /// Merges \p Replaces into the current replacements. \p Replaces 265 [[nodiscard]] Replacements merge(const Replacements &Replaces) const; 275 unsigned size() const { return Replaces.size(); } in size() 277 void clear() { Replaces.clear(); } in clear() 279 bool empty() const { return Replaces.empty(); } in empty() 281 const_iterator begin() const { return Replaces.begin(); } in begin() 283 const_iterator end() const { return Replaces.end(); } in end() 285 const_reverse_iterator rbegin() const { return Replaces.rbegin(); } in rbegin() 287 const_reverse_iterator rend() const { return Replaces.rend(); } in rend() [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/Tooling/Core/ |
D | Replacement.h | 222 explicit Replacements(const Replacement &R) { Replaces.insert(R); } in Replacements() 263 /// Merges \p Replaces into the current replacements. \p Replaces 265 [[nodiscard]] Replacements merge(const Replacements &Replaces) const; 275 unsigned size() const { return Replaces.size(); } in size() 277 void clear() { Replaces.clear(); } in clear() 279 bool empty() const { return Replaces.empty(); } in empty() 281 const_iterator begin() const { return Replaces.begin(); } in begin() 283 const_iterator end() const { return Replaces.end(); } in end() 285 const_reverse_iterator rbegin() const { return Replaces.rbegin(); } in rbegin() 287 const_reverse_iterator rend() const { return Replaces.rend(); } in rend() [all …]
|
/aosp_15_r20/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
H A D | ReplacesParser.java | 9 // Parser for Replaces Header (RFC3891) 12 // Replaces = "Replaces" HCOLON callid *(SEMI replaces-param) 13 // replaces-param = to-tag / from-tag / early-flag / generic-param 50 Replaces replaces = new Replaces(); in parse() local 54 super.parse(replaces); in parse() 55 replaces.setCallId(callId); in parse() 56 return replaces; in parse() 65 { "Replaces: 12345th5z8z\n", in main() 66 "Replaces: 12345th5z8z;to-tag=tozght6-45;from-tag=fromzght789-337-2\n", in main() 71 Replaces t = (Replaces) tp.parse(); in main()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRFixupKinds.h | 48 /// Replaces the 8-bit immediate with another value. 51 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 54 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 57 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 60 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 64 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 67 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 70 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 73 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 77 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRFixupKinds.h | 48 /// Replaces the 8-bit immediate with another value. 51 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 54 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 57 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 60 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 64 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 67 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 70 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 73 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 77 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction [all …]
|
/aosp_15_r20/external/dagger2/javatests/dagger/hilt/android/processor/internal/aggregateddeps/ |
H A D | TestInstallInTest.java | 54 + "components,replaces") in testMissingValues() 82 "@TestInstallIn(components = {}, replaces = InstallInModule.class)", in testEmptyComponentValues() 93 + "components={}, replaces={test.InstallInModule})"); in testEmptyComponentValues() 109 "@TestInstallIn(components = SingletonComponent.class, replaces = {})", in testEmptyReplacesValues() 118 "@TestInstallIn, 'replaces' class is invalid or missing: " in testEmptyReplacesValues() 120 + "components={dagger.hilt.components.SingletonComponent}, replaces={})"); in testEmptyReplacesValues() 149 " replaces = InstallInModule.class)", in testMissingModuleAnnotation() 190 " replaces = InstallInModule.class)", in testInvalidUsageOnEntryPoint() 218 " replaces = Foo.class)", in testInvalidReplaceModules() 226 "@TestInstallIn#replaces() can only contain @InstallIn modules, but found:" in testInvalidReplaceModules() [all …]
|
/aosp_15_r20/external/cronet/base/android/ |
H A D | jni_array.h | 152 // Replaces the content of |out| with the Java bytes in |byte_array|. 166 // Replaces the content of |out| with the Java bytes in |byte_array|. No UTF-8 172 // Replaces the content of |out| with the Java booleans in |boolean_array|. 178 // Replaces the content of |out| with the Java ints in |int_array|. 183 // Replaces the content of |out| with the Java longs in |long_array|. 189 // Replaces the content of |out| with the Java longs in |long_array|. 195 // Replaces the content of |out| with the Java floats in |float_array|. 201 // Replaces the content of |out| with the Java doubles in |double_array|. 207 // Assuming |array| is an byte[][] (array of byte arrays), replaces the 215 // Assuming |array| is an byte[][] (array of byte arrays), replaces the [all …]
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | transformation_replace_linear_algebra_instruction.h | 42 // Replaces a linear algebra instruction. 57 // Replaces an OpTranspose instruction. 61 // Replaces an OpVectorTimesScalar instruction. 65 // Replaces an OpMatrixTimesScalar instruction. 69 // Replaces an OpVectorTimesMatrix instruction. 73 // Replaces an OpMatrixTimesVector instruction. 77 // Replaces an OpMatrixTimesMatrix instruction. 81 // Replaces an OpOuterProduct instruction. 85 // Replaces an OpDot instruction.
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | transformation_replace_linear_algebra_instruction.h | 42 // Replaces a linear algebra instruction. 57 // Replaces an OpTranspose instruction. 61 // Replaces an OpVectorTimesScalar instruction. 65 // Replaces an OpMatrixTimesScalar instruction. 69 // Replaces an OpVectorTimesMatrix instruction. 73 // Replaces an OpMatrixTimesVector instruction. 77 // Replaces an OpMatrixTimesMatrix instruction. 81 // Replaces an OpOuterProduct instruction. 85 // Replaces an OpDot instruction.
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/fuzz/ |
H A D | transformation_replace_linear_algebra_instruction.h | 42 // Replaces a linear algebra instruction. 57 // Replaces an OpTranspose instruction. 61 // Replaces an OpVectorTimesScalar instruction. 65 // Replaces an OpMatrixTimesScalar instruction. 69 // Replaces an OpVectorTimesMatrix instruction. 73 // Replaces an OpMatrixTimesVector instruction. 77 // Replaces an OpMatrixTimesMatrix instruction. 81 // Replaces an OpOuterProduct instruction. 85 // Replaces an OpDot instruction.
|
/aosp_15_r20/external/clang/lib/Format/ |
H A D | Format.cpp | 1214 // necessary replacement to 'Replaces'. 'Includes' must be in strict source 1219 tooling::Replacements &Replaces, unsigned *Cursor) { in sortCppIncludes() argument 1260 Replaces.insert(tooling::Replacement(FileName, Includes.front().Offset, in sortCppIncludes() 1326 tooling::Replacements &Replaces, in sortCppIncludes() argument 1367 sortCppIncludes(Style, IncludesInBlock, Ranges, FileName, Replaces, in sortCppIncludes() 1379 sortCppIncludes(Style, IncludesInBlock, Ranges, FileName, Replaces, Cursor); in sortCppIncludes() 1380 return Replaces; in sortCppIncludes() 1386 tooling::Replacements Replaces; in sortIncludes() local 1388 return Replaces; in sortIncludes() 1391 sortCppIncludes(Style, Code, Ranges, FileName, Replaces, Cursor); in sortIncludes() [all …]
|
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/ |
H A D | StrSubstitutor.java | 199 * Replaces all the occurrences of variables in the given source object with 212 * Replaces all the occurrences of variables in the given source object with 229 * Replaces all the occurrences of variables in the given source object with their matching 251 * Replaces all the occurrences of variables in the given source object with 409 * Replaces all the occurrences of variables with their matching values 427 * Replaces all the occurrences of variables with their matching values 451 * Replaces all the occurrences of variables with their matching values 468 * Replaces all the occurrences of variables with their matching values 491 * Replaces all the occurrences of variables with their matching values 508 * Replaces all the occurrences of variables with their matching values [all …]
|
/aosp_15_r20/external/libchrome/base/android/ |
H A D | jni_array.h | 83 // Replaces the content of |out| with the Java bytes in |bytes_array|. 88 // Replaces the content of |out| with the Java booleans in |boolean_array|. 93 // Replaces the content of |out| with the Java ints in |int_array|. 99 // Replaces the content of |out| with the Java longs in |long_array|. 104 // Replaces the content of |out| with the Java longs in |long_array|. 110 // Replaces the content of |out| with the Java floats in |float_array|. 116 // Assuming |array| is an byte[][] (array of byte arrays), replaces the 124 // Assuming |array| is an int[][] (array of int arrays), replaces the
|
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/0/external/libchrome/base/android/ |
D | jni_array.h | 86 // Replaces the content of |out| with the Java bytes in |bytes_array|. 91 // Replaces the content of |out| with the Java booleans in |boolean_array|. 96 // Replaces the content of |out| with the Java ints in |int_array|. 102 // Replaces the content of |out| with the Java longs in |long_array|. 107 // Replaces the content of |out| with the Java longs in |long_array|. 113 // Replaces the content of |out| with the Java floats in |float_array|. 119 // Assuming |array| is an byte[][] (array of byte arrays), replaces the 127 // Assuming |array| is an int[][] (array of int arrays), replaces the
|
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/android/ |
D | jni_array.h | 86 // Replaces the content of |out| with the Java bytes in |bytes_array|. 91 // Replaces the content of |out| with the Java booleans in |boolean_array|. 96 // Replaces the content of |out| with the Java ints in |int_array|. 102 // Replaces the content of |out| with the Java longs in |long_array|. 107 // Replaces the content of |out| with the Java longs in |long_array|. 113 // Replaces the content of |out| with the Java floats in |float_array|. 119 // Assuming |array| is an byte[][] (array of byte arrays), replaces the 127 // Assuming |array| is an int[][] (array of int arrays), replaces the
|
/aosp_15_r20/external/google-cloud-java/java-errorreporting/proto-google-cloud-error-reporting-v1beta1/src/main/java/com/google/devtools/clouderrorreporting/v1beta1/ |
H A D | UpdateGroupRequest.java | 74 * Required. The group which replaces the resource on the server. 91 * Required. The group which replaces the resource on the server. 110 * Required. The group which replaces the resource on the server. 492 * Required. The group which replaces the resource on the server. 508 * Required. The group which replaces the resource on the server. 530 * Required. The group which replaces the resource on the server. 554 * Required. The group which replaces the resource on the server. 576 * Required. The group which replaces the resource on the server. 605 * Required. The group which replaces the resource on the server. 626 * Required. The group which replaces the resource on the server. [all …]
|
/aosp_15_r20/external/clang/tools/clang-format/ |
H A D | ClangFormat.cpp | 229 static void outputReplacementsXML(const Replacements &Replaces) { in outputReplacementsXML() argument 230 for (const auto &R : Replaces) { in outputReplacementsXML() 258 Replacements Replaces = sortIncludes(FormatStyle, Code->getBuffer(), Ranges, in format() local 260 auto ChangedCode = tooling::applyAllReplacements(Code->getBuffer(), Replaces); in format() 265 for (const auto &R : Replaces) in format() 271 Replaces = tooling::mergeReplacements(Replaces, FormatChanges); in format() 281 outputReplacementsXML(Replaces); in format() 294 tooling::applyAllReplacements(Replaces, Rewrite); in format()
|