HomeSort by relevance Sort by last modified time
    Searched defs:second (Results 201 - 225 of 1665) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/dng_sdk/source/
dng_date_time.cpp 68 uint32 second)
75 , fSecond (second)
229 uint32 second)
236 fDateTime.fSecond = second;
285 unsigned second = 0; local
291 &second);
298 (uint32) second);
555 unsigned second = 0; local
563 &second) == 3 &&
579 (uint32) second);
596 unsigned second = 0; local
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorIndexList.h 54 static const DenseIndex second = s; member in struct:Eigen::type2indexpair
62 eigen_assert(val.second == s);
582 (IndexPairList<FirstType, OtherTypes...>().operator[](i).second == value);
590 (IndexPairList<FirstType, OtherTypes...>().operator[](i).second == value);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
HolidayTest.java 109 Date second = h.firstBetween(first, now); local
110 logln("firstBetween: " + first + " and " + now + " is " + second);
111 if (second == null) {
112 second = now;
114 if(second.after(now)) {
115 errln("Error: "+h.getDisplayName()+".firstBetween("+first+", "+now+")="+second);
132 + second
134 + h.isBetween(first, second));
167 c.add(Calendar.SECOND, -1);
301 gcal.add(Calendar.SECOND, 1)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
HolidayTest.java 108 Date second = h.firstBetween(first, now); local
109 logln("firstBetween: " + first + " and " + now + " is " + second);
110 if (second == null) {
111 second = now;
113 if(second.after(now)) {
114 errln("Error: "+h.getDisplayName()+".firstBetween("+first+", "+now+")="+second);
131 + second
133 + h.isBetween(first, second));
166 c.add(Calendar.SECOND, -1);
300 gcal.add(Calendar.SECOND, 1)
    [all...]
  /external/libchrome/base/time/
time.h 426 int second; // Second within the current minute (0-59 plus leap member in struct:base::Time::Exploded
428 int millisecond; // Milliseconds within the current second (0-999)
471 // having a 1 second resolution, which agrees with
816 // Returns the frequency of the TSC in ticks per second, or 0 if it hasn't
  /external/llvm/include/llvm/ADT/
StringMap.h 125 ValueTy second; member in class:llvm::StringMapEntry
128 : StringMapEntryBase(strLen), second() {}
131 : StringMapEntryBase(strLen), second(std::forward<InitTy>(InitVals)...) {}
137 const ValueTy &getValue() const { return second; }
138 ValueTy &getValue() { return second; }
140 void setValue(const ValueTy &V) { second = V; }
326 return it->second;
333 return emplace_second(Key).first->second;
365 return emplace_second(KV.first, std::move(KV.second));
  /external/llvm/include/llvm/IR/
ValueMap.h 125 return Where->second.get();
162 return I != Map.end() ? I->second : ValueT();
169 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
170 return std::make_pair(iterator(MapResult.first), MapResult.second);
175 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
176 return std::make_pair(iterator(MapResult.first), MapResult.second);
224 // function because ValueMapCVH is constructed with a second parameter.
283 ValueT Target(std::move(I->second));
333 ValueT& second; member in struct:llvm::ValueMapIterator::ValueTypeProxy
336 return std::make_pair(first, second);
383 const ValueT& second; member in struct:llvm::ValueMapConstIterator::ValueTypeProxy
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 358 SDValue second; local
404 second = Op.getOperand(1);
405 if (second.getOpcode() != ISD::UNDEF) {
411 second,
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPDate.java 124 /** second member
126 protected int second; field in class:SIPDate
145 this.second == other.second;
158 second = -1;
248 second = javaCal.get(Calendar.SECOND);
276 if (second < 10) {
277 secondString = "0" + second;
279 secondString = "" + second;
    [all...]
  /external/pdfium/xfa/fgas/localization/
fgas_datetime.h 70 uint8_t second = 0,
179 uint8_t second; member in struct:FX_TIME
201 uint8_t second; member in struct:FX_DATETIME::__anon28676::__anon28677
251 uint8_t second = 0,
  /external/skia/src/effects/
SkRRectsGaussianEdgeMaskFilter.cpp 24 SkRRectsGaussianEdgeMaskFilterImpl(const SkRRect& first, const SkRRect& second,
27 , fSecond(second)
207 RRectsGaussianEdgeFP(const SkRRect& first, const SkRRect& second, SkScalar radius)
210 , fSecond(second)
262 // portion of a corner. The second is used everywhere else.
405 const SkRRect& second = edgeFP.second(); variable
410 second.getBounds().centerX(),
411 second.getBounds().centerY());
416 0.5f * second.rect().width()
459 const SkRRect& second() const { return fSecond; } function in class:RRectsGaussianEdgeFP
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringMap.h 37 T.second = InitVal;
122 ValueTy second; member in class:llvm::StringMapEntry
125 : StringMapEntryBase(strLen), second() {}
127 : StringMapEntryBase(strLen), second(V) {}
133 const ValueTy &getValue() const { return second; }
134 ValueTy &getValue() { return second; }
136 void setValue(const ValueTy &V) { second = V; }
201 (reinterpret_cast<char*>(&EPtr->second) -
306 return it->second;
ValueMap.h 137 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
138 return std::make_pair(iterator(map_result.first), map_result.second);
181 // function because ValueMapCVH is constructed with a second parameter.
237 ValueT Target(I->second);
284 ValueT& second; member in struct:llvm::ValueMapIterator::ValueTypeProxy
287 return std::make_pair(first, second);
292 ValueTypeProxy Result = {I->first.Unwrap(), I->second};
334 const ValueT& second; member in struct:llvm::ValueMapConstIterator::ValueTypeProxy
337 return std::make_pair(first, second);
342 ValueTypeProxy Result = {I->first.Unwrap(), I->second};
    [all...]
  /frameworks/base/tests/net/java/android/net/
NetworkStatsTest.java 369 final NetworkStats second = new NetworkStats(TEST_START, 2) local
377 first.combineAllValues(second);
    [all...]
  /libcore/luni/src/test/java/libcore/util/
ZoneInfoDBTest.java 218 ZoneInfo second = data.makeTimeZone(tzId); local
219 assertNotSame(first, second);
221 assertTrue(first.hasSameRules(second));
225 assertFalse(first.getID().equals(second.getID()));
228 assertFalse(first.getRawOffset() == second.getRawOffset());
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 83 private int second; field in class:DateTimeParser.Time
86 public Time(int hour, int minute, int second, int zone) {
89 this.second = second;
95 public int getSecond() { return second; }
291 s = second();
316 final public int second() throws ParseException { method in class:DateTimeParser
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml.go 1131 // Get name: /first(first|second)*/
1200 if !unicode.Is(first, c) && !unicode.Is(second, c) {
1224 if !unicode.Is(first, c) && !unicode.Is(second, c) {
1234 // and second corresponds to NameChar.
1431 var second = &unicode.RangeTable{ var
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
xml.go 1131 // Get name: /first(first|second)*/
1200 if !unicode.Is(first, c) && !unicode.Is(second, c) {
1224 if !unicode.Is(first, c) && !unicode.Is(second, c) {
1234 // and second corresponds to NameChar.
1431 var second = &unicode.RangeTable{ var
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoring.java 161 Element second = children.get(1); local
164 || second.getTagName().equals(TEXT_VIEW);
167 || second.getTagName().equals(IMAGE_VIEW);
226 Element second = children.get(1); local
231 image = second;
233 text = second;
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldAbstractPreferencesTest.java 675 AbstractPreferences second = (AbstractPreferences) pref.node("Second node"); local
679 assertEquals(0, second.childrenNames().length);
681 second.removeNode();
684 second.childrenNames();
736 AbstractPreferences second = (AbstractPreferences) pref.node("Second node"); local
767 second.removeNode();
770 second.node("");
786 AbstractPreferences ap2 = (AbstractPreferences) pref.node("Second node")
854 AbstractPreferences second = (AbstractPreferences) pref.node("Second node\/sub node"); local
    [all...]
  /external/guice/lib/build/
easymock.jar 
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderTest.java 709 Object second = new SubscriptSpan(); local
712 builder.setSpan(second, 0, text.length(), flags);
719 assertEquals(second, spans[1]);
727 Object second = new SubscriptSpan(); local
735 builder.setSpan(second, 2, 4, flagsPriority);
743 assertEquals(second, spans[0]);
754 Object second = new SubscriptSpan(); local
760 builder.setSpan(second, 0, text.length(), flags);
763 builder.removeSpan(second);
779 Object second = new UnderlineSpan() local
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/inspector/
Inspector.java 366 final char second = className.charAt(1); local
368 if (first == 'I' && Character.isUpperCase(second)) {
793 begin.add(Calendar.SECOND, -seconds);
838 end.add(Calendar.SECOND, 3);
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 4 template < class _T1, class _T2 > struct pair { _T2 second; }; member in struct:std::pair
70 return ((const actualtype *) this)->second;
74 const char *p = ((const actualtype *) this)->second - 2;
214 // CHECK-tokens: Identifier: "second" [4:55 - 4:61] FieldDecl=second:4:55 (Definition)
    [all...]
  /external/curl/lib/
http2.c 340 struct Curl_easy *second = curl_easy_duphandle(data); local
341 if(second) {
345 (void)Curl_close(second);
346 second = NULL;
349 second->req.protop = http;
353 (void)Curl_close(second);
354 second = NULL;
357 Curl_http2_setup_req(second);
358 second->state.stream_weight = data->state.stream_weight;
362 return second;
    [all...]

Completed in 1322 milliseconds

1 2 3 4 5 6 7 891011>>