Searched refs:update (Results 1 - 25 of 773) sorted by last modified time

1234567891011>>

/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DSource.java862 md.update(name.getBytes(StandardCharsets.UTF_8));
865 md.update(base.getBytes(StandardCharsets.UTF_8));
868 md.update(getURL().toString().getBytes(StandardCharsets.UTF_8));
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/debug/
H A DJSONWriter.java391 final Node update = forNode.getModify();
392 property("update");
393 if (update != null) {
394 update.accept(this);
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DOptimisticTypesPersistence.java390 digest.update(buf, 0, l);
582 digest.update(Files.readAllBytes(p));
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/
H A DSimpleTreeVisitorES5_1.java221 final Tree update = node.getUpdate();
222 if (update != null) {
223 update.accept(this, r);
H A DForLoopTreeImpl.java33 private final ExpressionTree update; field in class:ForLoopTreeImpl
39 final ExpressionTree update,
45 this.update = update;
66 return update;
36 ForLoopTreeImpl(final ForNode node, final ExpressionTree init, final ExpressionTree cond, final ExpressionTree update, final StatementTree stat) argument
/openjdk9/langtools/test/tools/javac/file/zip/
H A DT6836682.java74 crc.update(buffer);
89 crc.update(buffer, 0, n);
/openjdk9/langtools/test/tools/javac/file/zip/8003512/
H A DLoadClassFromJava6CreatedJarTest.java160 crc.update(buffer);
175 crc.update(buffer, 0, n);
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DJShellTool.java3002 // display update information
3093 private final FormatWhen update; field in class:JShellTool.DisplayEvent
3102 DisplayEvent(SnippetEvent ste, FormatWhen update, String value, List<Diag> errors) { argument
3105 update, value, errors);
3113 FormatAction action, FormatWhen update, String value, List<Diag> errors) {
3117 this.update = update;
3184 String resolutionErrors = feedback.format("resolve", fcase, action, update,
3191 String display = feedback.format(fcase, action, update,
3112 DisplayEvent(Snippet sn, Status status, boolean resolve, FormatAction action, FormatWhen update, String value, List<Diag> errors) argument
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DIterators.java60 update();
76 private void update() { method in class:Iterators.CompoundIterator
99 private E current = update();
100 private E update () {
118 current = update();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DJCTree.java1105 List<JCExpressionStatement> update,
1110 this.step = update;
1103 JCForLoop(List<JCStatement> init, JCExpression cond, List<JCExpressionStatement> update, JCStatement body) argument
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DResolve.java1797 iphase = (iphase == null) ? null : iphase.update(s, this);
1837 InterfaceLookupPhase update(Symbol s, Resolve rs) {
1850 InterfaceLookupPhase update(Symbol s, Resolve rs) {
1855 abstract InterfaceLookupPhase update(Symbol s, Resolve rs); method in class:Resolve.InterfaceLookupPhase
H A DLower.java3285 JCExpression update = makeAssignop(opcode,
3288 return makeComma(update, tmp2);
H A DInferenceContext.java75 Type update(Type t) { method in class:InferenceContext
H A DInfer.java330 MethodType other = (MethodType)minContext.update(asMethodType());
1047 public void varBoundChanged(UndetVar uv, InferenceBound ib, Type bound, boolean update) { argument
1049 uv.incorporationActions.addAll(getIncorporationActions(uv, ib, bound, update));
1052 abstract List<IncorporationAction> getIncorporationActions(UndetVar uv, InferenceBound ib, Type t, boolean update); argument
1060 List<IncorporationAction> getIncorporationActions(UndetVar uv, InferenceBound ib, Type t, boolean update) {
1077 List<IncorporationAction> getIncorporationActions(UndetVar uv, InferenceBound ib, Type t, boolean update) {
1085 if (update) {
1800 //update deps
1873 * Delete a node from the graph. This update the underlying structure
1911 //update
[all...]
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DLocations.java173 void update(Log log, boolean warn, FSInfo fsInfo) { method in class:Locations
417 // update this code to recognize URLs rather than simple
1743 update(getPath(value));
1761 update(dir);
1792 private void update(Path p) { method in class:Locations.SystemModulesLocationHandler
H A DBaseFileManager.java90 locations.update(log, warn, FSInfo.instance(context));
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DScope.java423 // We don't need to update nelems for shared inherited scopes,
577 update();
602 update();
606 private void update() {
H A DType.java1872 void varBoundChanged(UndetVar uv, InferenceBound ib, Type bound, boolean update); argument
2093 private void addBound(InferenceBound ib, Type bound, Types types, boolean update) { argument
2094 if (kind == Kind.CAPTURED && !update) {
2162 private void notifyBoundChange(InferenceBound ib, Type bound, boolean update) { argument
2164 listener.varBoundChanged(this, ib, bound, update);
/openjdk9/jdk/test/tools/launcher/
H A DBigJar.java81 crc.update(buffer);
93 crc.update(buffer, 0, n);
/openjdk9/jdk/test/sun/util/calendar/zi/
H A DTimezone.java369 sum.update(transitions.get(i) + offset);
370 sum.update(offset);
371 sum.update(dstOffsets.get(i));
H A DChecksum.java41 public void update(int val) { method in class:Checksum
47 update(b);
55 void update(long val) { method in class:Checksum
65 update(b);
/openjdk9/jdk/test/sun/security/x509/AlgorithmId/
H A DNonStandardNames.java67 s.update(authed.getDerEncoding());
/openjdk9/jdk/test/sun/security/tools/jarsigner/
H A DTimestampCheck.java216 sig.update(tstInfo.toByteArray());
H A DLargeJarEntry.java56 crc.update(bytes);
/openjdk9/jdk/test/sun/security/rsa/
H A DSignatureTest.java168 sig.update(data);
175 sig.update(data);
186 sig.update(data);

Completed in 283 milliseconds

1234567891011>>