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

1 2 3 4

  /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/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/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 90 *id = it->first;
143 RTPExtensionType RtpHeaderExtensionMap::First() const {
177 map->Register(extension->type, it->first);
  /external/webrtc/src/system_wrappers/source/
map.cc 58 while (Erase(First()) == 0)
74 MapItem* MapWrapper::First() const
list_no_stl.cc 63 while (Erase(First()) == 0)
121 ListItem* ListWrapper::First() const
list_stl.cc 56 while (Erase(First()) == 0)
119 ListItem* ListWrapper::First() const
map_no_stl.cc 59 if (First())
63 while (Erase(First()) == 0)
90 // 1. Item should be inserted first.
117 MapNoStlItem* MapNoStl::First() const
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32toolhelp.h 13 // Should be included first, but that causes redefinitions.
28 // - implement bool First(HANDLE, T*) normally calls a
50 // Moves forward to the next object using the First and Next
51 // pointers. If either First or Next ever indicates an failure
63 incr_ok = Traits::First(snapshot_, &current_);
119 static bool First(HANDLE handle, Type* t) {
143 static bool First(HANDLE handle, Type* t) {
win32toolhelp_unittest.cc 55 static bool First(HANDLE handle, TestData* d) {
115 bool CheckCallCounters(int first, int next, int fail, int close) {
116 bool match = first_called_ == first && next_called_ == next
121 << first << ", "
153 static bool First(HANDLE handle, Type* t) {
154 return Win32ToolhelpTest::First(handle, t);
170 static bool First(HANDLE handle, Type* t) {
189 static bool First(HANDLE handle, Type* t) {
190 return Win32ToolhelpTest::First(handle, t);
215 // Tests that Next() returns false if the first-pointe
    [all...]
  /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/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...]

Completed in 990 milliseconds

1 2 3 4