HomeSort by relevance Sort by last modified time
    Searched full:current (Results 26 - 50 of 28275) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/io/
MultiReader.java 33 private Reader current; field in class:MultiReader
42 * Closes the current reader and opens the next one, if any.
47 current = it.next().getInput();
52 if (current == null) {
55 int result = current.read(cbuf, off, len);
66 while (current != null) {
67 long result = current.skip(n);
78 return (current != null) && current.ready();
82 if (current != null)
    [all...]
  /external/oprofile/libutil/
op_get_time.h 3 * Get current time as a string
20 * op_get_time - get current date and time
22 * Returns a string representing the current date
  /external/chromium_org/cc/resources/
tile_priority_unittest.cc 15 gfx::Rect current(100, 100, 100, 100);
17 gfx::Rect(-200, 0, 100, 100), current, 1, target));
19 gfx::Rect(-100, 0, 100, 100), current, 1, target));
21 gfx::Rect(400, 400, 100, 100), current, 1, target));
23 current = gfx::Rect(-300, -300, 100, 100);
25 gfx::Rect(0, 0, 100, 100), current, 1, target));
27 gfx::Rect(-200, -200, 100, 100), current, 1, target));
29 gfx::Rect(-400, -400, 100, 100), current, 1, target));
35 gfx::Rect current(100, 100, 100, 100);
37 gfx::Rect(-200, 0, 200, 200), current, 1, target))
    [all...]
  /external/chromium_org/chrome/browser/task_manager/
os_resource_win.h 12 // Get the current number of GDI handles in use (and peak on >= Win7+).
14 size_t* current,
17 // Get the current number of USER handles in use (and peak on >= Win7).
19 size_t* current,
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
experimental_discovery.html 1 <p>The current methods allow extensions to inject suggested links in the recommended pane of the New Tab Page.</p (…)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitWriterBuffer.java 22 int current = (buffer.get(initialPos + position / 8)); local
23 current = current < 0 ? current + 256 : current;
24 current += i << (left - numBits);
25 buffer.put(initialPos + position / 8, (byte) (current > 127 ? current - 256 : current));
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicInteger.java 55 * Gets the current value.
57 * @return the current value
90 int current = get(); local
91 if (compareAndSet(current, newValue))
92 return current;
98 * if the current value {@code ==} the expected value.
111 * if the current value {@code ==} the expected value.
126 * Atomically increments by one the current value.
132 int current = get(); local
133 int next = current + 1
146 int current = get(); local
161 int current = get(); local
175 int current = get(); local
189 int current = get(); local
204 int current = get(); local
    [all...]
AtomicLong.java 69 * Gets the current value.
71 * @return the current value
104 long current = get(); local
105 if (compareAndSet(current, newValue))
106 return current;
112 * if the current value {@code ==} the expected value.
125 * if the current value {@code ==} the expected value.
140 * Atomically increments by one the current value.
146 long current = get(); local
147 long next = current + 1
160 long current = get(); local
175 long current = get(); local
189 long current = get(); local
203 long current = get(); local
218 long current = get(); local
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixInSoft_D16C31_SAT.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
70 Current=Temp
    [all...]
LVC_Core_MixSoft_1St_D16C31_WRA.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
63 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
64 Current=Temp
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 204 * Traverse to the next node after the current node.
207 * @param current The current node of the iteration.
211 public int next(int context, int current)
213 return getParent(current);
217 * Traverse to the next node after the current node that is matched
221 * @param current The current node of the iteration.
226 public int next(int context, int current, int expandedTypeID)
229 current = makeNodeIdentity(current)
    [all...]
  /dalvik/dx/tests/087-ssa-local-vars/
Blort.java 48 * phi's. The key component here is the assignment of previous = current.
57 StringBuilder current = null; local
60 if (current == null) {
61 current = new StringBuilder(64);
63 current.length();
66 if (l == -1 || current.length() < 1) {
70 if ((current.charAt(0) == ' ' || current.charAt(0) == '\t') && previous != null) {
72 while (i < current.length()) {
73 char ch = current.charAt(i)
    [all...]
  /external/chromium/net/disk_cache/
trace.cc 30 int current; member in struct:__anon2741::TraceBuffer
96 vsprintf_s(s_trace_buffer->buffer[s_trace_buffer->current], format, ap);
98 vsnprintf(s_trace_buffer->buffer[s_trace_buffer->current],
99 sizeof(s_trace_buffer->buffer[s_trace_buffer->current]), format,
103 s_trace_buffer->current++;
104 if (s_trace_buffer->current == kNumberOfEntries)
105 s_trace_buffer->current = 0;
121 int current = s_trace_buffer->current - num_traces; local
122 if (current < 0
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 32 * Skips forwards or backwards {@code byteCount} bytes from the current position.
37 * Copies {@code byteCount} bytes from the current position into {@code dst}, starting at
38 * {@code dstOffset}, and advances the current position {@code byteCount} bytes.
43 * Returns the byte at the current position, and advances the current position one byte.
48 * Returns the 32-bit int at the current position, and advances the current position four bytes.
53 * Copies {@code intCount} 32-bit ints from the current position into {@code dst}, starting at
54 * {@code dstOffset}, and advances the current position {@code 4 * intCount} bytes.
59 * Returns the 16-bit short at the current position, and advances the current position two bytes
    [all...]
  /external/chromium_org/content/test/data/
overscroll_navigation.html 38 var current = get_current();
39 current = (current + 1) % 10;
40 location.hash = "#" + current;
44 var current = get_current();
45 current = (current + 9) % 10;
46 location.hash = "#" + current;
  /external/clang/test/CodeGenObjC/
super-classmethod-category.m 7 @interface CURRENT : SUPER
11 @implementation CURRENT(CAT)
  /bootable/recovery/edify/
yydefs.h 25 #define YYLLOC_DEFAULT(Current, Rhs, N) \
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
29 (Current).end = YYRHSLOC(Rhs, N).end; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /external/chromium/chrome/browser/policy/
mock_configuration_policy_provider.cc 37 for (PolicyMap::const_iterator current = policy_map_.begin();
38 current != policy_map_.end(); ++current) {
39 store->Apply(current->first, current->second->DeepCopy());
  /external/chromium_org/ui/aura/client/
visibility_client.cc 26 aura::Window* current = window; local
28 visibility_client = current->GetProperty(kWindowVisibilityClientKey);
29 current = current->parent();
30 } while (current && !visibility_client);
  /external/chromium_org/chrome/browser/chromeos/login/
mock_login_status_consumer.cc 20 base::MessageLoop::current()->Quit();
27 base::MessageLoop::current()->Quit();
32 base::MessageLoop::current()->Quit();
38 base::MessageLoop::current()->Quit();
43 base::MessageLoop::current()->Quit();
49 base::MessageLoop::current()->Quit();
54 base::MessageLoop::current()->Quit();
60 base::MessageLoop::current()->Quit();
65 base::MessageLoop::current()->Quit();
71 base::MessageLoop::current()->Quit()
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftgloadr.c 52 /* loader.current Describes the top of the stack, on which a new */
56 /* Prepare Set up `loader.current' for addition of a new glyph */
58 /* Add Add the `current' glyph image to the `base' one, */
91 FT_GlyphLoad current = &loader->current; local
98 *current = *base;
141 /* re-adjust the `current' outline fields */
146 FT_Outline* current = &loader->current.outline; local
149 current->points = base->points + base->n_points
189 FT_GlyphLoad current = &loader->current; local
208 FT_Outline* current = &loader->current.outline; local
285 FT_GlyphLoad current = &loader->current; local
310 FT_GlyphLoad current = &loader->current; local
327 FT_GlyphLoad current; local
    [all...]
  /external/freetype/src/base/
ftgloadr.c 52 /* loader.current Describes the top of the stack, on which a new */
56 /* Prepare Set up `loader.current' for addition of a new glyph */
58 /* Add Add the `current' glyph image to the `base' one, */
91 FT_GlyphLoad current = &loader->current; local
98 *current = *base;
141 /* re-adjust the `current' outline fields */
146 FT_Outline* current = &loader->current.outline; local
149 current->points = base->points + base->n_points
189 FT_GlyphLoad current = &loader->current; local
208 FT_Outline* current = &loader->current.outline; local
285 FT_GlyphLoad current = &loader->current; local
310 FT_GlyphLoad current = &loader->current; local
327 FT_GlyphLoad current; local
    [all...]
  /frameworks/native/include/android/
configuration.h 132 * Create and return a new AConfiguration based on the current configuration in
143 * Return the current MCC set in the configuration. 0 if not set.
148 * Set the current MCC in the configuration. 0 to clear.
153 * Return the current MNC set in the configuration. 0 if not set.
158 * Set the current MNC in the configuration. 0 to clear.
163 * Return the current language code set in the configuration. The output will
170 * Set the current language code in the configuration, from the first two
176 * Return the current country code set in the configuration. The output will
183 * Set the current country code in the configuration, from the first two
189 * Return the current ACONFIGURATION_ORIENTATION_* set in the configuration
    [all...]
  /external/chromium_org/v8/src/
hydrogen-minus-zero.cc 37 HInstruction* current = it.Current(); local
38 if (current->IsChange()) {
39 HChange* change = HChange::cast(current);
52 } else if (current->IsCompareMinusZeroAndBranch()) {
54 HCompareMinusZeroAndBranch::cast(current);
67 for (HValue* current = value;
68 current != NULL && !visited_.Contains(current->id());
69 current = current->EnsureAndPropagateNotMinusZero(&visited_))
    [all...]
  /build/tools/check_prereq/
check_prereq.c 23 // against the current value of ro.build.date.utc. Exit successfully
24 // if the new build is newer than the current build (or if the
38 long current = strtol(value, NULL, 10); local
42 printf("current build time: [%ld] new build time: [%ld]\n",
43 current, install);
45 return (*end == 0 && current > 0 && install >= current) ? 0 : 1;

Completed in 319 milliseconds

12 3 4 5 6 7 8 91011>>