/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
MeasureUnit.java | 335 * @provisional This API might change or be removed in a future release. 360 * @provisional This API might change or be removed in a future release. 379 * @provisional This API might change or be removed in a future release. 392 * @provisional This API might change or be removed in a future release. 417 * @provisional This API might change or be removed in a future release. 424 * @provisional This API might change or be removed in a future release. 431 * @provisional This API might change or be removed in a future release. 438 * @provisional This API might change or be removed in a future release. 445 * @provisional This API might change or be removed in a future release. 452 * @provisional This API might change or be removed in a future release [all...] |
/external/clang/lib/Format/ |
WhitespaceManager.cpp | 21 bool WhitespaceManager::Change::IsBeforeInFile:: 22 operator()(const Change &C1, const Change &C2) const { 28 WhitespaceManager::Change::Change( 55 Changes.push_back(Change(true, Tok.WhitespaceRange, IndentLevel, Spaces, 64 Changes.push_back(Change(false, Tok.WhitespaceRange, /*IndentLevel=*/0, 77 Changes.push_back(Change( 81 // If we don't add a newline this change doesn't start a comment. Thus, 82 // when we align line comments, we don't need to treat this change as one [all...] |
/art/compiler/dex/ |
gvn_dead_code_elimination.cc | 39 return (v_reg == vreg_def) ? prev_value.change : prev_value_high.change; 42 inline void GvnDeadCodeElimination::MIRData::SetPrevChange(int v_reg, uint16_t change) { 46 prev_value.change = change; 48 prev_value_high.change = change; 102 (vreg_data_[v_reg].change != kNPos) 103 ? GetMIRData(vreg_data_[v_reg].change)->vreg_def + 1 == v_reg 106 vreg_data_[v_reg].change = pos 182 uint16_t change = vreg_data_[v_reg].change; local 271 uint16_t change = LastChange(v_reg); local 832 uint16_t change = vreg_chains_.NumMIRs() - 1u; local [all...] |
gvn_dead_code_elimination.h | 53 VRegValue() : value(kNoValue), change(kNPos) { } 57 // Index of the change in mir_data_ that defined the value, kNPos if initial value for the BB. 58 uint16_t change; member in struct:art::GvnDeadCodeElimination::VRegValue 70 void SetPrevChange(int v_reg, uint16_t change); 109 uint16_t FindFirstChangeAfter(int v_reg, uint16_t change) const; 111 void RemoveChange(uint16_t change); 112 bool IsTopChange(uint16_t change) const; 157 size_t no_uses_all_since_; // The change index after the last change with uses_all_vregs set. 162 uint16_t* kill_heads_; // For each vreg in vregs_to_kill_, the first change to kill [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RefactoringTestBase.java | 35 import org.eclipse.ltk.core.refactoring.Change; 84 Change change = refactoring.createChange(new NullProgressMonitor()); local 85 assertNotNull(change); 86 String explanation = "CHANGES:\n-------\n" + describe(change); 120 public static String describe(Change change) throws Exception { 122 describe(sb, change, 0); 135 protected static void describe(StringBuilder sb, Change change, int indent) throws Exception [all...] |
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
PBEKeySpecTest.java | 54 assertFalse("The change of password specified in the constructor " 55 + "should not cause the change of internal array.", 129 assertFalse("The change of password specified in the constructor " 130 + "should not cause the change of internal array.", 133 assertFalse("The change of salt specified in the constructor " 134 + " should not cause the change of internal array.", 192 assertFalse("The change of password specified in the constructor " 193 + "should not cause the change of internal array.", 196 assertFalse("The change of salt specified in the constructor " 197 + " should not cause the change of internal array." [all...] |
IvParameterSpecTest.java | 55 assertFalse("The change of input array's content should not cause " 56 + "the change of internal array", iv[0] == ivps.getIV()[0]); 114 assertFalse("The change of input array's content should not cause " 115 + "the change of internal array", iv[0] == ivps.getIV()[0]); 131 assertFalse("The change of returned array should not cause " 132 + "the change of internal array", iv[0] == ivps.getIV()[0]);
|
PBEParameterSpecTest.java | 55 assertFalse("The change of salt specified in the constructor " 56 + "should not cause the change of internal array.", 62 * to the salt specified in the constructor and that the change of 63 * returned array does not cause the change of internal array. 75 assertFalse("The change of returned by getSalt() method salt" 76 + "should not cause the change of internal array.",
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
PBEKeySpecTest.java | 54 assertFalse("The change of password specified in the constructor " 55 + "should not cause the change of internal array.", 129 assertFalse("The change of password specified in the constructor " 130 + "should not cause the change of internal array.", 133 assertFalse("The change of salt specified in the constructor " 134 + " should not cause the change of internal array.", 192 assertFalse("The change of password specified in the constructor " 193 + "should not cause the change of internal array.", 196 assertFalse("The change of salt specified in the constructor " 197 + " should not cause the change of internal array." [all...] |
IvParameterSpecTest.java | 55 assertFalse("The change of input array's content should not cause " 56 + "the change of internal array", iv[0] == ivps.getIV()[0]); 114 assertFalse("The change of input array's content should not cause " 115 + "the change of internal array", iv[0] == ivps.getIV()[0]); 131 assertFalse("The change of returned array should not cause " 132 + "the change of internal array", iv[0] == ivps.getIV()[0]);
|
PBEParameterSpecTest.java | 55 assertFalse("The change of salt specified in the constructor " 56 + "should not cause the change of internal array.", 62 * to the salt specified in the constructor and that the change of 63 * returned array does not cause the change of internal array. 75 assertFalse("The change of returned by getSalt() method salt" 76 + "should not cause the change of internal array.",
|
/cts/common/util/src/com/android/compatibility/common/util/ |
Stat.java | 158 * Calculate rate per sec for given change happened during given timeInMSec. 160 * @param change total change of quality for the given duration timeInMSec. 164 public static double calcRatePerSec(double change, double timeInMSec) { 166 return change * 1000.0 / 0.001; // do not allow zero 168 return change * 1000.0 / timeInMSec; 175 public static double[] calcRatePerSecArray(double change, double[] timeInMSec) { 177 change *= 1000.0; 180 result[i] = change / 0.001; 182 result[i] = change / timeInMSec[i] [all...] |
/external/clang/test/SemaObjC/ |
objcbridge-attribute-arc.m | 47 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 73 // expected-note {{__bridge to convert directly (no change in ownership)}} \ 76 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 79 // expected-note {{__bridge to convert directly (no change in ownership)}} \ 83 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 86 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 90 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 94 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 98 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 105 // expected-note {{use __bridge to convert directly (no change in ownership)}} [all...] |
/external/skia/site/dev/contrib/ |
submit.md | 32 If you are willing to change Skia codebase, it's nice to add a test at the same 39 Unit tests are best, but if your change touches rendering and you can't think of 41 of SampleApp. Also, if your change is the GPU code, you may not be able to write 56 Now that you've made a change and written a test for it, it's ready for the code 81 Use git cl to upload your change: 98 by me**. Select the change you want to submit for review and click **Edit 101 change off for review. Unless you publish your change, no one will know to look 106 send the email directly when uploading a change in both gcl and git-cl. 127 change. Be sure to respond to all comments before you request review of a [all...] |
/external/clang/test/SemaObjCXX/ |
objcbridge-attribute-arc.mm | 32 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 58 // expected-note {{__bridge to convert directly (no change in ownership)}} \ 61 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 64 // expected-note {{__bridge to convert directly (no change in ownership)}} \ 68 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 71 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 75 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 79 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 83 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 90 // expected-note {{use __bridge to convert directly (no change in ownership)}} [all...] |
objcbridge-attribute.mm | 32 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 58 // expected-note {{__bridge to convert directly (no change in ownership)}} \ 61 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 64 // expected-note {{__bridge to convert directly (no change in ownership)}} \ 68 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 71 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 75 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 79 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 83 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 90 // expected-note {{use __bridge to convert directly (no change in ownership)}} [all...] |
/external/clang/test/Sema/ |
warn-strlcpycat-size.c | 22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 25 strlcpy(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 54 strlcpy(z, str, sizeof(str)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
|
/external/jsoncpp/devtools/ |
licenseupdater.py | 20 but don't change it. 22 as well as the change made to the file. 51 but don't change it. 53 as well as the change made to the file. 71 => Show change that would be made to the sources. 82 help="""On update, show change made to the file.""")
|
/external/speex/include/speex/ |
speex_callbacks.h | 60 /** Request for a mode change */ 62 /** Request for a low mode change */ 64 /** Request for a high mode change */ 102 /** Standard handler for mode request (change mode, no questions asked) */ 105 /** Standard handler for high mode request (change high mode, no questions asked) */ 116 /** Standard handler for low mode request (change low mode, no questions asked) */
|
/external/toybox/toys/posix/ |
chgrp.c | 1 /* chgrp.c - Change user and group ownership 17 Change group of one or more files. 20 -h change symlinks instead of what they point to 22 -H with -R change target of symlink, follow command line symlinks 23 -L with -R change target of symlink, follow all symlinks 24 -P with -R change symlink, do not follow symlinks (default)
|
/development/apps/CustomLocale/src/com/android/customlocale2/ |
ChangeLocale.java | 29 * Helper class to change the system locale. 44 Log.d(TAG, "Change locale to: " + locale); 72 Log.e(TAG, "Change locale failed", e);
|
/development/ndk/platforms/android-21/include/media/ |
NdkMediaError.h | 21 * Do not change method signatures. 22 * Do not change the value of constants. 23 * Do not change the size of any of the classes defined in here.
|
/external/clang/test/ARCMT/ |
no-canceling-bridge-to-bridge-cast.m | 26 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 30 // expected-note {{use __bridge to convert directly (no change in ownership)}} \ 34 // expected-note {{use __bridge to convert directly (no change in ownership)}} \
|
/external/jdiff/src/jdiff/ |
MemberDiff.java | 49 * Null if no change. 55 * Null if no change in inheritance. 64 /** Add a change in the modifiers. */
|
/external/llvm/test/Transforms/Reassociate/ |
no-op.ll | 9 ; Shouldn't change or move any of the add instructions. Should commute but 10 ; otherwise not change or move any of the mul instructions. 27 ; The initial add doesn't change so should not lose the nsw flag.
|