/external/chromium_org/chrome/browser/search_engines/ |
util.h | 41 // CreateActionsFromCurrentPrepopulateData() (see below) takes in the current 42 // prepopulated URLs as well as the user's current URLs, and returns an instance 47 // (1) Previous prepopulated engines that no longer exist in the current set of 48 // prepopulated engines and thus should be removed from the user's current 56 // The pair of current search engine and its new value. 69 // Given the user's current URLs and the current set of prepopulated URLs, 72 // placing the current default provider on the "to be removed" list. 105 // |resource_keyword_version| should contain the version number of the current 107 // that has been merged into the current keyword data. On exit, this will b [all...] |
/external/chromium_org/chrome/common/ |
thumbnail_score.cc | 85 bool ShouldReplaceThumbnailWith(const ThumbnailScore& current, 87 int current_type = GetThumbnailType(current); 99 double current_interesting_score = 1.0 - current.boring_score; 106 1.0 / (current.redirect_hops_from_dest + 1); 114 replacement.time_at_snapshot - current.time_at_snapshot; 124 // If the current thumbnail doesn't meet basic boringness 126 // current one even if we're using a worse thumbnail type. 127 return current.boring_score >= ThumbnailScore::kThumbnailMaximumBoringness && 135 // The current thumbnail is new and has good properties. 138 // The current thumbnail should be updated [all...] |
/external/chromium_org/media/base/ |
clock.h | 22 // calculate the current media time since the last time SetTime() was called. 42 // Starts the clock and returns the current media time, which will increase 43 // with respect to the current playback rate. 46 // Stops the clock and returns the current media time, which will remain 65 // Returns the current elapsed media time. Returns 0 if SetDuration() has 84 // Updates the reference points based on the current calculated time. 90 // Returns the time elapsed based on the current reference points, ignoring 94 // Translates |time| into the current media time, based on the perspective of 113 // Current accumulated amount of media time. The remaining portion must be 117 // Current playback rate [all...] |
seekable_buffer.cc | 49 // Advance position if we are in the end of the current buffer. 131 // have to account for the offset we are in the current buffer, so take the 133 // current buffer. 136 // Decreases the offset in the current buffer since we are rewinding. 144 // consumed in the current buffer. 149 // The current buffer pointed by current iterator has been consumed. Move 156 // Set the offset into the current buffer to be the buffer size as we 169 // Advances the iterator until we hit the current pointer. 204 // Find the right amount to copy from the current buffer referenced b [all...] |
/external/chromium_org/net/cookies/ |
cookie_monster_store_test.cc | 44 base::MessageLoop::current()->PostTask( 56 base::MessageLoop::current()->PostTask( 82 base::MessageLoop::current()->PostTask(FROM_HERE, callback); 149 base::MessageLoop::current()->PostTask( 161 base::MessageLoop::current()->PostTask( 192 base::MessageLoop::current()->PostTask(FROM_HERE, callback); 202 base::Time current(base::Time::Now()); 210 base::Time expiration_time = current + base::TimeDelta::FromDays(30); 212 (i < num_old_cookies) ? current - base::TimeDelta::FromDays(days_old) : 213 current; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSSelectorList.cpp | 67 CSSParserSelector* current = selectorVector[i].get(); local 68 while (current) { 70 CSSSelector* currentSelector = current->releaseSelector().leakPtr(); 74 current = current->tagHistory(); 76 if (current) 91 CSSSelector* current = m_selectorArray; 92 while (!current->isLastInSelectorList()) 93 ++current; 94 return (current - m_selectorArray) + 1 [all...] |
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/ |
AreaCodeMap.java | 139 * the current language. If the description is not available in the current language an empty 180 int current = 0; local 182 current = (start + end) >>> 1; 183 int currentValue = areaCodeMapStorage.getPrefix(current); 185 return current; 187 current--; 188 end = current; 190 start = current + 1; 193 return current; [all...] |
/external/linux-tools-perf/ |
builtin-timechart.c | 91 struct per_pidcomm *current; member in struct:per_pid 194 p->current = c; 199 p->current = c; 208 p->current = c; 219 if (pp->current && pp->current->comm && !p->current) 220 pid_set_comm(pid, pp->current->comm); 223 if (p->current) { 224 p->current->start_time = timestamp [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/dummy/ |
SDL_nullvideo.c | 54 static SDL_Surface *DUMMY_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); 161 SDL_Surface *DUMMY_SetVideoMode(_THIS, SDL_Surface *current, 179 if ( ! SDL_ReallocFormat(current, bpp, 0, 0, 0, 0) ) { 187 current->flags = flags & SDL_FULLSCREEN; 188 this->hidden->w = current->w = width; 189 this->hidden->h = current->h = height; 190 current->pitch = current->w * (bpp / 8); 191 current->pixels = this->hidden->buffer; 194 return(current); [all...] |
/external/v8/src/ |
heap-profiler.cc | 55 Isolate* isolate = Isolate::Current(); 63 Isolate* isolate = Isolate::Current(); 72 ASSERT(Isolate::Current()->heap_profiler() != NULL); 73 return Isolate::Current()->heap_profiler()->TakeSnapshotImpl(name, 82 ASSERT(Isolate::Current()->heap_profiler() != NULL); 83 return Isolate::Current()->heap_profiler()->TakeSnapshotImpl(name, 141 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); 148 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); 155 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); 162 HeapProfiler* profiler = Isolate::Current()->heap_profiler() [all...] |
/frameworks/av/include/cpustats/ |
ThreadCpuUsage.h | 25 // Track CPU usage for the current thread. 34 // the methods of this class may only be called by the current thread 57 // Return whether currently tracking CPU usage by current thread 60 // Enable tracking of CPU usage by current thread; 65 // Disable tracking of CPU usage by current thread; 89 // The units are CPU nanoseconds consumed by current thread. 101 // The units are CPU nanoseconds consumed by current thread. 111 // Return current clock frequency for specified CPU, in kHz. 118 // current CPU number and clock frequency periodically. 131 uint32_t mCurrentkHz[MAX_CPU]; // current CPU frequency in kHz, not static to avoid a rac [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
Path.java | 103 Path current = sRoot; local 105 current = current.getChild(segments[i]); 107 return current; 190 Path current = this; local 191 if (current == sRoot) { 194 while (current.mParent != sRoot) { 195 current = current.mParent; 197 return current; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
control_external.h | 177 * read the current values of integer type 181 * read the current values of integer64 type 185 * read the current values of enumerated type 189 * read the current values of bytes type 194 * read the current values of iec958 type 198 * update the current values of integer type with the given values 202 * update the current values of integer64 type with the given values 206 * update the current values of enumerated type with the given values 210 * update the current values of bytes type with the given values 215 * update the current values of iec958 type with the given value [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/ |
control_external.h | 177 * read the current values of integer type 181 * read the current values of integer64 type 185 * read the current values of enumerated type 189 * read the current values of bytes type 194 * read the current values of iec958 type 198 * update the current values of integer type with the given values 202 * update the current values of integer64 type with the given values 206 * update the current values of enumerated type with the given values 210 * update the current values of bytes type with the given values 215 * update the current values of iec958 type with the given value [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/ |
control_external.h | 177 * read the current values of integer type 181 * read the current values of integer64 type 185 * read the current values of enumerated type 189 * read the current values of bytes type 194 * read the current values of iec958 type 198 * update the current values of integer type with the given values 202 * update the current values of integer64 type with the given values 206 * update the current values of enumerated type with the given values 210 * update the current values of bytes type with the given values 215 * update the current values of iec958 type with the given value [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
ActivityMenuListener.java | 87 String current = configuration.getActivity(); local 89 if (current != null) { 91 String label = ConfigurationChooser.getActivityLabel(current, true); 109 current = addActivities(chooser, menu, current, image, preferred); 131 addActivities(chooser, menu, current, image, activities); 141 private static String addActivities(ConfigurationChooser chooser, Menu menu, String current, 149 boolean selected = title.equals(current); 152 current = null; // Only show the first occurrence as selected 160 return current; [all...] |
/external/chromium_org/v8/src/ |
lithium-allocator.cc | 222 // at the current or the immediate next position. 289 UseInterval* current = FirstSearchIntervalForPosition(position); local 295 if (current->start().Value() == position.Value()) { 297 current = first_interval_; 300 while (current != NULL) { 301 if (current->Contains(position)) { 302 current->SplitAt(position, zone); 305 UseInterval* next = current->next(); 310 current = next; 314 UseInterval* before = current; 461 UsePosition* current = first_pos_; local 1527 LiveRange* current = fixed_double_live_ranges_.at(i); local 1535 LiveRange* current = fixed_live_ranges_.at(i); local 1544 LiveRange* current = unhandled_live_ranges_.RemoveLast(); local 2182 LiveRange* current = live_ranges()->at(i); local [all...] |
/external/chromium/base/ |
timer_unittest.cc | 28 MessageLoop::current()->Quit(); 49 MessageLoop::current()->Quit(); 69 MessageLoop::current()->Quit(); 84 MessageLoop::current()->Run(); 96 MessageLoop::current()->DeleteSoon(FROM_HERE, a); 105 MessageLoop::current()->Run(); 118 MessageLoop::current()->Run(); 130 MessageLoop::current()->Run(); 142 MessageLoop::current()->DeleteSoon(FROM_HERE, a); 151 MessageLoop::current()->Run() [all...] |
/external/openfst/src/include/fst/extensions/far/ |
stlist.h | 170 size_t current = heap_.top().second; 171 entry_ = entry_reader_(*streams_[current]); 172 if (!entry_ || !*streams_[current]) { 174 << heap_.top().first << ", file: " << sources_[current]; 217 size_t current = heap_.top().second; 220 ReadType(*(streams_[current]), &key); 221 if (!*streams_[current]) { 223 << sources_[current]; 228 heap_.push(make_pair(key, current)); 231 current = heap_.top().second [all...] |
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeInfoCache.java | 235 AccessibilityNodeInfo current = mCacheImpl.get(rootNodeId); local 236 if (current == null) { 240 SparseLongArray childNodeIds = current.getChildNodeIds(); 279 AccessibilityNodeInfo current = fringe.poll(); local 281 if (!seen.add(current)) { 282 Log.e(LOG_TAG, "Duplicate node: " + current); 287 if (current.isAccessibilityFocused()) { 289 Log.e(LOG_TAG, "Duplicate accessibility focus:" + current); 291 accessFocus = current; 296 if (current.isFocused()) [all...] |
/frameworks/base/docs/html/training/monitoring-device-state/ |
battery-monitoring.jd | 16 <li><a href="#DetermineChargeState">Determine the Current Charging State</a></li> 18 <li><a href="#CurrentLevel">Determine the Current Battery Level</a></li> 31 updates on battery life, checking the current battery level and charging state is a good place to 44 <h2 id="DetermineChargeState">Determine the Current Charging State</h2> 46 <p>Start by determining the current charge status. The {@link android.os.BatteryManager} 52 {@code null} as the receiver as shown in the next snippet, the current battery status intent is 59 <p>You can extract both the current charging status and, if the device is being charged, whether 98 the current charging state and method as described in the previous step.</p> 114 <h2 id="CurrentLevel">Determine the Current Battery Level</h2> 116 <p>In some cases it's also useful to determine the current battery level. You may choose to reduc [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_tile.c | 42 unsigned row; /* current source row */ 43 unsigned col; /* current source column */ 73 unsigned row; /* current source row */ 74 unsigned col; /* current source column */ 104 unsigned row; /* current source row */ 105 unsigned col; /* current source column */ 135 unsigned row; /* current source row */ 136 unsigned col; /* current source column */ 166 unsigned row; /* current source row */ 167 unsigned col; /* current source column * [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_rasterpos.c | 363 * of ctx->Current.Raster* fields) could get lifted up into the 379 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL]; 389 ctx->Current.RasterPosValid = GL_FALSE; 395 ctx->Current.RasterPosValid = GL_FALSE; 402 ctx->Current.RasterPosValid = GL_FALSE; 412 ctx->Current.RasterPos[0] = (ndc[0] * ctx->Viewport._WindowMap.m[MAT_SX] 414 ctx->Current.RasterPos[1] = (ndc[1] * ctx->Viewport._WindowMap.m[MAT_SY] 416 ctx->Current.RasterPos[2] = (ndc[2] * ctx->Viewport._WindowMap.m[MAT_SZ] 419 ctx->Current.RasterPos[3] = clip[3]; 422 ctx->Current.RasterPos[3] = CLAMP(ctx->Current.RasterPos[3] [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_tile.c | 42 unsigned row; /* current source row */ 43 unsigned col; /* current source column */ 73 unsigned row; /* current source row */ 74 unsigned col; /* current source column */ 104 unsigned row; /* current source row */ 105 unsigned col; /* current source column */ 135 unsigned row; /* current source row */ 136 unsigned col; /* current source column */ 166 unsigned row; /* current source row */ 167 unsigned col; /* current source column * [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_rasterpos.c | 363 * of ctx->Current.Raster* fields) could get lifted up into the 379 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL]; 389 ctx->Current.RasterPosValid = GL_FALSE; 395 ctx->Current.RasterPosValid = GL_FALSE; 402 ctx->Current.RasterPosValid = GL_FALSE; 412 ctx->Current.RasterPos[0] = (ndc[0] * ctx->Viewport._WindowMap.m[MAT_SX] 414 ctx->Current.RasterPos[1] = (ndc[1] * ctx->Viewport._WindowMap.m[MAT_SY] 416 ctx->Current.RasterPos[2] = (ndc[2] * ctx->Viewport._WindowMap.m[MAT_SZ] 419 ctx->Current.RasterPos[3] = clip[3]; 422 ctx->Current.RasterPos[3] = CLAMP(ctx->Current.RasterPos[3] [all...] |