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

12345678

/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());
H A Doom_priority_manager.cc61 // than |second|.
63 RendererStats second) {
70 if (first.is_pinned != second.is_pinned)
77 if (abs((first.last_selected - second.last_selected).ToInternalValue()) <
79 return first.last_selected < second.last_selected;
81 return first.memory_used < second.memory_used;
62 CompareRendererStats(RendererStats first, RendererStats second) argument
/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/v8/test/mjsunit/regress/
H A Dregress-931.js36 function second() { sequence += "2"; return "f"; } function
40 var result = (first()[second()](third(), fourth()))
/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/skia/legacy/include/core/
H A DSkPathEffect.h109 (e.g. first(path) + second(path))
110 The reference counts for first and second are both incremented in the constructor,
113 SkSumPathEffect(SkPathEffect* first, SkPathEffect* second) argument
114 : INHERITED(first, second) {}
/external/webkit/Source/WebCore/css/
H A DPair.h40 static PassRefPtr<Pair> create(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second) argument
42 return adoptRef(new Pair(first, second));
47 CSSPrimitiveValue* second() const { return m_second.get(); } function in class:WebCore::Pair
50 void setSecond(PassRefPtr<CSSPrimitiveValue> second) { m_second = second; } argument
54 Pair(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second) argument
55 : m_first(first), m_second(second) { }
/external/webkit/Source/WebCore/editing/
H A DMergeIdenticalElementsCommand.cpp33 MergeIdenticalElementsCommand::MergeIdenticalElementsCommand(PassRefPtr<Element> first, PassRefPtr<Element> second) argument
36 , m_element2(second)
/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) {}
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h12 T2 second; member in struct:std::pair
14 pair() : first(), second() {}
15 pair(const T1 &a, const T2 &b) : first(a), second(b) {}
18 pair(const pair<U1, U2> &other) : first(other.first), second(other.second) {}
/external/icu4c/i18n/
H A Dbocsu.cpp138 u_writeIdenticalLevelRunTwoChars(UChar32 first, UChar32 second, uint8_t *p) { argument
150 p=u_writeDiff(second-first, p);
/external/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h29 unsigned int second; member in struct:llvm::GenericValue::IntPair
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPair.java19 public void __constructor__(Object first, Object second) { argument
20 setFields(realPair, first, second);
30 return realPair.first.hashCode() + realPair.second.hashCode();
38 return realPair.first.equals(other.first) && realPair.second.equals(other.second);
41 private static void setFields(Pair p, Object first, Object second) { argument
47 Field s = Pair.class.getDeclaredField("second");
49 s.set(p, second);
/external/webkit/Source/JavaScriptCore/wtf/
H A DBloomFilter.h86 uint8_t& second = secondSlot(hash); local
89 if (LIKELY(second < maximumCount()))
90 ++second;
97 uint8_t& second = secondSlot(hash); local
99 ASSERT(second);
103 if (LIKELY(second < maximumCount()))
104 --second;
/external/webkit/Source/WebCore/svg/
H A DColorDistance.cpp66 Color ColorDistance::addColorsAndClamp(const Color& first, const Color& second) argument
68 return Color(clampColorValue(first.red() + second.red()),
69 clampColorValue(first.green() + second.green()),
70 clampColorValue(first.blue() + second.blue()));
/external/chromium/chrome/browser/extensions/
H A Dconvert_web_app_unittest.cc65 int second, int millisecond) {
72 exploded.second = second;
64 GetTestTime(int year, int month, int day, int hour, int minute, int second, int millisecond) argument
/external/clang/test/Index/
H A Dindex-templates.cpp78 U second; member in struct:Pair
/external/guava/guava/src/com/google/common/base/
H A DObjects.java162 * this can be accomplished with {@code first.or(second)}. That approach also
167 * {@code second} if {@code first} is {@code null} and {@code second} is
169 * @throws NullPointerException if both {@code first} and {@code second} were
173 public static <T> T firstNonNull(@Nullable T first, @Nullable T second) { argument
174 return first != null ? first : checkNotNull(second);

Completed in 1303 milliseconds

12345678