OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurrentEntry
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Support/
YAMLParser.h
261
/// BaseT must have a ValueT* member named
CurrentEntry
and a member function
262
/// increment() which must set
CurrentEntry
to 0 to create an end iterator.
271
assert(Base && Base->
CurrentEntry
&& "Attempted to access end iterator!");
272
return Base->
CurrentEntry
;
276
assert(Base && Base->
CurrentEntry
&&
278
return *Base->
CurrentEntry
;
282
assert(Base && Base->
CurrentEntry
&& "Attempted to access end iterator!");
283
return Base->
CurrentEntry
;
289
return (Base && Other.Base) && Base->
CurrentEntry
290
!= Other.Base->
CurrentEntry
;
[
all
...]
FileSystem.h
848
directory_entry
CurrentEntry
;
880
const directory_entry &operator*() const { return State->
CurrentEntry
; }
881
const directory_entry *operator->() const { return &State->
CurrentEntry
; }
884
return State->
CurrentEntry
== RHS.State->
CurrentEntry
;
[
all
...]
/external/llvm/lib/Support/
YAMLParser.cpp
[
all
...]
Completed in 3120 milliseconds