Searched defs:First (Results 1 - 25 of 90) sorted by relevance

1234

/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfOutlineDictionary_autogen.cpp23 SkPdfDictionary* SkPdfOutlineDictionary::First(SkPdfNativeDoc* doc) { function in class:SkPdfOutlineDictionary
24 SkPdfNativeObject* ret = get("First", "");
32 return get("First", "") != NULL;
H A DSkPdfOutlineItemDictionary_autogen.cpp59 SkPdfDictionary* SkPdfOutlineItemDictionary::First(SkPdfNativeDoc* doc) { function in class:SkPdfOutlineItemDictionary
60 SkPdfNativeObject* ret = get("First", "");
68 return get("First", "") != NULL;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DSelectorExtras.h20 const char *First,
23 II.push_back(&Ctx.Idents.get(First));
32 const char *First = va_arg(argp, const char *); local
33 assert(First && "keyword selectors must have at least one argument");
34 return getKeywordSelectorImpl(Ctx, First, argp);
39 const char *First, ...) {
41 va_start(argp, First);
42 Selector result = getKeywordSelectorImpl(Ctx, First, argp);
49 const char *First, ...) {
53 va_start(argp, First);
19 getKeywordSelectorImpl(ASTContext &Ctx, const char *First, va_list argp) argument
38 getKeywordSelector(ASTContext &Ctx, const char *First, ...) argument
48 lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx, const char *First, ...) argument
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-named-summaries/
H A Dmain.cpp14 struct First struct
19 First(int X, int Y) : function in struct:First
48 First first(12,34);
/external/llvm/lib/Target/Hexagon/
H A DHexagonRemoveSZExtArgs.cpp71 Instruction* First = F.getEntryBlock().begin(); local
72 SI->insertBefore(First);
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfOutlineDictionary_autogen.cpp23 SkPdfDictionary* SkPdfOutlineDictionary::First(SkPdfNativeDoc* doc) { function in class:SkPdfOutlineDictionary
24 SkPdfNativeObject* ret = get("First", "");
32 return get("First", "") != NULL;
H A DSkPdfOutlineItemDictionary_autogen.cpp59 SkPdfDictionary* SkPdfOutlineItemDictionary::First(SkPdfNativeDoc* doc) { function in class:SkPdfOutlineItemDictionary
60 SkPdfNativeObject* ret = get("First", "");
68 return get("First", "") != NULL;
/external/clang/lib/AST/
H A DDeclFriend.cpp64 Decl *First = data().FirstFriend.get(Source); local
65 return First ? cast<FriendDecl>(First) : nullptr;
H A DTemplateBase.cpp394 bool First = true; local
397 if (First)
398 First = false;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_header_extension.cc153 RTPExtensionType RtpHeaderExtensionMap::First() const { function in class:webrtc::RtpHeaderExtensionMap
/external/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h40 static const Position First = 0; member in class:lldb_private::TypeCategoryMap
/external/llvm/lib/Transforms/Utils/
H A DAddDiscriminators.cpp183 Instruction *First = Succ->getFirstNonPHIOrDbgOrLifetime(); local
184 DebugLoc FirstLoc = First->getDebugLoc();
188 // If the first instruction (First) of Succ is at the same file
190 // discriminator for First's location and all the instructions
191 // in Succ that share the same location with First.
206 // Attach this new debug location to First and every
207 // instruction following First that shares the same location.
208 for (BasicBlock::iterator I1(*First), E1 = Succ->end(); I1 != E1;
/external/webrtc/src/system_wrappers/source/
H A Dmap.cc58 while (Erase(First()) == 0)
74 MapItem* MapWrapper::First() const function in class:webrtc::MapWrapper
H A Dmap_no_stl.cc59 if (First())
63 while (Erase(First()) == 0)
117 MapNoStlItem* MapNoStl::First() const function in class:webrtc::MapNoStl
H A Dlist_no_stl.cc63 while (Erase(First()) == 0)
121 ListItem* ListWrapper::First() const function in class:webrtc::ListWrapper
H A Dlist_stl.cc56 while (Erase(First()) == 0)
119 ListItem* ListWrapper::First() const function in class:webrtc::ListWrapper
/external/chromium_org/third_party/webrtc/base/
H A Dwin32toolhelp.h34 // - implement bool First(HANDLE, T*) normally calls a
56 // Moves forward to the next object using the First and Next
57 // pointers. If either First or Next ever indicates an failure
69 incr_ok = Traits::First(snapshot_, &current_);
125 static bool First(HANDLE handle, Type* t) { function in class:rtc::ToolhelpProcessTraits
149 static bool First(HANDLE handle, Type* t) { function in class:rtc::ToolhelpModuleTraits
H A Dwin32toolhelp_unittest.cc38 static bool First(HANDLE handle, TestData* d) { function in class:rtc::Win32ToolhelpTest
136 static bool First(HANDLE handle, Type* t) { function in class:rtc::TestTraits
137 return Win32ToolhelpTest::First(handle, t);
153 static bool First(HANDLE handle, Type* t) { function in class:rtc::BadFirstTraits
172 static bool First(HANDLE handle, Type* t) { function in class:rtc::BadNextTraits
173 return Win32ToolhelpTest::First(handle, t);
/external/clang/lib/Format/
H A DTokenAnnotator.h41 : First(Line.Tokens.front().Tok), Level(Line.Level),
51 First->Previous = nullptr;
52 FormatToken *Current = First;
79 FormatToken *First; member in class:clang::format::AnnotatedLine
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp80 Record *First = nullptr, *Last = nullptr; local
84 First = Last = Base;
106 if (!First && Result.first)
107 First = Result.first;
114 if (!First)
115 First = R;
122 if (First) {
128 OS << Base->getName() << ", " << First->getName() << ", "
132 return std::make_pair(First, Last);
145 << macroName(Root.getName()) << "_RANGE(Base, First, Las
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTextBlob.cpp69 static const RunRecord* First(const SkTextBlob* blob) { function in class:SkTextBlob::RunRecord
116 const RunRecord* run = RunRecord::First(this);
225 : fCurrentRun(RunRecord::First(blob))
471 SkTextBlob::RunRecord::First(reinterpret_cast<const SkTextBlob*>(fStorage.get()));
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h220 bool First; member in class:clang::ento::StoreManager::FindUniqueBinding
224 : Sym(sym), Binding(nullptr), First(true) {}
228 LLVM_EXPLICIT operator bool() { return First && Binding; }
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dexamples.cpp129 namespace First namespace in namespace:PR9668
145 typedef First::Bar<Second::Foo> Special;
148 First namespace in namespace:PR9668
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cc98 unsigned First = (V & 65535) ^ 1; local
99 unsigned Probe = First;
109 return &__ubsan_vptr_hash_set[First];
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h34 SlotIndex First; member in struct:llvm::InterferenceCache::BlockInterference
217 return Current->First.isValid();
223 return Current->First;

Completed in 2223 milliseconds

1234