Searched refs:replaced (Results 1 - 25 of 80) sorted by relevance

1234

/external/doclava/res/assets/templates/
H A Dcomponents.cs2 # This default template file is meant to be replaced. ?><?cs
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
H A DLazyType.java106 public ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced, argument
108 return getType().replaceTypeVariables(tp, replaced, inferredTypes);
112 public ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced) { argument
113 return getType().replaceTypeVariables(tp, replaced);
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
H A DResolvedType.java165 default ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced, Map<ResolvedTypeParameterDeclaration, ResolvedType> inferredTypes) { argument
172 default ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced) { argument
173 return replaceTypeVariables(tp, replaced, new HashMap<>());
H A DResolvedTypeVariable.java82 public ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tpToBeReplaced, ResolvedType replaced, Map<ResolvedTypeParameterDeclaration, ResolvedType> inferredTypes) { argument
84 inferredTypes.put(this.asTypeParameter(), replaced);
85 return replaced;
H A DResolvedArrayType.java104 public ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tpToReplace, ResolvedType replaced, Map<ResolvedTypeParameterDeclaration, ResolvedType> inferredTypes) { argument
105 ResolvedType baseTypeReplaced = baseType.replaceTypeVariables(tpToReplace, replaced, inferredTypes);
H A DResolvedIntersectionType.java70 public ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced, Map<ResolvedTypeParameterDeclaration, ResolvedType> inferredTypes) { argument
72 .map(e -> e.replaceTypeVariables(tp, replaced, inferredTypes))
H A DResolvedWildcard.java147 public ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tpToReplace, ResolvedType replaced, Map<ResolvedTypeParameterDeclaration, ResolvedType> inferredTypes) { argument
148 if (replaced == null) {
154 ResolvedType boundedTypeReplaced = boundedType.replaceTypeVariables(tpToReplace, replaced, inferredTypes);
H A DResolvedReferenceType.java157 public ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tpToReplace, ResolvedType replaced, argument
159 if (replaced == null) {
166 ResolvedType transformedTp = tp.replaceTypeVariables(tpToReplace, replaced, inferredTypes);
169 inferredTypes.put(tp.asTypeParameter(), replaced);
184 values.set(index, replaced);
/external/python/cpython3/Mac/Tools/
H A Dpythonw.c173 char replaced; local
174 replaced = slash[1];
179 slash[1] = replaced;
/external/guava/guava-tests/test/com/google/common/xml/
H A DXmlEscapersTest.java85 // and everything else is replaced with FFFD.
112 // Test that 0xFFFE and 0xFFFF are replaced with 0xFFFD
116 assertEquals("0xFFFE is forbidden and should be replaced during escaping",
118 assertEquals("0xFFFF is forbidden and should be replaced during escaping",
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_shader.h88 uint32_t *replaced; member in struct:rbug_proto_shader_info_reply
125 uint32_t *replaced,
H A Drbug_shader.c254 uint32_t *replaced,
267 LEN_ARRAY(4, replaced); /* replaced */
281 WRITE_ARRAY(4, uint32_t, replaced); /* replaced */
464 READ_ARRAY(4, uint32_t, replaced); /* replaced */
250 rbug_send_shader_info_reply(struct rbug_connection *__con, uint32_t serial, uint32_t *original, uint32_t original_len, uint32_t *replaced, uint32_t replaced_len, uint8_t disabled, uint32_t *__serial) argument
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/
H A DMethodUsage.java107 public MethodUsage replaceParamType(int i, ResolvedType replaced) { argument
111 if (paramTypes.get(i) == replaced) {
115 newParams.set(i, replaced);
119 public MethodUsage replaceExceptionType(int i, ResolvedType replaced) { argument
123 if (exceptionTypes.get(i) == replaced) {
127 newTypes.set(i, replaced);
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/declarations/common/
H A DMethodDeclarationCommonLogic.java50 ResolvedType replaced = replaceTypeParams(methodDeclaration.getParam(i).getType(), typeSolver, context);
51 params.add(replaced);
/external/libdrm/intel/
H A Duthash.h191 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \
193 (replaced) = NULL; \
194 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
195 if (replaced) { \
196 HASH_DELETE(hh, head, replaced); \
201 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \
203 (replaced) = NULL; \
204 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
205 if (replaced) { \
206 HASH_DELETE(hh, head, replaced); \
[all...]
/external/curl/docs/cmdline-opts/
H A Doutput.d9 specifier. That variable will be replaced with the current string for the URL
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js201 var len, pos, searchOp, replaced, prevOp, i;
210 replaced = false;
219 replaced=true;
224 if ( !replaced ) {
/external/guava/guava/src/com/google/common/collect/
H A DMinMaxPriorityQueue.java401 // The trickled element is back before index, but the replaced element
403 return new MoveDesc<E>(actualLastElement, changes.replaced);
437 final E replaced; field in class:MinMaxPriorityQueue.MoveDesc
439 MoveDesc(E toTrickle, E replaced) { argument
441 this.replaced = replaced;
794 skipMe.add(moved.replaced);
/external/libpng/projects/visualc71/
H A DREADME_zlib.txt14 been replaced with the "vstudio" project.
/external/tensorflow/tensorflow/core/framework/
H A Dshape_inference_test.cc928 ShapeHandle replaced; local
929 EXPECT_TRUE(c.ReplaceDim(in, 0, c.Dim(in, 1), &replaced).ok());
930 EXPECT_EQ("[2,2,3]", c.DebugString(replaced));
931 EXPECT_TRUE(c.ReplaceDim(in, 2, c.Dim(in, 1), &replaced).ok());
932 EXPECT_EQ("[1,2,2]", c.DebugString(replaced));
933 EXPECT_TRUE(c.ReplaceDim(in, 1, c.Dim(in, 2), &replaced).ok());
934 EXPECT_EQ("[1,3,3]", c.DebugString(replaced));
935 EXPECT_TRUE(c.ReplaceDim(unknown, 0, c.Dim(in, 1), &replaced).ok());
936 EXPECT_EQ("?", c.DebugString(replaced));
939 EXPECT_TRUE(c.ReplaceDim(in, -1, c.Dim(in, 1), &replaced)
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dupnp_xml.c148 * sequence: &#x; where x is replaced by a hex numeral, but not
185 * actionName will be replaced according to action requested
/external/wpa_supplicant_8/src/wps/
H A Dupnp_xml.c148 * sequence: &#x; where x is replaced by a hex numeral, but not
185 * actionName will be replaced according to action requested
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dupnp_xml.c148 * sequence: &#x; where x is replaced by a hex numeral, but not
185 * actionName will be replaced according to action requested
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_debug.c64 bool replaced = false; local
130 replaced = true;
137 return replaced;
/external/ImageMagick/www/api/
H A Dcolormap.php59 <p>AcquireImageColormap() allocates an image colormap and initializes it to a linear gray colorspace. If the image already has a colormap, it is replaced. AcquireImageColormap() returns MagickTrue if successful, otherwise MagickFalse if there is not enough memory.</p>

Completed in 700 milliseconds

1234