HomeSort by relevance Sort by last modified time
    Searched refs:Second (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/clang/include/clang/Lex/
PPCallbacks.h 196 PPCallbacks *First, *Second;
200 : First(_First), Second(_Second) {}
202 delete Second;
209 Second->FileChanged(Loc, Reason, FileType);
216 Second->FileSkipped(ParentFile, FilenameTok, FileType);
229 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, File,
235 Second->EndOfMainFile();
240 Second->Ident(Loc, str);
246 Second->PragmaComment(Loc, Kind, Str);
251 Second->PragmaMessage(Loc, Str)
    [all...]
  /external/markdown/MarkdownTest/Tests_2004/
Ordered and unordered lists.text 59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
  /external/webkit/Source/JavaScriptCore/wtf/
VectorTraits.h 79 template<typename First, typename Second>
80 struct VectorTraits<pair<First, Second> >
83 typedef VectorTraits<Second> SecondTraits;
HashTraits.h 109 template<typename First, typename Second>
110 struct HashTraits<pair<First, Second> > : public PairHashTraits<HashTraits<First>, HashTraits<Second> > { };
  /external/protobuf/src/google/protobuf/stubs/
hash.h 190 template <typename First, typename Second>
191 struct hash<pair<First, Second> > {
192 inline size_t operator()(const pair<First, Second>& key) const {
194 size_t second_hash = hash<Second>()(key.second);
203 inline size_t operator()(const pair<First, Second>& a,
204 const pair<First, Second>& b) const {
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
examples.cpp 140 namespace Second
145 typedef First::Bar<Second::Foo> Special;
  /external/valgrind/main/exp-ptrcheck/tests/
arith.stderr.exp 21 Second arg derived from address 0x........ of 40-byte block alloc'd
42 Second arg derived from address 0x........ of 40-byte block alloc'd
63 Second arg derived from address 0x........ of 40-byte block alloc'd
idiv.stderr.exp 21 Second arg derived from address 0x........ of 40-byte block alloc'd
196 Second arg derived from address 0x........ of 40-byte block alloc'd
221 Second arg derived from address 0x........ of 40-byte block alloc'd
  /frameworks/base/media/libdrm/mobile1/
Android.mk 54 # Second project
  /external/webkit/Source/WebCore/html/
DateComponents.h 44 // * Time type: hour-minute-second-millisecond
45 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond
62 int second() const { return m_second; } function in class:WebCore::DateComponents
71 None, // Suppress the second part and the millisecond part if they are 0.
72 Second, // Always show the second part, and suppress the millisecond part if it is 0.
73 Millisecond // Always show the second part and the millisecond part.
99 // Sets hour, minute, second and millisecond.
101 // Sets year, month, monthDay, hour, minute, second and millisecond.
103 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone
    [all...]
BaseDateAndTimeInputType.cpp 173 return date.toString(DateComponents::Second);
  /external/v8/test/mjsunit/
string-indexof-1.js 64 assertEquals(3, twoByteString.indexOf("\u03a3",3), "Second Sigma");
95 assertEquals(1534, long.indexOf("AJABACA", 511), "Long AJABACA, Second J");
99 assertEquals(1535, long.indexOf(pattern, 512), "Long JABACABA..., Second J");
debug-breakpoints.js 78 // Second test set and clear breakpoints on lines 1, 2 and 3 (position = 0).
164 //Second test set and clear breakpoints on lines 1, 2 and 3 (column = 0).
  /external/clang/include/clang/Sema/
Overload.h 128 /// Second - The second conversion can be an integral promotion,
132 ImplicitConversionKind Second : 8;
215 return Second == ICK_Identity && Third == ICK_Identity;
627 /// \brief Return the second template argument this deduction failure
  /external/v8/test/mjsunit/regress/
regress-155924.js 37 // The following floating-point heap number has a second word similar
45 assertEquals(undefined, foo(), "Second lookup A[bad_float]");
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 138 const Expr *Second) const;
140 const Stmt *First, const Stmt *Second) const;
341 // If there's a second buffer, check it as well.
366 const Expr *Second) const {
368 // buffer, see if the end of the first is greater than the start of the second
379 SVal secondVal = state->getSVal(Second);
396 emitOverlapBug(C, stateTrue, First, Second);
425 First = Second;
426 Second = tmpExpr;
453 // Is the end of the first buffer past the start of the second buffer
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 187 Second = ICK_Identity;
208 if (GetConversionRank(Second) > Rank)
209 Rank = GetConversionRank(Second);
251 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
268 if (Second != ICK_Identity) {
272 OS << GetImplicitConversionName(Second);
301 if (Before.First || Before.Second || Before.Third) {
306 if (After.First || After.Second || After.Third) {
820 ICS.Standard.Second = ICK_Derived_To_Base;
863 ICS.Standard.Second = ICK_Derived_To_Base
    [all...]
SemaStmt.cpp 335 // FIXME: Introduce a second, default-ignored warning for this case?
355 // FIXME: Introduce a second, default-ignored warning for this case?
386 lhs.second->getCaseLoc().getRawEncoding()
387 < rhs.second->getCaseLoc().getRawEncoding())
630 Diag(CaseVals[i].second->getLHS()->getLocStart(),
632 Diag(CaseVals[i-1].second->getLHS()->getLocStart(),
652 CaseStmt *CR = CaseRanges[i].second;
690 CaseStmt *CR = CaseRanges[i].second;
704 OverlapStmt = I->second;
711 OverlapStmt = (I-1)->second;
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/libvpx/vp8/common/arm/neon/
bilinearpredict4x4_neon.asm 69 ;Second pass: 4x4
bilinearpredict8x4_neon.asm 71 ;Second pass: 4x8
  /external/llvm/utils/
codegen-diff 98 Second, you create I<GDB-DISASSEMBLY-FILE> by running B<gdb>, with my patch
108 instruction, with the B<llc> version first, and the B<lli> version second.
  /external/libvpx/vp8/encoder/arm/neon/
fastfdct4x4_neon.asm 69 ;Second for-loop

Completed in 1714 milliseconds

1 2 3