HomeSort by relevance Sort by last modified time
    Searched full:old_value (Results 1 - 9 of 9) sorted by null

  /external/webkit/WebKitLibraries/win/tools/scripts/
auto-version.sh 30 local old_value=$(eval echo "\$$1");
31 local value=$(echo "$old_value" | sed 's/[\r\n]*$//')
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ualgo.h 139 /// old_value with new_value. That is: for every iterator i,
140 /// if *i == old_value then it performs the assignment *i = new_value.
144 inline void replace (ForwardIterator first, ForwardIterator last, const T& old_value, const T& new_value)
147 if (*first == old_value)
152 /// [result, result + (last-first)), except that any element equal to old_value
155 /// assignment *(result+n) = new_value if *(first+n) == old_value, and
160 inline OutputIterator replace_copy (InputIterator first, InputIterator last, OutputIterator result, const T& old_value, const T& new_value)
163 *result = (*first == old_value) ? new_value : *first;
uctralgo.h 167 /// old_value with new_value. That is: for every iterator i,
168 /// if *i == old_value then it performs the assignment *i = new_value.
172 inline void replace (Container& ctr, const T& old_value, const T& new_value)
174 replace (ctr.begin(), ctr.end(), old_value, new_value);
189 /// [result, result + (last-first)), except that any element equal to old_value
192 /// assignment *(result+n) = new_value if *(first+n) == old_value, and
197 inline OutputIterator replace_copy (const Container& ctr, OutputIterator result, const T& old_value, const T& new_value)
199 return (replace_copy (ctr.begin(), ctr.end(), result, old_value, new_value));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiAttributeNode.java 77 boolean old_value = mIsDirty;
80 if (old_value != isDirty) {
  /external/libpng/contrib/pngminus/
pnm2png.c 479 static int old_value = 0; local
490 old_value = fgetc (pnm_file);
494 ret_value = old_value & mask;
498 old_value = (old_value << depth) & 0xFF;
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
ToStream.java 3027 String old_value = null; local
    [all...]
  /external/ppp/pppd/
tdb.c     [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 6151 Result old_value; \/\/ Only allocated in the postfix case. local
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 3235 Result old_value; \/\/ Only allocated in the postfix case. local
    [all...]

Completed in 543 milliseconds