HomeSort by relevance Sort by last modified time
    Searched refs:GOOGLE_CHECK (Results 1 - 25 of 35) sorted by null

1 2

  /external/protobuf/src/google/protobuf/testing/
googletest.cc 125 GOOGLE_CHECK(mkdir(name_.c_str(), 0777) == 0) << strerror(errno);
160 GOOGLE_CHECK(fd >= 0) << "open: " << strerror(errno);
175 GOOGLE_CHECK(fd >= 0) << "open: " << strerror(errno);
216 GOOGLE_CHECK(active_log_ == NULL);
227 GOOGLE_CHECK(level == ERROR ||
234 GOOGLE_CHECK(active_log_ != NULL);
file.cc 82 GOOGLE_CHECK(ReadFileToString(name, output)) << "Could not read: " << name;
105 GOOGLE_CHECK(file != NULL)
110 GOOGLE_CHECK(fclose(file) == 0)
  /external/protobuf/src/google/protobuf/stubs/
map_util.h 77 GOOGLE_CHECK(it != collection.end()) << "Map key not found: " << key;
87 GOOGLE_CHECK(it != collection.end()) << "Map key not found: " << key;
97 GOOGLE_CHECK(it != collection.end()) << "Map key not found";
107 GOOGLE_CHECK(it != collection.end()) << "Map key not found";
357 GOOGLE_CHECK(InsertIfNotPresent(collection, key, data))
368 GOOGLE_CHECK(InsertIfNotPresent(collection, key, data)) << "duplicate key.";
384 GOOGLE_CHECK(res.second) << "duplicate key: " << key;
682 GOOGLE_CHECK(key_container != NULL);
696 GOOGLE_CHECK(key_container != NULL);
713 GOOGLE_CHECK(key_container != NULL)
    [all...]
common.h 687 #undef GOOGLE_CHECK
713 #define GOOGLE_CHECK(EXPRESSION) \
715 #define GOOGLE_CHECK_OK(A) GOOGLE_CHECK(A)
716 #define GOOGLE_CHECK_EQ(A, B) GOOGLE_CHECK((A) == (B))
717 #define GOOGLE_CHECK_NE(A, B) GOOGLE_CHECK((A) != (B))
718 #define GOOGLE_CHECK_LT(A, B) GOOGLE_CHECK((A) < (B))
719 #define GOOGLE_CHECK_LE(A, B) GOOGLE_CHECK((A) <= (B))
720 #define GOOGLE_CHECK_GT(A, B) GOOGLE_CHECK((A) > (B))
721 #define GOOGLE_CHECK_GE(A, B) GOOGLE_CHECK((A) >= (B))
740 #define GOOGLE_DCHECK(EXPRESSION) while(false) GOOGLE_CHECK(EXPRESSION
    [all...]
strutil.cc 241 GOOGLE_CHECK(result != NULL);
443 GOOGLE_CHECK(dest);
809 GOOGLE_CHECK(i >= 0) << "FastHexToBuffer() wants non-negative integers, not " << i;
    [all...]
  /external/protobuf/src/google/protobuf/
lite_unittest.cc 49 GOOGLE_CHECK(message.optional_int32() == 3);
50 GOOGLE_CHECK(message.optional_int64() == 2);
51 GOOGLE_CHECK(message.optional_string() == "hello");
144 GOOGLE_CHECK(packed_extensions_data == packed_data);
201 GOOGLE_CHECK(parsing_merge.repeated_all_types_size() == 3);
202 GOOGLE_CHECK(parsing_merge.repeatedgroup_size() == 3);
203 GOOGLE_CHECK(parsing_merge.ExtensionSize(
wire_format_lite.cc 377 GOOGLE_CHECK(value.size() <= kint32max);
386 GOOGLE_CHECK(value.size() <= kint32max);
393 GOOGLE_CHECK(value.size() <= kint32max);
401 GOOGLE_CHECK(value.size() <= kint32max);
extension_set.cc 166 GOOGLE_CHECK(type == WireFormatLite::TYPE_MESSAGE ||
282 GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; \
290 GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; \
386 // the don't already exist; instead, just GOOGLE_CHECK-fails.
389 GOOGLE_CHECK(iter == extensions_.end()) << "Extension not found.";
426 GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty).";
433 GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty).";
487 GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty).";
494 GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty).";
619 GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."
    [all...]
message_lite.cc 224 GOOGLE_CHECK(!coded_out.HadError());
repeated_field_reflection_unittest.cc 175 GOOGLE_CHECK(fd_repeated_int64_extension != NULL);
message.cc 107 GOOGLE_CHECK(IsInitialized())
descriptor.cc     [all...]
extension_set_heavy.cc 229 GOOGLE_CHECK(prototype != NULL);
257 GOOGLE_CHECK(output->message_prototype != NULL)
dynamic_message.cc 463 GOOGLE_CHECK(is_prototype());
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 123 GOOGLE_CHECK(!is_closed_);
138 GOOGLE_CHECK(!is_closed_);
154 GOOGLE_CHECK(!is_closed_);
221 GOOGLE_CHECK(!is_closed_);
237 GOOGLE_CHECK(!is_closed_);
gzip_stream.cc 66 GOOGLE_CHECK(output_buffer_ != NULL);
210 GOOGLE_CHECK(input_buffer_ != NULL);
zero_copy_stream_impl_lite.cc 268 GOOGLE_CHECK(backup_bytes_ == 0 && buffer_.get() != NULL)
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 153 GOOGLE_CHECK(child_handle_ != NULL) << "Must call Start() first.";
298 GOOGLE_CHECK(pipe(stdin_pipe) != -1);
299 GOOGLE_CHECK(pipe(stdout_pipe) != -1);
parser.cc 368 GOOGLE_CHECK(!location_->has_leading_comments());
369 GOOGLE_CHECK(!location_->has_trailing_comments());
    [all...]
command_line_interface.cc 732 GOOGLE_CHECK(pool.BuildFile(file) != NULL);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_file.cc 114 GOOGLE_CHECK(file_proto_desc)
123 GOOGLE_CHECK(dynamic_file_proto.get() != NULL);
124 GOOGLE_CHECK(dynamic_file_proto->ParseFromString(file_data));
130 GOOGLE_CHECK(CollectExtensions(*dynamic_file_proto, extensions))
java_name_resolver.cc 90 GOOGLE_CHECK(full_name.find('.') == string::npos);
  /external/protobuf/python/google/protobuf/pyext/
repeated_composite_container.cc 73 GOOGLE_CHECK((self)->owner.get() == NULL); \
74 GOOGLE_CHECK((self)->message == NULL); \
75 GOOGLE_CHECK((self)->parent_field == NULL); \
76 GOOGLE_CHECK((self)->parent == NULL); \
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 277 GOOGLE_CHECK(output.get());
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc     [all...]

Completed in 583 milliseconds

1 2