Searched refs:current (Results 176 - 200 of 3914) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScanner.h44 // against the characters ahead of the current input pointer, and returns true
100 // current input pointer.
188 const LChar* current = m_data.characters8; local
189 ::skipWhile<LChar, LCharPredicateAdapter<characterPredicate> >(current, m_end.characters8);
190 return Run(position(), current, m_is8Bit);
192 const UChar* current = m_data.characters16; local
193 ::skipWhile<UChar, characterPredicate>(current, m_end.characters16);
194 return Run(position(), reinterpret_cast<Position>(current), m_is8Bit);
201 const LChar* current = m_data.characters8; local
202 ::skipUntil<LChar, LCharPredicateAdapter<characterPredicate> >(current, m_en
205 const UChar* current = m_data.characters16; local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadDispatcher.cpp22 Platform::current()->sampleGamepads(gamepads);
55 Platform::current()->startListening(WebPlatformEventGamepad, this);
60 Platform::current()->stopListening(WebPlatformEventGamepad);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DFileMetadata.cpp61 if (!blink::Platform::current()->fileUtilities()->getFileInfo(path, webFileInfo))
71 return blink::Platform::current()->fileUtilities()->directoryName(path);
76 return blink::Platform::current()->fileUtilities()->filePathToURL(path);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextRunIterator.h59 UChar current() const { return (*m_textRun)[m_offset]; } function in class:blink::TextRunIterator
60 WTF::Unicode::Direction direction() const { return atEnd() ? WTF::Unicode::OtherNeutral : WTF::Unicode::direction(current()); }
61 bool atParagraphSeparator() const { return current() == '\n'; }
/external/chromium_org/v8/test/mjsunit/
H A Djson-stringify-recursive.js32 var current = {};
33 current.a = a;
34 a = current;
/external/glide/library/src/main/java/com/bumptech/glide/manager/
H A DRequestManagerRetriever.java78 RequestManagerFragment current = (RequestManagerFragment) fm.findFragmentByTag(TAG);
79 if (current == null) {
80 current = new RequestManagerFragment();
81 fm.beginTransaction().add(current, TAG).commitAllowingStateLoss();
88 RequestManager requestManager = current.getRequestManager();
91 current.setRequestManager(requestManager);
98 SupportRequestManagerFragment current = (SupportRequestManagerFragment) fm.findFragmentByTag(TAG);
99 if (current == null) {
100 current = new SupportRequestManagerFragment();
101 fm.beginTransaction().add(current, TA
[all...]
/external/iputils/
H A Dtftpsubs.c40 server. Written originally with multiple buffers in mind, but current
72 static int current; /* index of buffer in use */ variable
90 current = 0;
97 /* Have emptied current buffer by sending to net and getting ack.
104 bfs[current].counter = BF_FREE; /* free old one */
105 current = !current; /* "incr" current */
107 b = &bfs[current]; /* look at new buffer */
169 bfs[current]
[all...]
/external/chromium_org/content/renderer/
H A Drender_view_impl_android.cc39 cc::TopControlsState current = cc::BOTH; local
40 compositor_->UpdateTopControlsState(constraints, current, animate);
46 TopControlsState current,
50 cc::TopControlsState current_cc = ContentToCcTopControlsState(current);
60 cc::TopControlsState current = delta.height < 0 ? cc::SHOWN : cc::HIDDEN; local
62 current,
45 UpdateTopControlsState(TopControlsState constraints, TopControlsState current, bool animate) argument
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java82 * Gets the current value.
84 * @return the current value
125 * if the current value is <a href="#bitEquals">bitwise equal</a>
141 * if the current value is <a href="#bitEquals">bitwise equal</a>
161 * Atomically adds the given value to the current value.
168 long current = value;
169 double currentVal = longBitsToDouble(current);
172 if (updater.compareAndSet(this, current, next)) {
179 * Atomically adds the given value to the current value.
186 long current
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_helper_browsertest.h27 base::MessageLoop::current()->Run();
35 base::MessageLoop::current()->Quit();
/external/chromium_org/chrome/browser/chromeos/login/test/
H A Dwizard_in_process_browser_test.cc46 base::MessageLoopForUI::current()->DeleteSoon(FROM_HERE, host_);
48 base::MessageLoopForUI::current()->RunUntilIdle();
/external/chromium_org/chromeos/dbus/
H A Dfake_lorgnette_manager_client.cc27 base::MessageLoop::current()->PostTask(FROM_HERE,
36 base::MessageLoop::current()->PostTask(FROM_HERE,
/external/chromium_org/content/renderer/service_worker/
H A Dembedded_worker_context_message_filter.cc17 : main_thread_loop_proxy_(base::MessageLoopProxy::current()),
18 thread_safe_sender_(ChildThread::current()->thread_safe_sender()) {}
/external/chromium_org/net/base/
H A Ddirectory_lister_unittest.cc35 base::MessageLoop::current()->Quit();
40 base::MessageLoop::current()->Quit();
50 for (size_t previous = 0, current = 1;
51 current < file_list_.size();
52 previous++, current++) {
54 paths_[previous], paths_[current]));
62 for (size_t previous = 0, current = 1;
63 current < file_list_.size();
64 previous++, current++) {
67 !file_list_[current]
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_session_test_util.cc18 base::MessageLoop::current()->AddTaskObserver(this);
22 base::MessageLoop::current()->RemoveTaskObserver(this);
/external/chromium_org/net/websockets/
H A Dwebsocket_frame_parser.cc105 const char* current = start; local
109 if (end - current < 2)
112 uint8 first_byte = *current++;
113 uint8 second_byte = *current++;
124 if (end - current < 2)
127 base::ReadBigEndian(current, &payload_length_16);
128 current += 2;
133 if (end - current < 8)
135 base::ReadBigEndian(current, &payload_length);
136 current
174 const char* current = &buffer_.front() + current_read_pos_; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp124 blink::Platform::current()->currentThread()->removeTaskObserver(this);
236 // elapsedTime will evaluate to false as the current time will be a lot
237 // greater than the current->m_lastDecodedFrameTimeStamp.
242 MemoryCacheEntry* current = m_liveDecodedResources[priority].m_tail; local
243 while (current) {
244 MemoryCacheEntry* previous = current->m_previousInLiveResourcesList;
245 ASSERT(current->m_resource->hasClients());
246 if (current->m_resource->isLoaded() && current->m_resource->decodedSize()) {
248 double elapsedTime = m_pruneFrameTimeStamp - current
277 MemoryCacheEntry* current = m_allResources[i].m_tail; local
298 MemoryCacheEntry* current = m_allResources[i].m_tail; local
785 Resource* current = m_allResources[i].m_tail; local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/battery/
H A DBatteryDispatcher.cpp41 Platform::current()->startListening(WebPlatformEventBattery, this);
46 Platform::current()->stopListening(WebPlatformEventBattery);
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLTransactionClient.cpp48 if (Platform::current()->databaseObserver()) {
49 Platform::current()->databaseObserver()->databaseModified(
/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
H A DFontCacheLinux.cpp40 if (Platform::current()->sandboxSupport())
41 Platform::current()->sandboxSupport()->getFallbackFontForCharacter(c, preferredLocale, &webFallbackFont);
/external/chromium_org/third_party/codesighs/
H A Dnm2tsv.c287 Switch* current = NULL; local
311 current = NULL;
335 current = gSwitches[switchLoop];
336 current->mValue = inArgv[loop];
341 current = gSwitches[switchLoop];
354 else if(NULL == current)
365 if(current == &gInputSwitch)
374 outOptions->mInput = fopen(current->mValue, "r");
378 ERROR_REPORT(retval, current->mValue, "Unable to open input file.");
382 outOptions->mInputName = strdup(current
[all...]
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
H A Dprofiler_unittest.js27 return model.children.reduce(function(previous, current) {
28 return previous && modelIsValid(current);
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_message_loop_mac.cc34 base::MessageLoopForUI* loop = base::MessageLoopForUI::current();
45 base::MessageLoop::current()->QuitNow();
/external/droiddriver/
H A DAndroid.mk8 LOCAL_SDK_VERSION := current
/external/llvm/test/MC/Mips/mips32r2/
H A Dinvalid.s1 # Instructions that are valid for the current ISA but should be rejected by the assembler (e.g.

Completed in 458 milliseconds

1234567891011>>