/external/chromium/chrome/browser/net/ |
load_timing_observer.cc | 78 return &it->second; 183 if (!it->second.connect_start.is_null()) { 184 timing.connect_start = TimeTicksToOffset(it->second.connect_start, 187 if (!it->second.connect_end.is_null()) 188 timing.connect_end = TimeTicksToOffset(it->second.connect_end, record); 189 if (!it->second.dns_start.is_null()) 190 timing.dns_start = TimeTicksToOffset(it->second.dns_start, record); 191 if (!it->second.dns_end.is_null()) 192 timing.dns_end = TimeTicksToOffset(it->second.dns_end, record); 193 if (!it->second.ssl_start.is_null() [all...] |
/cts/tests/assets/webkit/ |
test_secondPage.html | 17 <title>Second page</title> 19 <h1>Second page</h1>
|
/external/chromium/chrome/browser/prefs/ |
pref_value_map.cc | 22 *value = entry->second; 33 *value = entry->second; 45 if (Value::Equals(entry->second, value)) 47 delete entry->second; 48 entry->second = value_ptr.release(); 59 delete entry->second; 116 if (!this_pref->second->Equals(other_pref->second))
|
/external/chromium_org/chrome/browser/ |
icon_manager.cc | 44 return LookupIconFromGroup(it->second, size); 53 return it->second; 87 gfx::Image* result = LookupIconFromGroup(group, rit->second.size); 108 const ClientRequest& client_request = rit->second; 114 if (it != icon_cache_.end() && result && it->second) { 115 if (it->second != result) { 116 it->second->SwapRepresentations(result); 118 result = it->second;
|
/external/chromium_org/chrome/browser/ui/gtk/ |
accelerator_utils_gtk.cc | 15 if (iter->second.key_code() == accelerator.key_code() && 16 iter->second.modifiers() == accelerator.modifiers())
|
/external/chromium_org/chrome/service/cloud_print/ |
printer_job_queue_handler.cc | 41 bool JobDetails::ordering(const JobDetails& first, const JobDetails& second) { 42 return first.time_remaining_ < second.time_remaining_; 89 job_location->second.retries_) + 0.5); 91 job_location->second.last_retry_ + backoff_time; 151 if (!job_found.second) { 152 if (job_found.first->second.retries_ >= kNumRetriesBeforeAbandonJob) { 157 job_found.first->second.retries_ += 1; 158 job_found.first->second.last_retry_ = time_provider_->GetNow();
|
/external/chromium_org/content/browser/android/ |
date_time_chooser_android.cc | 27 int year, int month, int day, int hour, int minute, int second, int week); 41 int year, int month, int day, int hour, int minute, int second, int week) { 48 value.second = second; 81 int year, int month, int day, int hour, int minute, int second, int week) { 83 dialog_type, year, month, day, hour, minute, second, week); 93 int hour, int minute, int second, int week, double min, double max) { 102 type, year, month, day, hour, minute, second, week, min, max));
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
select-popup-tooltip-test.html | 10 <li> Make sure you can see tool tip text "This is the second option".</li> 15 <option title="This is the second option">option 2</option>
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimatedIntegerOptionalInteger.cpp | 43 animatedInteger.second = 0; 46 animatedInteger.second = static_cast<int>(roundf(secondNumber)); 85 toIntegerPair.second += fromIntegerPair.second; 99 SVGAnimatedIntegerAnimator::calculateAnimatedInteger(m_animationElement, percentage, repeatCount, fromIntegerPair.second, toIntegerPair.second, toAtEndOfDurationIntegerPair.second, animatedIntegerPair.second);
|
SVGAnimatedNumberOptionalNumber.cpp | 41 if (!parseNumberOptionalNumber(string, animatedNumber.first, animatedNumber.second)) { 43 animatedNumber.second = 0; 82 toNumberPair.second += fromNumberPair.second; 96 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromNumberPair.second, toNumberPair.second, toAtEndOfDurationNumberPair.second, animatedNumberPair.second);
|
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/ |
RenderStateCache.cpp | 51 i->second.first->Release(); 57 i->second.first->Release(); 63 i->second.first->Release(); 69 i->second.first->Release(); 99 BlendStateCounterPair &state = i->second; 100 state.second = mCounter++; 113 if (i->second.second < leastRecentlyUsed->second.second) [all...] |
/external/clang/include/clang/AST/ |
SelectorLocationsKind.h | 35 /// "[foo first:1 second:2]" / "-(id)first:(int)x second:(int)y; 41 /// "[foo first: 1 second: 2]" / "-(id)first: (int)x second: (int)y; 55 /// before arguments: "[foo first: 1 second: 2]" 56 /// If false: "[foo first:1 second:2]" 73 /// before arguments: "-(id)first: (int)x second: (int)y;" 74 /// If false: "-(id)first:(int)x second:(int)y;"
|
/external/clang/test/Preprocessor/ |
c99-6_10_3_4_p9.c | 15 showlist(The first, second, and third items.); 16 // CHECK: puts("The first, second, and third items.");
|
/external/clang/test/Sema/ |
annotate.c | 7 int u = __builtin_annotation(z, (char*) 0); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}} 8 int v = __builtin_annotation(z, (char*) L"bar"); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}}
|
/external/compiler-rt/BlocksRuntime/tests/ |
localisglobal.c | 21 int aresame(void *first, void *second) { 23 long *s = (long *)second;
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/ |
unpoison_tls.cc | 22 void *second(void *arg) { function 32 assert(0 == pthread_create(&p, 0, second, 0));
|
/external/junit/src/org/junit/runner/manipulation/ |
Filter.java | 36 public Filter intersect(Filter second) { 37 return second; 94 * by this Filter and {@code second} 96 public Filter intersect(final Filter second) { 97 if (second == this || second == ALL) { 105 && second.shouldRun(description); 110 return first.describe() + " and " + second.describe();
|
/external/kernel-headers/original/linux/hdlc/ |
ioctl.h | 5 unsigned int clock_rate; /* bits per second */ 11 unsigned int clock_rate; /* bits per second */
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
PairTest.java | 19 assertThat(pair.second, equalTo(1)); 26 assertThat(p.second, equalTo("Bar"));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/ |
insert_iter_cv.pass.cpp | 31 assert(r->second == 2.5); 37 assert(r->second == 1.5); 43 assert(r->second == 3.5); 49 assert(r->second == 3.5); 60 assert(r->second == 2.5); 66 assert(r->second == 1.5); 72 assert(r->second == 3.5); 78 assert(r->second == 3.5);
|
insert_iter_rv.pass.cpp | 35 assert(r->second == 2); 41 assert(r->second == 1); 47 assert(r->second == 3); 53 assert(r->second == 3); 65 assert(r->second == 2); 71 assert(r->second == 1); 77 assert(r->second == 3); 83 assert(r->second == 3);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.modifiers/ |
insert_cv.pass.cpp | 31 assert(r->second == 2.5); 37 assert(r->second == 1.5); 43 assert(r->second == 3.5); 49 assert(r->second == 3.5); 60 assert(r->second == 2.5); 66 assert(r->second == 1.5); 72 assert(r->second == 3.5); 78 assert(r->second == 3.5);
|
insert_iter_cv.pass.cpp | 31 assert(r->second == 2.5); 37 assert(r->second == 1.5); 43 assert(r->second == 3.5); 49 assert(r->second == 4.5); 60 assert(r->second == 2.5); 66 assert(r->second == 1.5); 72 assert(r->second == 3.5); 78 assert(r->second == 4.5);
|
insert_iter_rv.pass.cpp | 35 assert(r->second == 2); 41 assert(r->second == 1); 47 assert(r->second == 3); 53 assert(r->second == 2); 65 assert(r->second == 2); 71 assert(r->second == 1); 77 assert(r->second == 3); 83 assert(r->second == 2);
|
insert_rv.pass.cpp | 34 assert(r->second == 2); 40 assert(r->second == 1); 46 assert(r->second == 3); 52 assert(r->second == 3); 63 assert(r->second == 2); 69 assert(r->second == 1); 75 assert(r->second == 3); 81 assert(r->second == 3);
|