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

<<31323334353637383940>>

  /art/runtime/base/
timing_logger.cc 53 MutexLock mu(Thread::Current(), lock_);
58 MutexLock mu(Thread::Current(), lock_);
68 MutexLock mu(Thread::Current(), lock_);
78 MutexLock mu(Thread::Current(), lock_);
90 MutexLock mu(Thread::Current(), lock_);
100 const size_t max_buckets = Runtime::Current()->GetHeap()->IsLowMemoryMode() ? 16 : 100;
147 // Ends the current split and starts the one given by the label.
203 // Stash away the current split and pause it.
232 TimingLogger::ScopedSplit* current = timing_logger_->current_split_; local
233 while ((current != NULL) && (current != this))
    [all...]
  /external/chromium_org/content/child/fileapi/
file_system_dispatcher.cc 190 ChildThread::current()->Send(new FileSystemHostMsg_OpenFileSystem(
200 ChildThread::current()->Send(new FileSystemHostMsg_ResolveURL(
209 ChildThread::current()->Send(new FileSystemHostMsg_DeleteFileSystem(
218 ChildThread::current()->Send(new FileSystemHostMsg_Move(
227 ChildThread::current()->Send(new FileSystemHostMsg_Copy(
236 ChildThread::current()->Send(
246 ChildThread::current()->Send(
255 ChildThread::current()->Send(new FileSystemHostMsg_Create(
266 ChildThread::current()->Send(new FileSystemHostMsg_Create(
275 ChildThread::current()->Send
    [all...]
  /external/chromium_org/v8/src/
contexts.cc 38 Context* current = this; local
39 while (!current->IsFunctionContext() && !current->IsNativeContext()) {
40 current = current->previous();
41 ASSERT(current->closure() == closure());
43 return current;
59 Context* current = this; local
60 while (!current->IsGlobalContext()) {
61 current = current->previous()
78 Context* current = this; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 29 * suspends the current thread, just like {@code Object.wait}.
153 * Causes the current thread to wait until it is signalled or
157 * released and the current thread becomes disabled for thread scheduling
161 * {@code Condition} and the current thread happens to be chosen as the
166 * current thread, and interruption of thread suspension is supported; or
170 * <p>In all cases, before this method can return the current thread must
174 * <p>If the current thread:
180 * then {@link InterruptedException} is thrown and the current thread's
187 * <p>The current thread is assumed to hold the lock associated with this
199 * @throws InterruptedException if the current thread is interrupte
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
reslist.c 234 struct SResource *current; local
245 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
246 res_write16(bundle, current, status);
247 res16 |= makeRes16(current->fRes);
254 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext)
266 struct SResource *current; local
401 struct SResource *current; local
417 struct SResource *current; local
516 struct SResource *current = NULL; local
566 struct SResource *current; local
1108 struct SResource *current = NULL; local
1124 struct SResource *current = NULL; local
1229 struct SResource *current = NULL; local
    [all...]
  /external/icu4c/tools/genrb/
reslist.c 236 struct SResource *current; local
247 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
248 res_write16(bundle, current, status);
249 res16 |= makeRes16(current->fRes);
256 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext)
268 struct SResource *current; local
403 struct SResource *current; local
419 struct SResource *current; local
518 struct SResource *current = NULL; local
568 struct SResource *current; local
1110 struct SResource *current = NULL; local
1126 struct SResource *current = NULL; local
1235 struct SResource *current = NULL; local
    [all...]
  /external/v8/src/
lithium-allocator.cc 213 // at the current or the immediate next position.
282 UseInterval* current = FirstSearchIntervalForPosition(position); local
288 if (current->start().Value() == position.Value()) {
290 current = first_interval_;
293 while (current != NULL) {
294 if (current->Contains(position)) {
295 current->SplitAt(position, zone);
298 UseInterval* next = current->next();
303 current = next;
307 UseInterval* before = current;
451 UsePosition* current = first_pos_; local
1505 LiveRange* current = fixed_double_live_ranges_.at(i); local
1512 LiveRange* current = fixed_live_ranges_.at(i); local
1521 LiveRange* current = unhandled_live_ranges_.RemoveLast(); local
2109 LiveRange* current = live_ranges()->at(i); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathContext.java 395 /** The current stylesheet locator. */
399 * Set the current locater in the stylesheet.
409 * Set the current locater in the stylesheet.
430 * Pop the current locater.
438 * Get the current locater in the stylesheet.
666 * The current context node list.
674 * Get the current context node list.
676 * @return the <a href="http://www.w3.org/TR/xslt#dt-current-node-list">current node list</a>,
689 * Set the current context node list
    [all...]
  /frameworks/base/libs/hwui/
PathTessellator.cpp 194 const Vertex* current = &(perimeter[0]); local
195 vec2 lastNormal(current->position[1] - last->position[1],
196 last->position[0] - current->position[0]);
200 vec2 nextNormal(next->position[1] - current->position[1],
201 current->position[0] - next->position[0]);
208 current->position[0] + totalOffset.x,
209 current->position[1] + totalOffset.y);
212 current->position[0] - totalOffset.x,
213 current->position[1] - totalOffset.y);
215 last = current;
292 const Vertex* current = &(vertices[1]); local
339 const Vertex* current = &(perimeter[0]); local
578 const Vertex* current = &(vertices[1]); local
648 const Vertex* current = &(perimeter[0]); local
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
Zoomer.java 40 * Whether or not the current zoom has finished.
45 * The current zoom value; computed by {@link #computeZoom()}.
67 * current zoom value isn't set to the ending value.
76 * Aborts the animation, setting the current zoom value to the ending value.
100 * Computes the current zoom level, returning true if the zoom is still active and false if the
123 * Returns the current zoom level.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 84 IToken current = ( (ITokenStream)input ).LT( 1 );
85 if ( current.Type == TokenTypes.EndOfFile )
87 current = ( (ITokenStream)input ).LT( -1 );
89 t.Line = current.Line;
90 t.CharPositionInLine = current.CharPositionInLine;
92 t.InputStream = current.InputStream;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 68 Token current = ((TokenStream)input).LT(1); local
69 if ( current.getType() == Token.EOF ) {
70 current = ((TokenStream)input).LT(-1);
72 t.line = current.getLine();
73 t.charPositionInLine = current.getCharPositionInLine();
75 t.input = current.getInputStream();
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExpressionContext.java 31 * information about the current XPath expression context.
37 * Get the current context node.
38 * @return The current context node.
43 * Get the current context node list.
44 * @return An iterator for the current context list, as
87 * @return The current XPathContext.
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformState.java 43 * <p>Note that the current stylesheet and root stylesheet can
68 * This method retrieves the current context node
71 * @return the current context node in the source tree.
91 * the same thing as the current template (which
113 * Get the current context node list.
115 * @return the current context node list.
  /external/chromium/base/
message_pump_glib_unittest.cc 137 // Quits the current message loop.
139 MessageLoop::current()->Quit();
147 // Posts a task on the current message loop.
150 MessageLoop::current()->PostTask(from_here, task);
203 // current implementation ensures it and the tests below rely on it.
302 MessageLoop::current()->Quit();
304 MessageLoop::current()->PostTask(
314 MessageLoop::current()->Quit();
375 MessageLoop::current()->PostTask(FROM_HERE, NewRunnableFunction(DoNothing));
376 MessageLoop::current()->PostTask(FROM_HERE, NewRunnableFunction(DoNothing))
    [all...]
  /external/chromium/chrome/browser/resources/
bug_report.css 112 .image-thumbnail-current {
120 .image-thumbnail-current:hover {
124 .image-thumbnail-current div {
128 .image-thumbnail-current img {
133 .image-thumbnail-current:hover div {
144 .image-thumbnail-current:hover div img {
  /external/chromium/chrome/common/
important_file_writer_unittest.cc 78 MessageLoop::current()->PostDelayedTask(FROM_HERE,
80 MessageLoop::current()->Run();
94 MessageLoop::current()->PostDelayedTask(FROM_HERE,
96 MessageLoop::current()->Run();
110 MessageLoop::current()->PostDelayedTask(FROM_HERE,
112 MessageLoop::current()->Run();
  /external/chromium_org/chrome/browser/chromeos/drive/
file_cache.cc 110 for (base::FilePath current = enumerator.Next(); !current.empty();
111 current = enumerator.Next()) {
112 std::string id = GetIdFromPath(current);
114 base::DeleteFile(current, false /* recursive */);
380 for (base::FilePath current = enumerator.Next(); !current.empty();
381 current = enumerator.Next()) {
382 const std::string& id = GetIdFromPath(current);
390 // |recovered_cache_entries|, it means the current file is already uploade
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine.h 100 // True if the current context has focus.
106 // ID that is used for the current input context. False if there is no focus.
118 // The current auxialy text and it's visiblity.
125 // The current preedit text, and it's cursor position.
129 // The current candidate window.
132 // The current candidate window property.
  /external/chromium_org/chrome/browser/drive/
drive_uploader_unittest.cc 90 base::MessageLoop::current()->PostTask(FROM_HERE,
106 base::MessageLoop::current()->PostTask(FROM_HERE,
113 base::MessageLoop::current()->PostTask(FROM_HERE,
128 // The upload range should start from the current first unreceived byte.
145 // Update the internal status of the current upload session.
154 base::MessageLoop::current()->PostTask(FROM_HERE,
162 // Handles a request to fetch the current upload status.
176 // Runs |callback| with the current upload status.
196 base::MessageLoop::current()->PostTask(FROM_HERE,
215 base::MessageLoop::current()->PostTask(FROM_HERE
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_path_parser.h 26 // ${documents} - The "Documents" folder for the current user.
28 // ${local_app_data} - The Application Data folder for the current user.
30 // ${roaming_app_data}- The Roamed AppData folder for the current user.
32 // ${profile} - The home folder for the current user.
36 // ${program_files} - The "Program Files" folder for the current process.
44 // ${documents} - The "Documents" folder of the current user.
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
player_testapi.js 22 * Respond with the path to the current media source.
57 * Respond with a number, current media position in seconds.
90 * Respond with a number, current volume [0..100].
144 * Respond with a current track number,
158 * Go back. Will restart the current track if the current position is > 5 sec
  /external/chromium_org/content/browser/renderer_host/
image_transport_factory_android.cc 104 LOG(ERROR) << "Failed to make helper context current.";
112 LOG(ERROR) << "Failed to make helper context current.";
120 LOG(ERROR) << "Failed to make helper context current.";
128 LOG(ERROR) << "Failed to make helper context current.";
137 LOG(ERROR) << "Failed to make helper context current.";
182 base::MessageLoop::current()->PostTask(
  /external/chromium_org/content/public/browser/
notification_registrar.cc 34 NotificationServiceImpl::current();
53 NotificationServiceImpl::current()->AddObserver(observer, type, source);
70 NotificationServiceImpl* service = NotificationServiceImpl::current();
78 // NotificationService::current. If we've constructed an object with a
80 // service, and we reach prgram exit, then calling current() below could try
88 NotificationServiceImpl* service = NotificationServiceImpl::current();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCollection.cpp 264 for (Node* current = descendent; current; current = current->lastChild())
265 descendent = current;
274 ALWAYS_INLINE Node* LiveNodeListBase::iterateForPreviousNode(Node* current) const
279 for (; current; current = previousNode(rootNode, *current, onlyIncludeDirectChildren)) {
281 if (current->isElementNode() && isMatchingElement(static_cast<const LiveNodeList*>(this), toElement(current))
293 Node* current; local
    [all...]

Completed in 933 milliseconds

<<31323334353637383940>>