HomeSort by relevance Sort by last modified time
    Searched defs:First (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfOutlineDictionary_autogen.cpp 23 SkPdfDictionary* SkPdfOutlineDictionary::First(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("First", "");
32 return get("First", "") != NULL;
SkPdfOutlineItemDictionary_autogen.cpp 59 SkPdfDictionary* SkPdfOutlineItemDictionary::First(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("First", "");
68 return get("First", "") != NULL;
  /external/clang/lib/AST/
DeclFriend.cpp 64 Decl *First = data().FirstFriend.get(Source);
65 return First ? cast<FriendDecl>(First) : nullptr;
TemplateBase.cpp 394 bool First = true;
397 if (First)
398 First = false;
  /external/lldb/test/functionalities/data-formatter/data-formatter-named-summaries/
main.cpp 14 struct First
19 First(int X, int Y) :
48 First first(12,34);
52 first.dummy = 1; // Set break point at this line.
53 first.dummy = 2;
54 first.dummy = 3;
55 first.dummy = 4;
56 first.dummy = 5;
  /external/clang/lib/StaticAnalyzer/Checkers/
SelectorExtras.h 20 const char *First,
23 II.push_back(&Ctx.Idents.get(First));
32 const char *First = va_arg(argp, const char *);
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);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 71 Instruction* First = F.getEntryBlock().begin();
72 SI->insertBefore(First);
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_header_extension.cc 100 *id = it->first;
153 RTPExtensionType RtpHeaderExtensionMap::First() const {
187 map->Register(extension->type, it->first);
  /external/chromium_org/third_party/webrtc/base/
win32toolhelp.h 19 // Should be included first, but that causes redefinitions.
34 // - 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) {
149 static bool First(HANDLE handle, Type* t) {
win32toolhelp_unittest.cc 38 static bool First(HANDLE handle, TestData* d) {
98 bool CheckCallCounters(int first, int next, int fail, int close) {
99 bool match = first_called_ == first && next_called_ == next
104 << first << ", "
136 static bool First(HANDLE handle, Type* t) {
137 return Win32ToolhelpTest::First(handle, t);
153 static bool First(HANDLE handle, Type* t) {
172 static bool First(HANDLE handle, Type* t) {
173 return Win32ToolhelpTest::First(handle, t);
198 // Tests that Next() returns false if the first-pointe
    [all...]
  /external/lldb/include/lldb/DataFormatters/
TypeCategoryMap.h 40 static const Position First = 0;
  /external/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 109 /// with successor B2. The last instruction I1 in B1 and the first
183 Instruction *First = Succ->getFirstNonPHIOrDbgOrLifetime();
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
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 220 bool First;
224 : Sym(sym), Binding(nullptr), First(true) {}
228 LLVM_EXPLICIT operator bool() { return First && Binding; }
  /external/clang/lib/Format/
TokenAnnotator.h 41 : First(Line.Tokens.front().Tok), Level(Line.Level),
51 First->Previous = nullptr;
52 FormatToken *Current = First;
79 FormatToken *First;
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 70 // Returns the first and last non-abstract subrecords
80 Record *First = nullptr, *Last = nullptr;
84 First = Last = Base;
106 if (!First && Result.first)
107 First = Result.first;
114 if (!First)
115 First = R;
122 if (First) {
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash.cc 78 // * such a collision would have to occur on the *first* bad access,
84 // The first caching layer is a small hash table with no chaining; buckets are
98 unsigned First = (V & 65535) ^ 1;
99 unsigned Probe = First;
108 // just taking the first.
109 return &__ubsan_vptr_hash_set[First];
  /external/chromium_org/third_party/skia/src/core/
SkTextBlob.cpp 69 static const RunRecord* First(const SkTextBlob* blob) {
70 // The first record (if present) is stored following the blob object.
116 const RunRecord* run = RunRecord::First(this);
225 : fCurrentRun(RunRecord::First(blob))
336 // the first allocation also includes blob storage
471 SkTextBlob::RunRecord::First(reinterpret_cast<const SkTextBlob*>(fStorage.get()));
  /external/clang/include/clang/Lex/
PPCallbacks.h 325 PPCallbacks *First, *Second;
329 : First(_First), Second(_Second) {}
332 delete First;
338 First->FileChanged(Loc, Reason, FileType, PrevFID);
345 First->FileSkipped(ParentFile, FilenameTok, FileType);
351 return First->FileNotFound(FileName, RecoveryPath) ||
360 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled,
370 First->moduleImport(ImportLoc, Path, Imported);
375 First->EndOfMainFile();
380 First->Ident(Loc, str)
    [all...]
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 54 return std::make_pair(iterator(this, CachedRangeQuery.Result.first),
63 return std::make_pair(iterator(this, Res.first), iterator(this, Res.second));
138 return std::make_pair(Local.first, Local.second);
144 if (Loaded.first == Loaded.second)
145 return std::make_pair(Local.first, Local.second);
150 if (Local.first == Local.second)
151 return std::make_pair(int(Loaded.first)-TotalLoaded,
155 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second);
210 First = PreprocessedEntities.begin();
216 // whether we get the first macro expansion or its containing macro
    [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 298 bool First = true;
300 if (First)
301 First = false;
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
examples.cpp 129 namespace First
145 typedef First::Bar<Second::Foo> Special;
148 First
277 template class BasicStringPiece<int>; // expected-note {{explicit instantiation first required here}}
291 extern template class BasicStringPiece<int>; // expected-note {{explicit instantiation first required here}}
298 extern template class BasicStringPiece<int>; // expected-note {{explicit instantiation first required here}}
  /external/clang/tools/driver/
cc1as_main.cpp 210 bool First = true;
212 ie = Args->filtered_end(); it != ie; ++it, First=false) {
214 if (First)
  /external/llvm/lib/CodeGen/
InterferenceCache.h 34 SlotIndex First;
217 return Current->First.isValid();
220 /// first - Return the starting index of the first interfering range in the
222 SlotIndex first() { function in class:llvm::InterferenceCache::Cursor
223 return Current->First;
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 547 unsigned First = E->getFirstResultSlot();
549 OS << " #" << First+i;
633 PFsByName[I->first->getName()] = I->second;
675 // first argument.
686 OS << ", Result[NextRes+" << i << "].first";
706 Record *SDNode = Entry.first;
  /external/openfst/src/include/fst/
add-on.h 84 A1 *First() const { return a1_; }

Completed in 506 milliseconds

1 2 3