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

1 2 3 4

  /external/javassist/sample/rmi/
Counter.java 15 synchronized public int increase() { method in class:Counter
CountApplet.java 62 counter.increase();
  /external/chromium_org/content/browser/streams/
stream_registry.cc 71 size_t increase) {
85 if (increase > max_memory_usage_ - current_total_memory_usage)
88 total_memory_usage_ = current_total_memory_usage + increase;
stream_registry.h 35 // Called by Stream instances to request increase of memory usage. If the
40 // and |increase| must be the amount of data going to be added to the Stream
42 bool UpdateMemoryUsage(const GURL& url, size_t current_size, size_t increase);
  /external/stlport/test/unit/
foreach_test.cpp 31 static void increase(int& a_) function
39 for_each(numbers, numbers + 10, ptr_fun(increase));
  /ndk/tests/device/test-gnustl-full/unit/
foreach_test.cpp 31 static void increase(int& a_) function
39 for_each(numbers, numbers + 10, ptr_fun(increase));
  /ndk/tests/device/test-stlport/unit/
foreach_test.cpp 31 static void increase(int& a_) function
39 for_each(numbers, numbers + 10, ptr_fun(increase));
  /external/blktrace/btt/
misc.c 87 static int increase_limit(int resource, rlim_t increase)
93 rlim.rlim_cur += increase;
95 rlim.rlim_max = rlim.rlim_cur + increase;
  /external/valgrind/main/memcheck/tests/
supp_unknown.stderr.exp 8 possible), you can try to increase the size of the
badjump.stderr.exp 14 possible), you can try to increase the size of the
  /external/valgrind/main/none/tests/linux/
blockfault.stderr.exp 8 possible), you can try to increase the size of the
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
tts.js 67 function(propertyName, increase) {
72 'increase': increase});
77 * @param {string} property_name The name of the property to increase.
85 'action': 'increase' + property_name,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
composite_tts.js 86 function(propertyName, increase) {
88 engine.increaseOrDecreaseProperty(propertyName, increase);
  /external/chromium_org/ppapi/proxy/
file_io_resource.cc 285 int64_t increase = 0; local
289 increase = bytes_to_write;
294 increase = static_cast<int64_t>(max_offset) - max_written_offset_;
297 if (increase > 0) {
304 increase,
313 DCHECK(result == increase);
334 int64_t increase = length - max_written_offset_; local
335 if (increase > 0) {
338 increase,
347 DCHECK(result == increase);
    [all...]
nacl_message_scanner.cc 403 // increase from the quota reservation.
409 // Calculate file size increase, taking care to avoid overflows.
413 int64_t increase = length - trusted_max_written_offset; local
414 if (increase <= 0)
416 if (!it->second->Grow(increase)) {
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXNodeObject.h 78 void alterSliderValue(bool increase);
81 void changeValueByStep(bool increase);
AXNodeObject.cpp 111 void AXNodeObject::alterSliderValue(bool increase)
117 changeValueByStep(increase);
119 changeValueByPercent(increase ? 5 : -5);
143 void AXNodeObject::changeValueByStep(bool increase)
148 value += increase ? step : -step;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ProgressBar1.java 47 Button button = (Button) findViewById(R.id.increase);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
tts_interface.js 71 * @param {boolean} increase If true, increases the property value by one
75 function(propertyName, increase) { };
  /external/chromium_org/components/nacl/loader/
nacl_ipc_adapter.cc 134 int64_t increase = max_offset - file_io->max_written_offset(); local
135 if (increase <= 0 || file_io->Grow(increase))
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
vp9_dct_ssse3.asm 142 ; left shift by 2 to increase forward transformation precision
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1708.js 41 // Fill heap to increase old-space size and trigger concurrent sweeping on
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailPlaybackPresenter.java 417 * Listens to clicks on the rate increase and decrease buttons.
424 public RateChangeListener(boolean increase) {
425 mIncrease = increase;
  /bionic/libc/tools/
genlibgcc_compat.py 28 * functions from libgcc.a into each .so and executable, causing 4k+ increase
  /external/llvm/include/llvm/CodeGen/
RegisterPressure.h 38 /// Increase register pressure for each pressure set impacted by this register
43 void increase(unsigned Reg, const TargetRegisterInfo *TRI,
186 /// CriticalMax records the largest increase in the tracker's max pressure that
189 /// CurrentMax records the largest increase in the tracker's max pressure that
360 /// Consider the pressure increase caused by traversing this instruction
376 /// Consider the pressure increase caused by traversing this instruction

Completed in 1029 milliseconds

1 2 3 4