HomeSort by relevance Sort by last modified time
    Searched defs:at_end (Results 1 - 14 of 14) sorted by null

  /external/mesa3d/src/util/
simple_list.h 168 #define at_end(list, elem) ((elem) == (list)) macro
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 51 bool at_end; member in struct:google_breakpad::ELFSymbolIterator::Symbol
83 // at_end() is true when it is called.
116 symbol_.at_end = !cursor_;
156 while(!iterator->at_end) {
  /external/tensorflow/tensorflow/core/framework/
reader_base.cc 104 bool at_end = false; local
107 ReadUpToLocked(remaining, keys, values, &num_records_produced, &at_end);
114 if (!at_end && status.ok() && num_records_produced == 0) {
117 " must set *at_end=true, *num_produced > 0 or return an error.");
121 if (status.ok() && at_end) {
138 bool* at_end) {
142 Status status = ReadLocked(&key, &value, &produced, at_end);
172 bool at_end = false; local
173 Status status = ReadLocked(key, value, &produced, &at_end);
175 if (!at_end && status.ok() && !produced)
    [all...]
  /external/google-breakpad/src/common/
stabs_reader.h 123 bool at_end; member in struct:google_breakpad::StabsReader::EntryIterator::Entry
156 // at_end() is true when it is called.
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
TclUtil.py 27 def at_end(self): member in class:TclLexer
73 if self.at_end():
92 if self.at_end():
99 if self.at_end():
111 while not self.at_end():
118 if self.at_end():
125 elif c == '$' and not self.at_end() and (self.look().isalpha() or
145 if self.at_end() or self.look().isspace():
153 while not self.at_end():
  /external/mesa3d/src/intel/compiler/
brw_fs_builder.h 101 at_end() const function in class:brw::fs_builder
brw_vec4_builder.h 97 at_end() const function in class:brw::vec4_builder
  /external/python/cpython3/Objects/stringlib/
unicode_format.h 673 int at_end; local
713 at_end = self->str.start >= self->str.end;
716 if ((c == '}') && (at_end ||
723 if (at_end && c == '{') {
728 if (!at_end) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
string_format.h 728 int at_end; local
769 at_end = self->str.ptr >= self->str.end;
772 if ((c == '}') && (at_end || (c != *self->str.ptr))) {
777 if (at_end && c == '{') {
782 if (!at_end) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
string_format.h 731 int at_end; local
772 at_end = self->str.ptr >= self->str.end;
775 if ((c == '}') && (at_end || (c != *self->str.ptr))) {
780 if (at_end && c == '{') {
785 if (!at_end) {
    [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-param-util.h 844 bool at_end = false; local
846 (at_end = at_end || std::get<I>(current_) == std::get<I>(end_))...};
848 return at_end;
    [all...]
  /external/harfbuzz_ng/src/
hb-subset-cff-common.hh 433 bool at_end (unsigned int pos) const function in struct:CFF::ParsedCStr
804 if (!str.at_end (pos))
855 if (str.at_end (pos))
  /external/python/cpython2/Objects/stringlib/
string_format.h 728 int at_end; local
769 at_end = self->str.ptr >= self->str.end;
772 if ((c == '}') && (at_end || (c != *self->str.ptr))) {
777 if (at_end && c == '{') {
782 if (!at_end) {
    [all...]
  /external/v8/src/regexp/
jsregexp.h 349 at_end(false),
356 return (at_end == that->at_end) &&
365 at_end |= that->at_end;
399 bool at_end: 1; member in struct:v8::internal::NodeInfo
761 AT_END,
768 return new(on_success->zone()) AssertionNode(AT_END, on_success);
    [all...]

Completed in 826 milliseconds