Searched defs:second (Results 101 - 125 of 320) sorted by relevance

1234567891011>>

/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java100 int minute, int second) {
101 aCal.set(year, month, date, hour, minute, second);
99 getTime(int year, int month, int date, int hour, int minute, int second) argument
/external/chromium_org/ash/wm/
H A Dsystem_gesture_event_filter_unittest.cc303 views::Widget* second = views::Widget::CreateWindowWithContextAndBounds( local
305 second->Show();
308 // drag to move |second|. The attempt to move |second| should fail.
310 const gfx::Rect& second_bounds = second->GetWindowBoundsInScreen();
328 second->GetWindowBoundsInScreen().ToString());
/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_pref_provider_unittest.cc470 base::Time second = pref_content_settings_provider.GetLastUsage( local
473 base::TimeDelta delta = second - first;
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_extensions_browser_client.cc78 content::BrowserContext* second) {
80 static_cast<Profile*>(second));
76 IsSameContext( content::BrowserContext* first, content::BrowserContext* second) argument
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/browser/sync/
H A DSyncTestUtil.java73 private static Pair<String, String> newPair(String first, String second) { argument
75 second.toLowerCase(Locale.US).trim());
80 * corresponds to the title under which a given stat_name/stat_value is situated, and the second
/external/chromium_org/extensions/browser/
H A Dtest_extensions_browser_client.cc48 BrowserContext* second) {
50 DCHECK(second);
51 return first == second ||
52 (first == main_context_ && second == incognito_context_) ||
53 (first == incognito_context_ && second == main_context_);
47 IsSameContext(BrowserContext* first, BrowserContext* second) argument
/external/chromium_org/extensions/shell/browser/
H A Dshell_extensions_browser_client.cc74 BrowserContext* second) {
75 return first == second;
73 IsSameContext(BrowserContext* first, BrowserContext* second) argument
/external/chromium_org/net/spdy/
H A Dhpack_decoder_test.cc318 // First header with indexed name, second header with string literal
440 string second = a2b_hex("828684be5886a8eb10649cbf"); local
441 header_set = DecodeBlockExpectingSuccess(second);
580 string second = a2b_hex("4883640effc1c0bf"); local
581 header_set = DecodeBlockExpectingSuccess(second);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DFontFaceCache.cpp129 static inline bool compareFontFaces(CSSSegmentedFontFace* first, CSSSegmentedFontFace* second, FontTraits desiredTraits) argument
132 const FontTraits& secondTraits = second->traits();
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DDateTimeFieldsState.h63 unsigned second() const { return m_second; } function in class:blink::DateTimeFieldsState
83 void setSecond(unsigned second) { m_second = second; } argument
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLSrcsetParser.cpp41 static bool compareByDensity(const ImageCandidate& first, const ImageCandidate& second) argument
43 return first.density() < second.density();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.h81 static inline bool compareByStart(const InlineTextBox* first, const InlineTextBox* second) { return first->start() < second->start(); } argument
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDateComponents.h45 // * Time type: hour-minute-second-millisecond
46 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond
73 int second() const { return m_second; } function in class:blink::DateComponents
84 None, // Suppress the second part and the millisecond part if they are 0.
85 Second, // Always show the second part, and suppress the millisecond part if it is 0.
86 Millisecond // Always show the second part and the millisecond part.
112 // Sets hour, minute, second and millisecond.
114 // Sets year, month, monthDay, hour, minute, second and millisecond.
116 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone.
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp28 static inline FloatPoint midPoint(const FloatPoint& first, const FloatPoint& second) argument
30 return FloatPoint((first.x() + second.x()) / 2.0f, (first.y() + second.y()) / 2.0f);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DUnicodeUtilities.cpp317 // This function returns kNotFound if |first| and |second| contain different Kana letters.
318 // If |first| and |second| contain the same Kana letter
321 static inline size_t compareKanaLetterAndComposedVoicedSoundMarks(const UChar* first, const UChar* firstEnd, const UChar* second, const UChar* secondEnd) argument
325 if (isSmallKanaLetter(*first) != isSmallKanaLetter(*second))
327 if (composedVoicedSoundMark(*first) != composedVoicedSoundMark(*second))
330 ++second;
334 const bool secondIsNotSoundMark = second == secondEnd || !isCombiningVoicedSoundMark(*second);
340 if (*first != *second)
343 ++second;
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DLocaleMacTest.cpp60 DateComponents timeComponents(int hour, int minute, int second, int millisecond) argument
63 date.setMillisecondsSinceMidnight(hour * msPerHour + minute * msPerMinute + second * msPerSecond + millisecond);
96 String formatTime(const String& localeString, int hour, int minute, int second, int millisecond, bool useShortFormat) argument
99 return locale->formatDateTime(timeComponents(hour, minute, second, millisecond), (useShortFormat ? Locale::FormatTypeShort : Locale::FormatTypeMedium));
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dutf16tst.c76 log_err("ERROR: %x is a second surrogate\n", c);
780 UChar second = UTF_SECOND_SURROGATE(s[i]); local
789 if (second != UTF16_TRAIL(s[i]) || second != U16_TRAIL(s[i]) || second != secondresult) {
790 log_err("Failure in second surrogate in 0x%x expected to be 0x%x\n",
/external/chromium_org/third_party/mesa/src/src/glx/tests/
H A Dcreate_context_unittest.cpp288 /* Use zeros in the second half of each attribute pair to try and trick the
291 * Use non-zero in the second half of the last attribute pair to try and
390 GLXContext second = local
394 ASSERT_NE((GLXContext) 0, second);
397 struct glx_context *ctx = (struct glx_context *) second;
/external/chromium_org/third_party/re2/util/
H A Dsparse_array.h246 IndexValue(int index, const Value& value) : second(value), index_(index) {}
249 Value value() const { return second; }
251 // Provide the data in the 'second' member so that the utilities
253 Value second; member in class:re2::SparseArray::IndexValue
329 p = make_pair(set_new(new_value.index_, new_value.second), true);
363 dense_[sparse_to_dense_[i]].second = v;
386 return dense_[sparse_to_dense_[i]].second;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.cc171 void *second = start; local
172 start = FL_Pop(&second);
173 list->PushRange(fetch_count, second, end);
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_rdft_mips.c275 float* second = rdft_wk3ri_second; local
313 // second 8
348 // finish second 8
450 "lwc1 %[f13], 8(%[second]) \n\t"
451 "lwc1 %[f14], 12(%[second]) \n\t"
507 " addiu %[second], %[second], 8 \n\t"
514 [p2_rdft] "=&r" (p2_rdft), [count] "=&r" (count), [second] "+r" (second)
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dvp8_partition_aggregator.cc129 PartitionTreeNode* second; local
132 second = right;
135 second = left;
138 if (second->Cost(penalty) <= first->Cost(penalty)) {
139 second = second->GetOptimalNode(max_size, penalty);
140 // Compare cost estimate for "second" with actual cost for "first".
141 if (second->Cost(penalty) < first->Cost(penalty)) {
142 return second;
/external/chromium_org/tools/relocation_packer/src/
H A Delf_file.cc507 ELF::Phdr* second = orderable[j]; local
510 first->p_offset > second->p_offset)) {
513 std::swap(*first, *second);
658 // Find the last section in the second segment we are coalescing.
/external/chromium_org/ui/ozone/platform/dri/
H A Dgbm_surface_factory.cc36 OverlayCandidatesOzone::OverlaySurfaceCandidate* second = variable
40 overlay = second;
41 } else if (second->plane_z_order == 0) {
/external/chromium_org/url/
H A Durl_canon_internal.h311 unsigned char second = static_cast<unsigned char>(spec[*begin + 2]); local
312 if (!IsHexChar(first) || !IsHexChar(second)) {
318 *unescaped_value = (HexCharToValue(first) << 4) + HexCharToValue(second);

Completed in 8479 milliseconds

1234567891011>>