HomeSort by relevance Sort by last modified time
    Searched refs:update (Results 1 - 25 of 5504) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/annotation-tools/buildtest/
svn-update-and-log 3 # Script to perform svn update and write a log. Due to file access rules,
6 svn update > svn-update.log
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
UpdateHelper.java 24 public int update(int original, int update) { method in class:UpdateHelper
25 if (original != update) {
27 original = update;
32 public long update(long original, long update) { method in class:UpdateHelper
33 if (original != update) {
35 original = update;
40 public double update(double original, double update) { method in class:UpdateHelper
48 public <T> T update(T original, T update) { method in class:UpdateHelper
    [all...]
  /external/clang/test/OpenMP/
target_update_if_messages.cpp 15 #pragma omp target update to(n) if // expected-error {{expected '(' after 'if'}}
16 #pragma omp target update from(n) if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target update to(n) if () // expected-error {{expected expression}}
18 #pragma omp target update from(n) if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
19 #pragma omp target update to(n) if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
20 #pragma omp target update from(n) if (argc > 0 ? argv[1] : argv[2])
21 #pragma omp target update to(n) if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target update' cannot contain more than one 'if' clause}}
22 #pragma omp target update from(n) if (S) // expected-error {{'S' does not refer to a value}
    [all...]
target_update_messages.cpp 20 #pragma omp target update // expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
21 #pragma omp target update to(m) { // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
22 #pragma omp target update to(m) ( // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
23 #pragma omp target update to(m) [ // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
24 #pragma omp target update to(m) ] // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}
    [all...]
target_update_nowait_messages.cpp 6 #pragma omp nowait target update to(i) // expected-error {{expected an OpenMP directive}}
7 #pragma omp target nowait update to(i) // expected-error {{unexpected OpenMP clause 'update' in directive '#pragma omp target'}} expected-error {{unexpected OpenMP clause 'to' in directive '#pragma omp target'}}
9 #pragma omp target update nowait() to(i) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
10 #pragma omp target update to(i) nowait( // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
11 #pragma omp target update to(i) nowait (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}
    [all...]
target_update_depend_messages.cpp 25 #pragma omp depend target update to(z) // expected-error{{expected an OpenMP directive}}
26 #pragma omp depend(out:argc) target update to(z) // expected-error{{expected an OpenMP directive}}
27 #pragma omp target depend(in:argc) update to(z) // expected-error{{unexpected OpenMP clause 'update' in directive '#pragma omp target'}} expected-error{{unexpected OpenMP clause 'to' in directive '#pragma omp target'}}
30 #pragma omp target update to(z) depend // expected-error {{expected '(' after 'depend'}}
31 #pragma omp target update to(z) depend( // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':' after dependency type - ignoring}}
32 #pragma omp target update to(z) depend() // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{missing ':' after dependency type - ignoring}}
33 #pragma omp target update to(z) depend(argc // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{missing ':' after dependency type - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
34 #pragma omp target update to(z) depend(source : argc) // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}}
35 #pragma omp target update to(z) depend(source) // expected-error {{expected expression}} expected-warning {{missing ':' afte (…)
    [all...]
target_update_device_messages.cpp 15 #pragma omp target update to(i) device // expected-error {{expected '(' after 'device'}}
16 #pragma omp target update to(i) device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target update to(i) device () // expected-error {{expected expression}}
18 #pragma omp target update to(i) device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
19 #pragma omp target update to(i) device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
20 #pragma omp target update from(i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
21 #pragma omp target update from(i) device (argc + argc)
22 #pragma omp target update from(i) device (argc), device (argc+1) // expected-error {{directive '#pragma omp target update' cannot contain more than one 'device' clause}
    [all...]
target_update_from_messages.cpp 82 #pragma omp target update from // expected-error {{expected '(' after 'from'}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
83 #pragma omp target update from( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
84 #pragma omp target update from() // expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
85 #pragma omp target update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
86 #pragma omp target update from(alloc) // expected-error {{use of undeclared identifier 'alloc'}} expected-error {{expected a (…)
    [all...]
target_update_to_messages.cpp 82 #pragma omp target update to // expected-error {{expected '(' after 'to'}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
83 #pragma omp target update to( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
84 #pragma omp target update to() // expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
85 #pragma omp target update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
86 #pragma omp target update to(alloc) // expected-error {{use of undeclared identifier 'alloc'}} expected-error {{expected at (…)
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
Checksum.java 38 * @param b the byte to update the checksum with
40 public void update(int b); method in interface:Checksum
44 * @param b the byte array to update the checksum with
46 * @param len the number of bytes to use for the update
48 public void update(byte[] b, int off, int len); method in interface:Checksum
  /tools/loganalysis/src/com/android/loganalysis/util/config/
OptionUpdateRule.java 29 /** once an option is set, subsequent attempts to update it should be ignored. */
32 Object update(String optionName, Object current, Object update) method
34 if (current == null) return update;
42 Object update(String optionName, Object current, Object update) method
44 return update;
51 Object update(String optionName, Object current, Object update) method
53 if (current == null) return update;
67 Object update(String optionName, Object current, Object update) method
83 Object update(String optionName, Object current, Object update) method
92 abstract Object update(String optionName, Object current, Object update) method in class:OptionUpdateRule
99 public Object update(String optionName, Object optionSource, Field field, Object update) method in class:OptionUpdateRule
    [all...]
  /external/e2fsprogs/debian/
e2fsprogs.postinst 6 if [ -x /usr/sbin/update-initramfs -a \
8 update-initramfs -u
  /external/selinux/python/sepolicy/sepolicy/templates/
script.py 29 USAGE="$0 [ --update ]"
36 if [ "$1" = "--update" ] ; then
40 echo "Found avc's to update policy with"
  /frameworks/base/media/java/android/media/update/
ApiLoader.java 17 package android.media.update;
VolumeProvider2Provider.java 16 package android.media.update;
  /libcore/ojluni/src/main/java/java/util/
Observer.java 46 void update(Observable o, Object arg); method in interface:Observer
  /system/tools/hidl/
update-all-google-makefiles.sh 5 $ANDROID_BUILD_TOP/system/libhidl/update-makefiles.sh
6 $ANDROID_BUILD_TOP/hardware/interfaces/update-makefiles.sh
7 $ANDROID_BUILD_TOP/frameworks/hardware/interfaces/update-makefiles.sh
8 $ANDROID_BUILD_TOP/system/hardware/interfaces/update-makefiles.sh
10 $ANDROID_BUILD_TOP/system/tools/hidl/test/vendor/update-makefile.sh
  /frameworks/base/core/tests/coretests/src/android/text/
DynamicLayoutBlocksTest.java 71 private void update(int startLine, int endLine, int newLineCount) { method in class:DynamicLayoutBlocksTest
109 update(0, 0, 0);
112 update(0, 0, 1);
115 update(0, 0, 10);
123 update(0, 0, 0);
126 update(0, 10, 0);
129 update(0, 100, 0);
132 update(20, 30, 0);
135 update(20, 20, 0);
138 update(40, 100, 0)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Digest.java 23 * update the message digest with a single byte.
27 public void update(byte in); method in interface:Digest
30 * update the message digest with a block of bytes.
36 public void update(byte[] in, int inOff, int len); method in interface:Digest
Signer.java 17 * update the internal digest with the byte b
19 public void update(byte b); method in interface:Signer
22 * update the internal digest with the byte array in
24 public void update(byte[] in, int off, int len); method in interface:Signer
  /frameworks/hardware/interfaces/
update-makefiles.sh 3 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
  /hardware/interfaces/
update-makefiles.sh 3 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
  /system/hardware/interfaces/
update-makefiles.sh 3 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
  /frameworks/av/packages/MediaComponents/
proguard.cfg 18 -keep public class com.android.media.update.ApiFactory {
19 public static com.android.media.update.ApiFactory initialize(android.content.pm.ApplicationInfo);
  /external/replicaisland/src/com/replica/replicaisland/
MainLoop.java 34 public void update(float timeDelta, BaseObject parent) { method in class:MainLoop
35 mTimeSystem.update(timeDelta, parent);
37 super.update(newTimeDelta, parent);

Completed in 1018 milliseconds

1 2 3 4 5 6 7 8 91011>>