Searched defs:second (Results 1 - 25 of 284) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/safe_browsing/
H A Dtest_utils.cc16 const FeatureMap& second) {
19 std::map<std::string, double> sorted_second(second.features().begin(),
20 second.features().end());
15 ExpectFeatureMapsAreEqual(const FeatureMap& first, const FeatureMap& second) argument
/external/chromium_org/tools/gyp/test/ninja/normalize-paths-win/
H A Dgyptest-normalize-paths.py29 second = open(test.built_file_path('obj/second.ninja')).read() variable
30 if ('..\\..\\things\\AnotherName.exe' in second or
31 'AnotherName.exe' not in second):
/external/oprofile/pp/
H A Dcommon_option.h33 std::list<std::string> second; member in struct:options::spec
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DPair.java33 public final B second; field in class:Pair
35 public Pair(A first, B second) { argument
37 this.second = second;
/external/chromium/chrome/browser/
H A Dbrowser_commands_unittest.cc28 // Select the second tab.
35 // Navigate to the second tab using the next accelerators.
130 // Select the second tab and make it go forward in a new background tab.
148 TabContents* second = browser()->GetTabContentsAt(2); local
149 EXPECT_EQ(url2, second->GetURL());
150 EXPECT_TRUE(second->controller().CanGoBack());
151 EXPECT_FALSE(second->controller().CanGoForward());
157 CommitPendingLoad(&second->controller());
/external/chromium_org/chrome/browser/extensions/api/dial/
H A Ddial_device_data_unittest.cc14 void ExpectEqual(const DialDeviceData& first, const DialDeviceData& second) { argument
15 EXPECT_EQ(first.device_id(), second.device_id());
16 EXPECT_EQ(first.label(), second.label());
17 EXPECT_EQ(first.device_description_url(), second.device_description_url());
18 EXPECT_EQ(first.response_time(), second.response_time());
19 EXPECT_EQ(first.max_age(), second.max_age());
20 EXPECT_EQ(first.config_id(), second.config_id());
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-931.js36 function second() { sequence += "2"; return "f"; } function
40 var result = (first()[second()](third(), fourth()))
/external/clang/test/SemaCXX/
H A Dnon-empty-class-size-zero.cpp15 int second; member in struct:Y
/external/compiler-rt/BlocksRuntime/tests/
H A Dlocalisglobal.c21 int aresame(void *first, void *second) { argument
23 long *s = (long *)second;
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
H A Dunpoison_tls.cc22 void *second(void *arg) { function
32 assert(0 == pthread_create(&p, 0, second, 0));
/external/v8/test/mjsunit/regress/
H A Dregress-931.js36 function second() { sequence += "2"; return "f"; } function
40 var result = (first()[second()](third(), fourth()))
/external/chromium_org/base/profiler/
H A Dtracked_time_unittest.cc40 Duration second = Duration::FromMilliseconds(kSecondMilliseconds); local
43 EXPECT_EQ(kSecondMilliseconds, second.InMilliseconds());
45 Duration sum = first + second;
/external/chromium_org/chrome/browser/policy/
H A Dexternal_data_fetcher.cc29 const ExternalDataFetcher* second) {
30 if (!first && !second)
32 if (!first || !second)
34 return first->manager_.get() == second->manager_.get() &&
35 first->policy_ == second->policy_;
28 Equals(const ExternalDataFetcher* first, const ExternalDataFetcher* second) argument
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dchrome_finder_unittest.cc55 base::FilePath second = dir.AppendASCII("second"); local
58 existing_paths.push_back(second);
61 rel_paths.push_back(second.BaseName());
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImageSetValue.h72 static inline bool compareByScaleFactor(ImageWithScale first, ImageWithScale second) { return first.scaleFactor < second.scaleFactor; } argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMergeIdenticalElementsCommand.cpp35 MergeIdenticalElementsCommand::MergeIdenticalElementsCommand(PassRefPtr<Element> first, PassRefPtr<Element> second) argument
38 , m_element2(second)
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-complex-arabic-table.hh920 uint16_t second; member in struct:ligature_set_t::ligature_pairs_t
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dhybriddataengine.h45 DataEngineInterface* second)
47 second_(second) {
44 HybridDataEngine(DataEngineInterface* first, DataEngineInterface* second) argument
/external/chromium_org/v8/test/intl/overrides/
H A Ddate.js36 [], {hour: 'numeric', minute: 'numeric', second: 'numeric'});
39 hour: 'numeric', minute: 'numeric', second: 'numeric'});
49 locale, {hour: 'numeric', minute: 'numeric', second: 'numeric'});
52 hour: 'numeric', minute: 'numeric', second: 'numeric'});
61 hour: 'numeric', minute: '2-digit', second: 'numeric'};
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-arabic-table.hh920 uint16_t second; member in struct:ligature_set_t::ligature_pairs_t
/external/icu4c/layout/
H A DExtensionSubtables.cpp21 le_uint16* second = (((le_uint16*)&code) + 1); local
22 return (le_uint32)((SWAPW(*first) << 16) + SWAPW(*second));
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DKerning.java44 private int second; field in class:Kerning
48 return second;
51 public void setSecond(int second) { argument
52 this.second = second;
65 oc.write(second, "second", 0);
71 second = ic.readInt("second", 0);
/external/junit/src/org/junit/runner/manipulation/
H A DFilter.java36 public Filter intersect(Filter second) {
37 return second;
94 * by this Filter and {@code second}
96 public Filter intersect(final Filter second) { argument
97 if (second == this || second == ALL) {
105 && second.shouldRun(description);
110 return first.describe() + " and " + second.describe();
/external/chromium/chrome/browser/password_manager/
H A Dpassword_form_data.cc76 const std::vector<PasswordForm*>& second) {
77 if (first.size() != second.size())
80 for (unsigned int i = 0; i < second.size(); ++i) {
81 const PasswordForm* actual = second[i];
102 std::vector<webkit_glue::PasswordForm>& second) {
108 for (unsigned int i = 0; i < second.size(); ++i) {
109 second_ptr.push_back(&second[i]);
74 ContainsSamePasswordFormsPtr( const std::vector<PasswordForm*>& first, const std::vector<PasswordForm*>& second) argument
100 ContainsSamePasswordForms( std::vector<webkit_glue::PasswordForm>& first, std::vector<webkit_glue::PasswordForm>& second) argument
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Ddevicemanager.h47 Device(const std::string& first, int second) argument
49 id(talk_base::ToString(second)) {
51 Device(const std::string& first, const std::string& second) argument
52 : name(first), id(second) {}

Completed in 2063 milliseconds

1234567891011>>