| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/ |
| ClassOrInterfaceDeclaration.java | 235 public boolean replace(Node node, Node replacementNode) { method in class:ClassOrInterfaceDeclaration 256 return super.replace(node, replacementNode);
|
| ConstructorDeclaration.java | 211 public boolean replace(Node node, Node replacementNode) { method in class:ConstructorDeclaration 218 return super.replace(node, replacementNode);
|
| FieldDeclaration.java | 268 public boolean replace(Node node, Node replacementNode) { method in class:FieldDeclaration 277 return super.replace(node, replacementNode);
|
| MethodDeclaration.java | 305 public boolean replace(Node node, Node replacementNode) { method in class:MethodDeclaration 318 return super.replace(node, replacementNode);
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/ |
| AssignExpr.java | 220 public boolean replace(Node node, Node replacementNode) { method in class:AssignExpr 231 return super.replace(node, replacementNode);
|
| BinaryExpr.java | 225 public boolean replace(Node node, Node replacementNode) { method in class:BinaryExpr 236 return super.replace(node, replacementNode);
|
| ObjectCreationExpr.java | 291 public boolean replace(Node node, Node replacementNode) { method in class:ObjectCreationExpr 326 return super.replace(node, replacementNode);
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/ |
| ExplicitConstructorInvocationStmt.java | 247 public boolean replace(Node node, Node replacementNode) { method in class:ExplicitConstructorInvocationStmt 270 return super.replace(node, replacementNode);
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
| ArrayType.java | 261 public boolean replace(Node node, Node replacementNode) { method in class:ArrayType 268 return super.replace(node, replacementNode);
|
| ClassOrInterfaceType.java | 251 public boolean replace(Node node, Node replacementNode) { method in class:ClassOrInterfaceType 272 return super.replace(node, replacementNode);
|
| PrimitiveType.java | 214 public boolean replace(Node node, Node replacementNode) { method in class:PrimitiveType 217 return super.replace(node, replacementNode);
|
| /external/javassist/src/main/javassist/expr/ |
| Cast.java | 89 public void replace(String statement) throws CannotCompileException { method in class:Cast
|
| Expr.java | 258 // The implementation of replace() should call thisClass.checkModify() 269 public abstract void replace(String statement) throws CannotCompileException; method in class:Expr 281 public void replace(String statement, ExprEditor recursive) method in class:Expr 284 replace(statement);
|
| FieldAccess.java | 149 public void replace(String statement) throws CannotCompileException { method in class:FieldAccess
|
| Instanceof.java | 92 public void replace(String statement) throws CannotCompileException { method in class:Instanceof
|
| MethodCall.java | 178 public void replace(String statement) throws CannotCompileException { method in class:MethodCall
|
| NewArray.java | 158 public void replace(String statement) throws CannotCompileException { method in class:NewArray
|
| NewExpr.java | 161 public void replace(String statement) throws CannotCompileException { method in class:NewExpr
|
| /external/libxkbcommon/xkbcommon/src/xkbcomp/ |
| keycodes.c | 94 const bool replace = (merge == MERGE_REPLACE || merge == MERGE_OVERRIDE); local 108 xkb_led_index_t use = (replace ? new_idx + 1 : old_idx + 1); 109 xkb_led_index_t ignore = (replace ? old_idx + 1 : new_idx + 1); 115 if (replace) 128 const xkb_atom_t use = (replace ? new->name : old->name); 129 const xkb_atom_t ignore = (replace ? old->name : new->name); 136 if (replace)
|
| /external/python/cpython2/Lib/lib2to3/ |
| pytree.py | 132 def replace(self, new): member in class:Base 133 """Replace this node with a new one in the parent.""" 673 If content is not None, replace the dot with the parenthesized
|
| /external/python/cpython2/Lib/ |
| stringold.py | 402 def replace(s, old, new, maxsplit=0): function 403 """replace (str, old, new[, maxsplit]) -> string 410 return s.replace(old, new, maxsplit)
|
| /external/python/cpython3/Lib/lib2to3/ |
| pytree.py | 102 def replace(self, new): member in class:Base 103 """Replace this node with a new one in the parent.""" 640 If content is not None, replace the dot with the parenthesized
|
| /external/python/cpython3/Lib/test/ |
| inspect_fodder2.py | 8 def replace(func): function 20 @replace
|
| /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
| ShadowSQLiteDatabase.java | 84 public long replace(String table, String nullColumnHack, ContentValues values) { method in class:ShadowSQLiteDatabase
|
| /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/util/ |
| TestFragmentTransaction.java | 50 public FragmentTransaction replace(int containerViewId, Fragment fragment) { method in class:TestFragmentTransaction 51 return replace(containerViewId, fragment, null); 55 public FragmentTransaction replace(int containerViewId, Fragment fragment, String tag) { method in class:TestFragmentTransaction
|