/external/chromium_org/v8/test/webkit/ |
eval-cache-crash.js | 34 with ({a : "second"}) { 35 var second = eval(str)(); 38 shouldBe("second", "'second'");
|
/external/chromium_org/webkit/browser/appcache/ |
appcache_working_set.h | 36 return (it != caches_.end()) ? it->second : NULL; 43 return (it != groups_.end()) ? it->second : NULL; 54 return (it != response_infos_.end()) ? it->second : NULL; 64 return (it != groups_by_origin_.end()) ? &it->second : NULL;
|
/external/clang/test/Index/ |
warning-flags.c | 6 // RUN: c-index-test -test-load-source all -Wno-return-type %s 2>&1|FileCheck -check-prefix=CHECK-SECOND-WARNING %s 7 // RUN: c-index-test -test-load-source-reparse 5 all -Wno-return-type %s 2>&1|FileCheck -check-prefix=CHECK-SECOND-WARNING %s 14 // CHECK-SECOND-WARNING-NOT:control reaches end of non-void 15 // CHECK-SECOND-WARNING: warning: incompatible pointer types returning 'float *' from a function with result type 'int *'
|
/external/markdown/tests/misc/ |
two-spaces.txt | 4 and this is the second from last line
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Pair.java | 33 public final B second; field in class:Pair 35 public Pair(A first, B second) { 37 this.second = second;
|
/external/valgrind/main/massif/tests/ |
peak.c | 10 free(p); // only every second one does.
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
uniq.sed | 18 # back working on the second.
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
spec2.cpp | 3 // Test 2: the second throw succeeds.
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
spec2.cpp | 3 // Test 2: the second throw succeeds.
|
/development/ndk/samples/two-libs/jni/ |
Android.mk | 32 # second lib, which will depend on and include the first one 36 LOCAL_MODULE := libtwolib-second 37 LOCAL_SRC_FILES := second.c
|
/external/chromium/chrome/browser/chromeos/notifications/ |
balloon_view_host.cc | 23 if (!ret.second) 25 return ret.second; 39 callback->second->Run(¶ms.arguments);
|
/external/chromium_org/chrome/browser/history/ |
page_collector.cc | 91 if (found->second.has_body()) { 93 found->second.visit_time(), url, title, found->second.body()); 96 found->second.set_title(title); 112 if (found->second.has_title()) { 114 found->second.visit_time(), url, found->second.title(), body); 117 found->second.set_body(body); 147 while (iter != recent_changes_.rend() && iter->second.Expired(now)) { 148 AddPageData(iter->first, iter->second.visit_time() [all...] |
/external/chromium_org/content/browser/download/ |
rate_estimator.h | 30 // the second variant provides the time that |count| is observed. 34 // Get a rate estimate, in terms of counts/second. The first variant uses the 35 // current time, the second variant provides the time.
|
/external/chromium_org/gpu/command_buffer/client/ |
gpu_memory_buffer_tracker.cc | 38 GPU_DCHECK(result.second); 45 return (it != buffers_.end()) ? it->second : NULL; 51 gfx::GpuMemoryBuffer* buffer = buffer_it->second;
|
/external/chromium_org/native_client_sdk/src/examples/demo/flock/ |
frame_counter.h | 22 // frames have been counted, or at least one second of simulator time has 29 // The current frame rate. Note that this is 0 for the first second in 31 // every second of simulation time or so).
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
drag-with-div-or-image-as-data-image.html | 37 <p>When you drag the first div, the image under the cursor should be of the second image. </p> 38 <p>When you drag the first image, the image under the cursor should be of the second div. </p> 52 <div id="divToUseAsImage"> When a drag is started on the image, this is the div that is used as the drag image! (second div)</div>
|
/external/llvm/test/CodeGen/X86/ |
tail-call-legality.ll | 8 ; As seen by Analysis.cpp: i64 -> i32 is a valid trunc, second i32 passes 27 %second = extractvalue {i64, i32} %whole, 1 30 %res = insertvalue {i32, i32, i32} %tmp, i32 %second, 1
|
/external/openfst/src/script/ |
replace.cc | 28 if (!ArcTypesMatch(*tuples[i].second, *tuples[i+1].second, "Replace")) { 33 if (!ArcTypesMatch(*tuples[0].second, *ofst, "Replace")) return;
|
/external/srtp/ |
timing | 14 # timing.plt
#
# gnuplot script file for plotting the output generated by srtp_driver -t
#
# David A. McGrew
# Cisco Systems, Inc.
#
set xrange [0:2500]
set term pict "Times-Roman" 9
#
# plot authentication-only data
#
set title "Authentication Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:2000]
set output "plot-auth.pict"
plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines
#
# plot encryption-only data
#
set title "Encryption Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set output "plot-enc.pict"
set yrange [0:1200]
plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines
#
# plot encryption and authentication data
#
set title "Encryption and Authentication"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:1000]
set output "plot-enc-auth.pict"
plot "timing.da (…)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
equal_range_const.pass.cpp | 45 assert(std::distance(r.first, r.second) == 1); 47 assert(r.first->second == "thirty"); 49 assert(std::distance(r.first, r.second) == 0); 52 assert(r.first->second == "fifty"); 55 assert(r.first->second == "fiftyA"); 58 assert(r.first->second == "fiftyB"); 81 assert(std::distance(r.first, r.second) == 1); 83 assert(r.first->second == "thirty"); 85 assert(std::distance(r.first, r.second) == 0); 88 assert(r.first->second == "fifty") [all...] |
equal_range_non_const.pass.cpp | 45 assert(std::distance(r.first, r.second) == 1); 47 assert(r.first->second == "thirty"); 49 assert(std::distance(r.first, r.second) == 0); 52 assert(r.first->second == "fifty"); 55 assert(r.first->second == "fiftyA"); 58 assert(r.first->second == "fiftyB"); 81 assert(std::distance(r.first, r.second) == 1); 83 assert(r.first->second == "thirty"); 85 assert(std::distance(r.first, r.second) == 0); 88 assert(r.first->second == "fifty") [all...] |
local_iterators.pass.cpp | 56 assert(i->second == "one"); 59 assert(i->second == "four"); 66 assert(i->second == "two"); 69 assert(i->second == "four"); 76 assert(i->second == "three"); 83 assert(i->second == "four"); 120 assert(i->second == "one"); 123 assert(i->second == "four"); 130 assert(i->second == "two"); 133 assert(i->second == "four") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/ |
copy_alloc.pass.cpp | 57 assert(i->second == "one"); 60 assert(i->second == "four"); 63 assert(i->second == "two"); 66 assert(i->second == "four"); 69 assert(i->second == "three"); 72 assert(i->second == "four"); 111 assert(i->second == "one"); 114 assert(i->second == "four"); 117 assert(i->second == "two"); 120 assert(i->second == "four") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/ |
egrep.pass.cpp | 34 assert(m.prefix().second == m[0].first); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 50 assert(m.prefix().second == m[0].first); 52 assert(m.suffix().first == m[0].second); 53 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 66 assert(m.prefix().second == m[0].first); 68 assert(m.suffix().first == m[0].second); 69 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 82 assert(m.prefix().second == m[0].first) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/ |
arrow.pass.cpp | 24 assert(p->second == 4); 26 p->second = 6; 28 assert(p->second == 6);
|