Searched defs:second (Results 176 - 200 of 320) sorted by relevance

1234567891011>>

/external/srec/tools/grxmlcompile/
H A Dsub_grph.h67 void AddEntry (int comb, int first, int second) { argument
78 dataPack[3*num+1]= second;
84 int QueryEntry (int first, int second) { argument
88 if (dataPack[3*ii] == first && dataPack[3*ii+1] == second)
/external/bison/src/
H A Dsymtab.c151 location second)
154 complain_at_indent (second, &i, _("%s redeclaration for %s"), what, s->tag);
161 location second)
164 complain_at_indent (second, &i, _("%s redeclaration for <%s>"), what, s->tag);
520 user_token_number_redeclaration (int num, symbol *first, symbol *second) argument
524 second step, via a traversal of the symbol table sorted on tag.
528 if (location_cmp (first->location, second->location) > 0)
531 first = second;
532 second = tmp;
534 complain_at_indent (second
150 symbol_redeclaration(symbol *s, const char *what, location first, location second) argument
160 semantic_type_redeclaration(semantic_type *s, const char *what, location first, location second) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/memory/
H A Doom_priority_manager.cc421 // than |second|.
423 TabStats second) {
425 if (first.is_selected != second.is_selected)
430 if (first.is_reloadable_ui != second.is_reloadable_ui)
434 if (first.is_pinned != second.is_pinned)
439 if (first.is_app != second.is_app)
443 if (first.is_playing_audio != second.is_playing_audio)
454 return first.last_active > second.last_active;
504 || it->second != chrome::kLowestRendererOomScore) {
610 bool inserted = already_seen.insert(iterator->renderer_handle).second;
422 CompareTabStats(TabStats first, TabStats second) argument
[all...]
/external/chromium_org/chrome/browser/ui/find_bar/
H A Dfind_bar_host_browsertest.cc340 gfx::Rect first, second, first_reverse; local
347 kFwd, kIgnoreCase, NULL, &second);
350 // be the same even for second search.
351 ASSERT_EQ(first.y(), second.y());
352 ASSERT_EQ(first.bottom(), second.bottom());
353 ASSERT_LT(first.x(), second.x());
354 ASSERT_LT(first.right(), second.right());
599 // active match, the second one is after it. This verifies that refining a
1124 // Create a second tab.
1205 // Now create a second ta
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dpreferences_browsertest.cc64 bool operator==(const base::Value& first, const base::Value& second) { argument
65 return first.Equals(&second);
/external/chromium_org/content/browser/renderer_host/input/
H A Dinput_router_impl_unittest.cc107 const ui::TouchEvent& second) {
108 if (first.type() != second.type())
110 if (first.location() != second.location())
112 if (first.touch_id() != second.touch_id())
114 if (second.time_stamp().InSeconds() != first.time_stamp().InSeconds())
125 const ui::TouchEvent* second = set[i]; local
126 bool equivalent = TouchEventsAreEquivalent(*first, *second);
521 // Check that the ACK sends the second message immediately.
538 // Ack the second event (which had the third coalesced into it).
597 // The second touc
106 TouchEventsAreEquivalent(const ui::TouchEvent& first, const ui::TouchEvent& second) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValue.h238 inline bool compareCSSValuePtr(const RefPtr<CSSValueType>& first, const RefPtr<CSSValueType>& second) argument
240 return first ? second && first->equals(*second) : !second;
244 inline bool compareCSSValuePtr(const RawPtr<CSSValueType>& first, const RawPtr<CSSValueType>& second) argument
246 return first ? second && first->equals(*second) : !second;
250 inline bool compareCSSValuePtr(const Member<CSSValueType>& first, const Member<CSSValueType>& second) argument
252 return first ? second
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryTokenizer.cpp35 static bool twoCharsAreValidEscape(UChar first, UChar second) argument
37 return ((first == '\\') && (second != '\n') && (second != kEndOfFileMarker));
485 UChar second = m_input.nextInputChar(); local
489 return ((isASCIIDigit(second)) || (second == '.' && isASCIIDigit(m_input.peek(1))));
491 return (isASCIIDigit(second));
506 UChar second = m_input.nextInputChar(); local
507 if (isNameStart(first) || twoCharsAreValidEscape(first, second))
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderConverter.cpp448 Length y = pair->second()->convertToLength<FixedConversion | PercentConversion>(state.cssToLengthConversionData());
510 CSSValue* second = list->item(i + 1); local
512 String endQuote = toCSSPrimitiveValue(second)->getStringValue();
526 Length radiusHeight = pair->second()->convertToLength<FixedConversion | PercentConversion>(state.cssToLengthConversionData());
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDateMath.cpp413 static inline double ymdhmsToSeconds(int year, long mon, long day, long hour, long minute, double second) argument
420 return ((days * hoursPerDay + hour) * minutesPerHour + minute) * secondsPerMinute + second;
631 long second = 0; local
681 if (!parseLong(dateString, &newPosStr, 10, &second))
685 if (second < 0 || second > 59)
783 return ymdhmsToSeconds(year, month + 1, day, hour, minute, second) * msPerSecond;
/external/chromium_org/third_party/icu/source/common/
H A Dnormalizer2.cpp73 const UnicodeString &second,
76 if(&first!=&second) {
77 first.append(second);
86 const UnicodeString &second,
89 if(&first!=&second) {
90 first.append(second);
157 const UnicodeString &second,
159 return normalizeSecondAndAppend(first, second, TRUE, errorCode);
163 const UnicodeString &second,
165 return normalizeSecondAndAppend(first, second, FALS
72 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
85 append(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
156 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
162 append(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
168 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UBool doNormalize, UErrorCode &errorCode) const argument
775 normalizeSecondAndAppend(const UNormalizer2 *norm2, UChar *first, int32_t firstLength, int32_t firstCapacity, const UChar *second, int32_t secondLength, UBool doNormalize, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DDataTypes.h396 const Cubic& second() const { return (const Cubic&) pts[3]; } function in struct:CubicPair
402 const Quadratic& second() const { return (const Quadratic&) pts[2]; } function in struct:QuadraticPair
/external/chromium_org/ui/gfx/image/
H A Dimage_skia_operations.cc51 const ImageSkia& second,
54 second_(second),
103 const ImageSkia& second,
105 : BinaryImageSource(first, second, "BlendingImageSource"),
130 const ImageSkia& second)
133 second_(second) {
435 const ImageSkia& second,
437 if (first.isNull() || second.isNull())
440 return ImageSkia(new BlendingImageSource(first, second, alpha), first.size());
446 const ImageSkia& second) {
50 BinaryImageSource(const ImageSkia& first, const ImageSkia& second, const char* source_name) argument
102 BlendingImageSource(const ImageSkia& first, const ImageSkia& second, double alpha) argument
129 SuperimposedImageSource(const ImageSkia& first, const ImageSkia& second) argument
434 CreateBlendedImage(const ImageSkia& first, const ImageSkia& second, double alpha) argument
444 CreateSuperimposedImage( const ImageSkia& first, const ImageSkia& second) argument
[all...]
/external/chromium_org/ui/views/widget/
H A Dwidget_interactive_uitest.cc344 // The test creates two widgets: |first| and |second|.
345 // The View in |first| makes |second| visible, sets capture on it, and starts
346 // a nested loop (like a menu does). The View in |second| terminates the
349 // release event to |second|, to make sure that the release event is
353 Widget* second = CreateTopLevelFramelessPlatformWidget(); local
355 View* container = new NestedLoopCaptureView(second);
358 second->SetContentsView(new ExitLoopOnRelease());
366 base::Unretained(second),
726 focus_listener.focus_changes().back().second);;
827 // Create second widge
[all...]
/external/chromium_org/v8/src/
H A Dscanner.cc1102 // Previous token is either '/' or '/=', in the second case, the
1323 bool DuplicateFinder::Match(void* first, void* second) { argument
1330 byte* s2 = reinterpret_cast<byte*>(second);
/external/chromium_org/v8/test/cctest/
H A Dtest-macro-assembler-x64.cc741 int second) {
744 __ movl(rdx, Immediate(second));
746 __ movl(r8, Immediate(first + second));
763 __ SmiAddConstant(r9, rcx, Smi::FromInt(second));
767 __ SmiAddConstant(rcx, rcx, Smi::FromInt(second));
778 __ SmiAddConstant(r9, rcx, Smi::FromInt(second), mode, exit);
783 __ SmiAddConstant(rcx, rcx, Smi::FromInt(second), mode, exit);
795 __ SmiAddConstant(rcx, rcx, Smi::FromInt(second), mode, &done);
963 int second) {
965 __ Move(rdx, Smi::FromInt(second));
737 SmiAddTest(MacroAssembler* masm, Label* exit, int id, int first, int second) argument
959 SmiSubTest(MacroAssembler* masm, Label* exit, int id, int first, int second) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp495 const llvm::APSInt &second = IntType.convert(*RHSValue); local
499 newRHS = BasicVals.evalAPSInt(BO_Add, first, second);
501 newRHS = BasicVals.evalAPSInt(BO_Sub, first, second);
/external/eigen/Eigen/src/Core/
H A DGenericPacketMath.h315 * of \a first and \a Offset first elements of \a second.
322 * - second = {s0,s1,s2,s3}
330 inline void palign(PacketType& first, const PacketType& second) argument
332 palign_impl<Offset,PacketType>::run(first,second);
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DPacketMath.h480 static EIGEN_STRONG_INLINE void run(Packet4f& first, const Packet4f& second) argument
483 first = vec_sld(first, second, Offset*4);
490 static EIGEN_STRONG_INLINE void run(Packet4i& first, const Packet4i& second) argument
493 first = vec_sld(first, second, Offset*4);
/external/guava/guava-tests/test/com/google/common/testing/
H A DNullPointerTesterTest.java179 * normalNullable: only second param is Nullable
212 public void reactToNullParameters(Object first, Object second) { argument
216 if (second == null) {
222 public void normalNormal(String first, Integer second) { argument
223 reactToNullParameters(first, second);
226 /** Two-arg method with the second param Nullable. */
227 public void normalNullable(String first, @Nullable Integer second) { argument
228 reactToNullParameters(first, second);
232 public void nullableNormal(@Nullable String first, Integer second) { argument
233 reactToNullParameters(first, second);
237 nullableNullable( @ullable String first, @Nullable Integer second) argument
[all...]
/external/icu/icu4c/source/common/
H A Dnormalizer2.cpp73 const UnicodeString &second,
76 if(&first!=&second) {
77 first.append(second);
86 const UnicodeString &second,
89 if(&first!=&second) {
90 first.append(second);
157 const UnicodeString &second,
159 return normalizeSecondAndAppend(first, second, TRUE, errorCode);
163 const UnicodeString &second,
165 return normalizeSecondAndAppend(first, second, FALS
72 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
85 append(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
156 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
162 append(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
168 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UBool doNormalize, UErrorCode &errorCode) const argument
775 normalizeSecondAndAppend(const UNormalizer2 *norm2, UChar *first, int32_t firstLength, int32_t firstCapacity, const UChar *second, int32_t secondLength, UBool doNormalize, UErrorCode *pErrorCode) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dmeasfmttest.cpp785 Measure second[] = { local
810 second,
811 LENGTHOF(second),
/external/llvm/include/llvm/ADT/
H A DStringMap.h116 ValueTy second; member in class:llvm::StringMapEntry
119 : StringMapEntryBase(strLen), second() {}
121 : StringMapEntryBase(strLen), second(std::move(V)) {}
127 const ValueTy &getValue() const { return second; }
128 ValueTy &getValue() { return second; }
130 void setValue(const ValueTy &V) { second = V; }
187 (reinterpret_cast<char*>(&EPtr->second) -
294 return it->second;
340 MapEntryTy::Create(KV.first, Allocator, std::move(KV.second));
/external/llvm/include/llvm/IR/
H A DValueMap.h130 return I != Map.end() ? I->second : ValueT();
138 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
139 return std::make_pair(iterator(map_result.first), map_result.second);
187 // function because ValueMapCVH is constructed with a second parameter.
243 ValueT Target(I->second);
296 ValueT& second; member in struct:llvm::ValueMapIterator::ValueTypeProxy
299 return std::make_pair(first, second);
304 ValueTypeProxy Result = {I->first.Unwrap(), I->second};
346 const ValueT& second; member in struct:llvm::ValueMapConstIterator::ValueTypeProxy
349 return std::make_pair(first, second);
[all...]
/external/skia/experimental/Intersection/
H A DDataTypes.h396 const Cubic& second() const { return (const Cubic&) pts[3]; } function in struct:CubicPair
402 const Quadratic& second() const { return (const Quadratic&) pts[2]; } function in struct:QuadraticPair

Completed in 1560 milliseconds

1234567891011>>