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

1 2 3 4 5 67 8 91011>>

  /external/chromium/net/base/
directory_lister_unittest.cc 27 MessageLoop::current()->Quit();
36 for (size_t previous = 0, current = 1;
37 current < file_list_.size();
38 previous++, current++) {
40 paths_[previous], paths_[current]));
47 for (size_t previous = 0, current = 1;
48 current < file_list_.size();
49 previous++, current++) {
52 !file_util::FileEnumerator::IsDirectory(file_list_[current])) {
56 file_util::FileEnumerator::GetFilename(file_list_[current])));
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
splay.js 240 var current = opt_startNode || this.root_;
241 while (current.right) {
242 current = current.right;
244 return current;
304 var current = this.root_;
306 if (key < current.key) {
307 if (!current.left) {
310 if (key < current.left.key) {
312 var tmp = current.left
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 235 var current = opt_startNode || this.root_;
236 while (current.right) {
237 current = current.right;
239 return current;
299 var current = this.root_;
301 if (key < current.key) {
302 if (!current.left) {
305 if (key < current.left.key) {
307 var tmp = current.left
    [all...]
  /external/chromium_org/v8/benchmarks/spinning-balls/
splay-tree.js 145 var current = opt_startNode || this.root_;
146 while (current.right) {
147 current = current.right;
149 return current;
209 var current = this.root_;
211 if (key < current.key) {
212 if (!current.left) {
215 if (key < current.left.key) {
217 var tmp = current.left
    [all...]
  /external/chromium_org/v8/benchmarks/
splay.js 240 var current = opt_startNode || this.root_;
241 while (current.right) {
242 current = current.right;
244 return current;
304 var current = this.root_;
306 if (key < current.key) {
307 if (!current.left) {
310 if (key < current.left.key) {
312 var tmp = current.left
    [all...]
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 145 var current = opt_startNode || this.root_;
146 while (current.right) {
147 current = current.right;
149 return current;
209 var current = this.root_;
211 if (key < current.key) {
212 if (!current.left) {
215 if (key < current.left.key) {
217 var tmp = current.left
    [all...]
  /external/v8/benchmarks/
splay.js 240 var current = opt_startNode || this.root_;
241 while (current.right) {
242 current = current.right;
244 return current;
304 var current = this.root_;
306 if (key < current.key) {
307 if (!current.left) {
310 if (key < current.left.key) {
312 var tmp = current.left
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.cc 432 const char* current = input; local
439 // 1. Each '++current' statement is followed by check for equality to 'end'.
440 // 3. If 'current' becomes equal to 'end' the function returns or goes to
442 // 4. 'current' is not dereferenced after the 'parsing_done' label.
443 // 5. Code before 'parsing_done' may rely on 'current != end'.
444 if (current == end) return 0.0;
459 if (*current == '+' || *current == '-') {
460 sign = (*current == '-');
461 ++current;
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/importer/v8/
splaytree.js 130 var current = this.root_;
131 while (current.left) {
132 current = current.left;
134 return current;
145 var current = opt_startNode || this.root_;
146 while (current.right) {
147 current = current.right;
149 return current;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelectorList.h 54 const CSSSelector* current = selectorAt(index); local
55 current = next(current);
56 if (!current)
58 return current - m_selectorArray;
80 inline const CSSSelector* CSSSelectorList::next(const CSSSelector* current)
83 while (!current->isLastInTagHistory())
84 current++;
85 return current->isLastInSelectorList() ? 0 : current + 1
    [all...]
  /external/chromium_org/v8/tools/
splaytree.js 147 var current = this.root_;
148 while (current.left) {
149 current = current.left;
151 return current;
162 var current = opt_startNode || this.root_;
163 while (current.right) {
164 current = current.right;
166 return current;
    [all...]
  /external/v8/tools/
splaytree.js 147 var current = this.root_;
148 while (current.left) {
149 current = current.left;
151 return current;
162 var current = opt_startNode || this.root_;
163 while (current.right) {
164 current = current.right;
166 return current;
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Suggestion.java 26 * Gets the source that produced the current suggestion.
31 * Gets the shortcut ID of the current suggestion.
49 * Gets the first text line for the current suggestion.
54 * Gets the second text line for the current suggestion.
59 * Gets the second text line URL for the current suggestion.
64 * Gets the left-hand-side icon for the current suggestion.
71 * Gets the right-hand-side icon for the current suggestion.
78 * Gets the intent action for the current suggestion.
83 * Gets the name of the activity that the intent for the current suggestion will be sent to.
103 * Gets the suggestion log type for the current suggestion. This is logged togethe
    [all...]
  /external/ceres-solver/internal/ceres/
line_search.cc 151 const FunctionSample& current,
154 if (!current.value_is_valid ||
156 max_step_size <= current.x)) {
159 return min(max(current.x * 0.5, min_step_size), max_step_size);
161 CHECK_GT(max_step_size, current.x);
170 // to avoid replicating current.value_is_valid == false
177 << ", current: " << current; local
187 samples.push_back(ValueSample(current.x, current.value))
237 FunctionSample current = ValueAndGradientSample(step_size_estimate, 0.0, 0.0); local
437 FunctionSample current = ValueAndGradientSample(step_size_estimate, 0.0, 0.0); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPatternElement.cpp 180 const SVGPatternElement* current = this; local
181 while (current) {
182 if (!attributes.hasX() && current->hasAttribute(SVGNames::xAttr))
183 attributes.setX(current->xCurrentValue());
185 if (!attributes.hasY() && current->hasAttribute(SVGNames::yAttr))
186 attributes.setY(current->yCurrentValue());
188 if (!attributes.hasWidth() && current->hasAttribute(SVGNames::widthAttr))
189 attributes.setWidth(current->widthCurrentValue());
191 if (!attributes.hasHeight() && current->hasAttribute(SVGNames::heightAttr))
192 attributes.setHeight(current->heightCurrentValue())
    [all...]
SVGLinearGradientElement.cpp 125 SVGGradientElement* current = this; local
127 while (current) {
128 if (!current->renderer())
131 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr))
132 attributes.setSpreadMethod(current->spreadMethodCurrentValue());
134 if (!attributes.hasGradientUnits() && current->hasAttribute(SVGNames::gradientUnitsAttr))
135 attributes.setGradientUnits(current->gradientUnitsCurrentValue());
137 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) {
139 current->gradientTransformCurrentValue().concatenate(transform);
144 const Vector<Gradient::ColorStop>& stops(current->buildStops())
    [all...]
  /external/chromium_org/webkit/browser/quota/
mock_quota_manager.cc 74 for (std::vector<OriginInfo>::const_iterator current = origins_.begin();
75 current != origins_.end();
76 ++current) {
77 if (current->origin == origin &&
78 current->type == type &&
79 current->quota_client_mask & quota_client)
90 for (std::vector<OriginInfo>::const_iterator current = origins_.begin();
91 current != origins_.end();
92 ++current) {
93 if (current->type == type && current->modified >= modified_since
    [all...]
  /external/chromium_org/v8/src/
splay-tree-inl.h 162 Node* current = root_;
163 while (current->right_ != NULL)
164 current = current->right_;
165 locator->bind(current);
174 Node* current = root_;
175 while (current->left_ != NULL)
176 current = current->left_;
177 locator->bind(current);
245 Node* current = root_; local
    [all...]
  /external/v8/src/
splay-tree-inl.h 155 Node* current = root_;
156 while (current->right_ != NULL)
157 current = current->right_;
158 locator->bind(current);
167 Node* current = root_;
168 while (current->left_ != NULL)
169 current = current->left_;
170 locator->bind(current);
238 Node* current = root_; local
    [all...]
  /external/chromium/chrome/browser/instant/
instant_loader_manager.h 24 // Users of InstantLoaderManager need only concern themselves with the current
25 // and pending loaders. The current loader is the loader that if ready is shown
26 // by InstantController. The pending loader is used if the current loader is
27 // ready and update is invoked with a different id. In this case the current
28 // loader is left as current (and it's preview contents stopped) and the newly
30 // MakePendingCurrent should be invoked to make the pending the current loader.
33 // ownership of the current loader by invoking ReleaseCurrentLoader.
39 // Updates the current loader. If the current loader is replaced and should be
50 // Makes the pending loader the current loader. If ownership of the ol
    [all...]
  /external/chromium_org/media/base/
audio_buffer_queue.h 21 // current position can be forwarded to anywhere in the buffered data.
36 // Reads a maximum of |frames| frames into |dest| from the current position.
37 // Returns the number of frames read. The current position will advance by the
43 // Copies up to |frames| frames from current position to |dest|. Returns
44 // number of frames copied. Doesn't advance current position. Starts at
45 // |source_frame_offset| from current position. |dest_frame_offset| specifies
53 // Moves the current position forward by |frames| frames. If |frames| exceeds
57 // Returns the number of frames buffered beyond the current position.
60 // Returns the current timestamp, taking into account current offset. Th
    [all...]
  /external/chromium_org/ui/gl/
gl_context.h 37 // Makes the GL context and a surface current on the current thread.
40 // Releases this GL context and surface as current on the current thread.
43 // Returns true if this context and surface is current. Pass a null surface
44 // if the current surface is not important.
56 // Set swap interval. This context must be current.
59 // Returns space separated list of extensions. The context must be current.
75 // Returns whether the current context supports the named extension. The
76 // context must be current
    [all...]
  /external/chromium_org/base/message_loop/
message_loop_test.cc 71 MessageLoop::current()->QuitWhenIdle();
94 MessageLoop::current()->PostTask(FROM_HERE, Bind(
96 MessageLoop::current()->PostTask(FROM_HERE, Bind(
98 MessageLoop::current()->PostTask(FROM_HERE, Bind(
100 MessageLoop::current()->PostTask(FROM_HERE, Bind(
102 MessageLoop::current()->PostTask(FROM_HERE, Bind(
106 EXPECT_TRUE(MessageLoop::current()->TryPostTask(FROM_HERE, Bind(
119 base::Unretained(MessageLoop::current()),
124 EXPECT_FALSE(MessageLoop::current()->TryPostTask(FROM_HERE, Bind(
129 MessageLoop::current()->PostTask(FROM_HERE, Bind
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
preferences_unittest.cc 21 StringPrefMember* current)
23 current_(current) {
61 StringPrefMember current; local
62 current.Init(prefs::kLanguageCurrentInputMethod, &prefs);
63 current.SetValue("KeyboardB");
65 MyMockInputMethodManager mock_manager(&previous, &current);
72 EXPECT_EQ("KeyboardB", current.GetValue());
  /external/clang/include/clang/AST/
AttrIterator.h 51 /// Current - The current, underlying iterator.
58 mutable Iterator Current;
61 while (!isa<SpecificAttr>(*Current))
62 ++Current;
66 while (Current != I && !isa<SpecificAttr>(*Current))
67 ++Current;
77 specific_attr_iterator() : Current() { }
78 explicit specific_attr_iterator(Iterator i) : Current(i) {
    [all...]

Completed in 862 milliseconds

1 2 3 4 5 67 8 91011>>