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

1 2 3

  /external/clang/include/clang/Lex/
PPCallbacks.h 263 PPCallbacks *First, *Second;
267 : First(_First), Second(_Second) {}
269 delete Second;
277 Second->FileChanged(Loc, Reason, FileType, PrevFID);
284 Second->FileSkipped(ParentFile, FilenameTok, FileType);
290 Second->FileNotFound(FileName, RecoveryPath);
305 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled,
314 Second->moduleImport(ImportLoc, Path, Imported);
319 Second->EndOfMainFile();
324 Second->Ident(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 112 template<typename First, typename Second>
113 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;
  /frameworks/base/media/libdrm/mobile1/
Android.mk 55 # 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).
  /ndk/tests/build/topological-sort/jni/
Android.mk 10 # 2/ Second, define another static library named 'bar' that depends on
  /external/llvm/lib/CodeGen/
StackColoring.cpp 211 const BlockLifetimeInfo &BlockInfo = BI->second;
322 BlockLifetimeInfo &BlockInfo = BI->second;
332 LocalLiveIn |= I->second.LiveOut;
342 LocalLiveOut |= I->second.LiveIn;
492 std::pair<unsigned, DebugLoc> &VP = VI->second;
505 const AllocaInst *To = MFI->getObjectAllocation(it->second);
758 LiveInterval *Second = Intervals[SecondSlot];
759 assert (!First->empty() && !Second->empty() && "Found an empty range");
762 if (!First->overlaps(*Second)) {
764 First->MergeRangesInAsValue(*Second, First->getValNumInfo(0))
    [all...]
  /external/llvm/test/MC/Mips/
mips64-register-names.s 4 # Second byte of addiu with $zero at rt contains the number of the source
mips-register-names.s 4 # Second byte of addiu with $zero at rt contains the number of the source
  /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/Sema/
SemaOverload.cpp 196 Second = ICK_Identity;
217 if (GetConversionRank(Second) > Rank)
218 Rank = GetConversionRank(Second);
260 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
310 switch (Second) {
452 if (Second != ICK_Identity) {
456 OS << GetImplicitConversionName(Second);
485 if (Before.First || Before.Second || Before.Third) {
493 if (After.First || After.Second || After.Third) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 181 const Expr *Second) const;
185 const Stmt *Second) const;
385 // If there's a second buffer, check it as well.
410 const Expr *Second) const {
415 // buffer, see if the end of the first is greater than the start of the second
427 SVal secondVal = state->getSVal(Second, LCtx);
444 emitOverlapBug(C, stateTrue, First, Second);
471 std::swap(First, Second);
498 // Is the end of the first buffer past the start of the second buffer?
510 emitOverlapBug(C, stateTrue, First, Second);
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 148 /// Second - The second conversion can be an integral promotion,
152 ImplicitConversionKind Second : 8;
235 return Second == ICK_Identity && Third == ICK_Identity;
695 /// \brief Return the second template argument this deduction failure
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
bilinearpredict4x4_neon.asm 69 ;Second pass: 4x4
  /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/openfst/src/include/fst/
add-on.h 85 A2 *Second() const { return a2_; }

Completed in 737 milliseconds

1 2 3