SYMBOL INDEX (2123 symbols across 176 files) FILE: include/caffe/blob.hpp type caffe (line 15) | namespace caffe { class Blob (line 25) | class Blob { method Blob (line 27) | Blob() method string (line 55) | inline string shape_string() const { method shape (line 72) | inline int shape(int index) const { method num_axes (line 75) | inline int num_axes() const { return shape_.size(); } method count (line 76) | inline int count() const { return count_; } method count (line 86) | inline int count(int start_axis, int end_axis) const { method count (line 104) | inline int count(int start_axis) const { method CanonicalAxisIndex (line 119) | inline int CanonicalAxisIndex(int axis_index) const { method num (line 133) | inline int num() const { return LegacyShape(0); } method channels (line 135) | inline int channels() const { return LegacyShape(1); } method height (line 137) | inline int height() const { return LegacyShape(2); } method width (line 139) | inline int width() const { return LegacyShape(3); } method LegacyShape (line 140) | inline int LegacyShape(int index) const { method offset (line 154) | inline int offset(const int n, const int c = 0, const int h = 0, method offset (line 167) | inline int offset(const vector& indices) const { method Dtype (line 192) | inline Dtype data_at(const int n, const int c, const int h, method Dtype (line 197) | inline Dtype diff_at(const int n, const int c, const int h, method Dtype (line 202) | inline Dtype data_at(const vector& index) const { method Dtype (line 206) | inline Dtype diff_at(const vector& index) const { FILE: include/caffe/common.hpp type cv (line 69) | namespace cv { class Mat; } class Mat (line 69) | class Mat type caffe (line 71) | namespace caffe { class Caffe (line 98) | class Caffe { type Brew (line 107) | enum Brew { CPU, GPU } class RNG (line 111) | class RNG { class Generator (line 119) | class Generator method RNG (line 124) | inline static RNG& rng_stream() { class Generator (line 119) | class Generator method cublasHandle_t (line 131) | inline static cublasHandle_t cublas_handle() { return Get().cublas_h... method curandGenerator_t (line 132) | inline static curandGenerator_t curand_generator() { method Brew (line 138) | inline static Brew mode() { return Get().mode_; } method set_mode (line 144) | inline static void set_mode(Brew mode) { Get().mode_ = mode; } method solver_count (line 153) | inline static int solver_count() { return Get().solver_count_; } method set_solver_count (line 154) | inline static void set_solver_count(int val) { Get().solver_count_ =... method root_solver (line 155) | inline static bool root_solver() { return Get().root_solver_; } method set_root_solver (line 156) | inline static void set_root_solver(bool val) { Get().root_solver_ = ... FILE: include/caffe/common_layers.hpp type caffe (line 16) | namespace caffe { class ArgMaxLayer (line 29) | class ArgMaxLayer : public Layer { method ArgMaxLayer (line 39) | explicit ArgMaxLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 47) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 48) | virtual inline int ExactNumTopBlobs() const { return 1; } method Backward_cpu (line 65) | virtual void Backward_cpu(const vector*>& top, class ConcatLayer (line 78) | class ConcatLayer : public Layer { method ConcatLayer (line 80) | explicit ConcatLayer(const LayerParameter& param) method MinBottomBlobs (line 88) | virtual inline int MinBottomBlobs() const { return 2; } method ExactNumTopBlobs (line 89) | virtual inline int ExactNumTopBlobs() const { return 1; } class EltwiseLayer (line 153) | class EltwiseLayer : public Layer { method EltwiseLayer (line 155) | explicit EltwiseLayer(const LayerParameter& param) method MinBottomBlobs (line 163) | virtual inline int MinBottomBlobs() const { return 2; } method ExactNumTopBlobs (line 164) | virtual inline int ExactNumTopBlobs() const { return 1; } class FilterLayer (line 190) | class FilterLayer : public Layer { method FilterLayer (line 192) | explicit FilterLayer(const LayerParameter& param) method MinBottomBlobs (line 200) | virtual inline int MinBottomBlobs() const { return 2; } method MinTopBlobs (line 201) | virtual inline int MinTopBlobs() const { return 1; } class FlattenLayer (line 257) | class FlattenLayer : public Layer { method FlattenLayer (line 259) | explicit FlattenLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 265) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 266) | virtual inline int ExactNumTopBlobs() const { return 1; } class InnerProductLayer (line 300) | class InnerProductLayer : public Layer { method InnerProductLayer (line 302) | explicit InnerProductLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 310) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 311) | virtual inline int ExactNumTopBlobs() const { return 1; } class CInnerProductLayer (line 338) | class CInnerProductLayer : public Layer { method CInnerProductLayer (line 340) | explicit CInnerProductLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 348) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 349) | virtual inline int ExactNumTopBlobs() const { return 1; } class MVNLayer (line 385) | class MVNLayer : public Layer { method MVNLayer (line 387) | explicit MVNLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 393) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 394) | virtual inline int ExactNumTopBlobs() const { return 1; } class ReshapeLayer (line 420) | class ReshapeLayer : public Layer { method ReshapeLayer (line 422) | explicit ReshapeLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 430) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 431) | virtual inline int ExactNumTopBlobs() const { return 1; } method Forward_cpu (line 434) | virtual void Forward_cpu(const vector*>& bottom, method Backward_cpu (line 436) | virtual void Backward_cpu(const vector*>& top, method Forward_gpu (line 438) | virtual void Forward_gpu(const vector*>& bottom, method Backward_gpu (line 440) | virtual void Backward_gpu(const vector*>& top, class ReductionLayer (line 459) | class ReductionLayer : public Layer { method ReductionLayer (line 461) | explicit ReductionLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 469) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 470) | virtual inline int ExactNumTopBlobs() const { return 1; } class SilenceLayer (line 501) | class SilenceLayer : public Layer { method SilenceLayer (line 503) | explicit SilenceLayer(const LayerParameter& param) method Reshape (line 505) | virtual void Reshape(const vector*>& bottom, method MinBottomBlobs (line 509) | virtual inline int MinBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 510) | virtual inline int ExactNumTopBlobs() const { return 0; } method Forward_cpu (line 513) | virtual void Forward_cpu(const vector*>& bottom, class SoftmaxLayer (line 531) | class SoftmaxLayer : public Layer { method SoftmaxLayer (line 533) | explicit SoftmaxLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 539) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 540) | virtual inline int ExactNumTopBlobs() const { return 1; } class CuDNNSoftmaxLayer (line 567) | class CuDNNSoftmaxLayer : public SoftmaxLayer { method CuDNNSoftmaxLayer (line 569) | explicit CuDNNSoftmaxLayer(const LayerParameter& param) class SplitLayer (line 597) | class SplitLayer : public Layer { method SplitLayer (line 599) | explicit SplitLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 605) | virtual inline int ExactNumBottomBlobs() const { return 1; } method MinTopBlobs (line 606) | virtual inline int MinTopBlobs() const { return 1; } class SliceLayer (line 628) | class SliceLayer : public Layer { method SliceLayer (line 630) | explicit SliceLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 638) | virtual inline int ExactNumBottomBlobs() const { return 1; } method MinTopBlobs (line 639) | virtual inline int MinTopBlobs() const { return 2; } FILE: include/caffe/data_layers.hpp type caffe (line 21) | namespace caffe { class BaseDataLayer (line 29) | class BaseDataLayer : public Layer { method ShareInParallel (line 38) | virtual inline bool ShareInParallel() const { return true; } method DataLayerSetUp (line 39) | virtual void DataLayerSetUp(const vector*>& bottom, method Reshape (line 42) | virtual void Reshape(const vector*>& bottom, method Backward_cpu (line 45) | virtual void Backward_cpu(const vector*>& top, method Backward_gpu (line 47) | virtual void Backward_gpu(const vector*>& top, class Batch (line 57) | class Batch { class BasePrefetchingDataLayer (line 63) | class BasePrefetchingDataLayer : class DataLayer (line 93) | class DataLayer : public BasePrefetchingDataLayer { method ShareInParallel (line 100) | virtual inline bool ShareInParallel() const { return false; } method ExactNumBottomBlobs (line 102) | virtual inline int ExactNumBottomBlobs() const { return 0; } method MinTopBlobs (line 103) | virtual inline int MinTopBlobs() const { return 1; } method MaxTopBlobs (line 104) | virtual inline int MaxTopBlobs() const { return 2; } class DummyDataLayer (line 118) | class DummyDataLayer : public Layer { method DummyDataLayer (line 120) | explicit DummyDataLayer(const LayerParameter& param) method ShareInParallel (line 125) | virtual inline bool ShareInParallel() const { return true; } method Reshape (line 127) | virtual void Reshape(const vector*>& bottom, method ExactNumBottomBlobs (line 131) | virtual inline int ExactNumBottomBlobs() const { return 0; } method MinTopBlobs (line 132) | virtual inline int MinTopBlobs() const { return 1; } method Backward_cpu (line 137) | virtual void Backward_cpu(const vector*>& top, method Backward_gpu (line 139) | virtual void Backward_gpu(const vector*>& top, class HDF5DataLayer (line 152) | class HDF5DataLayer : public Layer { method HDF5DataLayer (line 154) | explicit HDF5DataLayer(const LayerParameter& param) method ShareInParallel (line 160) | virtual inline bool ShareInParallel() const { return true; } method Reshape (line 162) | virtual void Reshape(const vector*>& bottom, method ExactNumBottomBlobs (line 166) | virtual inline int ExactNumBottomBlobs() const { return 0; } method MinTopBlobs (line 167) | virtual inline int MinTopBlobs() const { return 1; } method Backward_cpu (line 174) | virtual void Backward_cpu(const vector*>& top, method Backward_gpu (line 176) | virtual void Backward_gpu(const vector*>& top, class HDF5OutputLayer (line 195) | class HDF5OutputLayer : public Layer { method HDF5OutputLayer (line 197) | explicit HDF5OutputLayer(const LayerParameter& param) method ShareInParallel (line 203) | virtual inline bool ShareInParallel() const { return true; } method Reshape (line 205) | virtual void Reshape(const vector*>& bottom, method ExactNumBottomBlobs (line 210) | virtual inline int ExactNumBottomBlobs() const { return 2; } method ExactNumTopBlobs (line 211) | virtual inline int ExactNumTopBlobs() const { return 0; } method file_name (line 213) | inline std::string file_name() const { return file_name_; } class ImageDataLayer (line 239) | class ImageDataLayer : public BasePrefetchingDataLayer { method ImageDataLayer (line 241) | explicit ImageDataLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 248) | virtual inline int ExactNumBottomBlobs() const { return 0; } method ExactNumTopBlobs (line 249) | virtual inline int ExactNumTopBlobs() const { return 2; } class MemoryDataLayer (line 266) | class MemoryDataLayer : public BaseDataLayer { method MemoryDataLayer (line 268) | explicit MemoryDataLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 274) | virtual inline int ExactNumBottomBlobs() const { return 0; } method ExactNumTopBlobs (line 275) | virtual inline int ExactNumTopBlobs() const { return 2; } method batch_size (line 286) | int batch_size() { return batch_size_; } method channels (line 287) | int channels() { return channels_; } method height (line 288) | int height() { return height_; } method width (line 289) | int width() { return width_; } class WindowDataLayer (line 312) | class WindowDataLayer : public BasePrefetchingDataLayer { method WindowDataLayer (line 314) | explicit WindowDataLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 321) | virtual inline int ExactNumBottomBlobs() const { return 0; } method ExactNumTopBlobs (line 322) | virtual inline int ExactNumTopBlobs() const { return 2; } type WindowField (line 330) | enum WindowField { IMAGE_INDEX, LABEL, OVERLAP, X1, Y1, X2, Y2, NUM } FILE: include/caffe/data_reader.hpp type caffe (line 13) | namespace caffe { class DataReader (line 23) | class DataReader { class QueuePair (line 37) | class QueuePair { class Body (line 49) | class Body : public InternalThread { method string (line 68) | static inline string source_key(const LayerParameter& param) { FILE: include/caffe/data_transformer.hpp type caffe (line 10) | namespace caffe { class DataTransformer (line 17) | class DataTransformer { FILE: include/caffe/filler.hpp type caffe (line 16) | namespace caffe { class Filler (line 20) | class Filler { method Filler (line 22) | explicit Filler(const FillerParameter& param) : filler_param_(param) {} class ConstantFiller (line 32) | class ConstantFiller : public Filler { method ConstantFiller (line 34) | explicit ConstantFiller(const FillerParameter& param) method Fill (line 36) | virtual void Fill(Blob* blob) { class UniformFiller (line 51) | class UniformFiller : public Filler { method UniformFiller (line 53) | explicit UniformFiller(const FillerParameter& param) method Fill (line 55) | virtual void Fill(Blob* blob) { class GaussianFiller (line 66) | class GaussianFiller : public Filler { method GaussianFiller (line 68) | explicit GaussianFiller(const FillerParameter& param) method Fill (line 70) | virtual void Fill(Blob* blob) { class PositiveUnitballFiller (line 102) | class PositiveUnitballFiller : public Filler { method PositiveUnitballFiller (line 104) | explicit PositiveUnitballFiller(const FillerParameter& param) method Fill (line 106) | virtual void Fill(Blob* blob) { class XavierFiller (line 145) | class XavierFiller : public Filler { method XavierFiller (line 147) | explicit XavierFiller(const FillerParameter& param) method Fill (line 149) | virtual void Fill(Blob* blob) { class MSRAFiller (line 187) | class MSRAFiller : public Filler { method MSRAFiller (line 189) | explicit MSRAFiller(const FillerParameter& param) method Fill (line 191) | virtual void Fill(Blob* blob) { class BilinearFiller (line 245) | class BilinearFiller : public Filler { method BilinearFiller (line 247) | explicit BilinearFiller(const FillerParameter& param) method Fill (line 249) | virtual void Fill(Blob* blob) { FILE: include/caffe/internal_thread.hpp type boost (line 10) | namespace boost { class thread; } class thread (line 10) | class thread type caffe (line 12) | namespace caffe { class InternalThread (line 19) | class InternalThread { method InternalThread (line 21) | InternalThread() : thread_() {} method InternalThreadEntry (line 39) | virtual void InternalThreadEntry() {} FILE: include/caffe/layer.hpp type boost (line 18) | namespace boost { class mutex; } class mutex (line 18) | class mutex type caffe (line 20) | namespace caffe { class Layer (line 33) | class Layer { method Layer (line 40) | explicit Layer(const LayerParameter& param) method SetUp (line 67) | void SetUp(const vector*>& bottom, method LayerSetUp (line 92) | virtual void LayerSetUp(const vector*>& bottom, method ShareInParallel (line 101) | virtual inline bool ShareInParallel() const { return false; } method IsShared (line 107) | inline bool IsShared() const { return is_shared_; } method SetShared (line 113) | inline void SetShared(bool is_shared) { method LayerParameter (line 189) | const LayerParameter& layer_param() const { return layer_param_; } method Dtype (line 199) | inline Dtype loss(const int top_index) const { method set_loss (line 206) | inline void set_loss(const int top_index, const Dtype value) { method ExactNumBottomBlobs (line 225) | virtual inline int ExactNumBottomBlobs() const { return -1; } method MinBottomBlobs (line 233) | virtual inline int MinBottomBlobs() const { return -1; } method MaxBottomBlobs (line 241) | virtual inline int MaxBottomBlobs() const { return -1; } method ExactNumTopBlobs (line 249) | virtual inline int ExactNumTopBlobs() const { return -1; } method MinTopBlobs (line 257) | virtual inline int MinTopBlobs() const { return -1; } method MaxTopBlobs (line 265) | virtual inline int MaxTopBlobs() const { return -1; } method EqualNumBottomTopBlobs (line 273) | virtual inline bool EqualNumBottomTopBlobs() const { return false; } method AutoTopBlobs (line 283) | virtual inline bool AutoTopBlobs() const { return false; } method AllowForceBackward (line 293) | virtual inline bool AllowForceBackward(const int bottom_index) const { method param_propagate_down (line 304) | inline bool param_propagate_down(const int param_id) { method set_param_propagate_down (line 312) | inline void set_param_propagate_down(const int param_id, const bool ... method set_current_iter_num (line 319) | inline void set_current_iter_num(const int iter_num) { method Forward_gpu (line 346) | virtual void Forward_gpu(const vector*>& bottom, method Backward_gpu (line 364) | virtual void Backward_gpu(const vector*>& top, method CheckBlobCounts (line 376) | virtual void CheckBlobCounts(const vector*>& bottom, method SetLossWeights (line 419) | inline void SetLossWeights(const vector*>& top) { function Dtype (line 456) | inline Dtype Layer::Forward(const vector*>& bottom, FILE: include/caffe/layer_factory.hpp type caffe (line 49) | namespace caffe { class Layer (line 52) | class Layer class LayerRegistry (line 55) | class LayerRegistry { method CreatorRegistry (line 60) | static CreatorRegistry& Registry() { method AddCreator (line 66) | static void AddCreator(const string& type, Creator creator) { method CreateLayer (line 74) | static shared_ptr > CreateLayer(const LayerParameter& p... method LayerTypeList (line 85) | static vector LayerTypeList() { method LayerRegistry (line 98) | LayerRegistry() {} method string (line 100) | static string LayerTypeListString() { class LayerRegisterer (line 116) | class LayerRegisterer { method LayerRegisterer (line 118) | LayerRegisterer(const string& type, FILE: include/caffe/loss_layers.hpp type caffe (line 14) | namespace caffe { class AccuracyLayer (line 23) | class AccuracyLayer : public Layer { method AccuracyLayer (line 33) | explicit AccuracyLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 41) | virtual inline int ExactNumBottomBlobs() const { return 2; } method ExactNumTopBlobs (line 42) | virtual inline int ExactNumTopBlobs() const { return 1; } method Backward_cpu (line 74) | virtual void Backward_cpu(const vector*>& top, class LossLayer (line 100) | class LossLayer : public Layer { method LossLayer (line 102) | explicit LossLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 109) | virtual inline int ExactNumBottomBlobs() const { return 2; } method AutoTopBlobs (line 117) | virtual inline bool AutoTopBlobs() const { return true; } method ExactNumTopBlobs (line 118) | virtual inline int ExactNumTopBlobs() const { return 1; } method AllowForceBackward (line 123) | virtual inline bool AllowForceBackward(const int bottom_index) const { class ContrastiveLossLayer (line 153) | class ContrastiveLossLayer : public LossLayer { method ContrastiveLossLayer (line 155) | explicit ContrastiveLossLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 160) | virtual inline int ExactNumBottomBlobs() const { return 3; } method AllowForceBackward (line 166) | virtual inline bool AllowForceBackward(const int bottom_index) const { class EuclideanLossLayer (line 240) | class EuclideanLossLayer : public LossLayer { method EuclideanLossLayer (line 242) | explicit EuclideanLossLayer(const LayerParameter& param) method AllowForceBackward (line 252) | virtual inline bool AllowForceBackward(const int bottom_index) const { class HingeLossLayer (line 348) | class HingeLossLayer : public LossLayer { method HingeLossLayer (line 350) | explicit HingeLossLayer(const LayerParameter& param) class InfogainLossLayer (line 424) | class InfogainLossLayer : public LossLayer { method InfogainLossLayer (line 426) | explicit InfogainLossLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 436) | virtual inline int ExactNumBottomBlobs() const { return -1; } method MinBottomBlobs (line 437) | virtual inline int MinBottomBlobs() const { return 2; } method MaxBottomBlobs (line 438) | virtual inline int MaxBottomBlobs() const { return 3; } class MultinomialLogisticLossLayer (line 515) | class MultinomialLogisticLossLayer : public LossLayer { method MultinomialLogisticLossLayer (line 517) | explicit MultinomialLogisticLossLayer(const LayerParameter& param) class SigmoidCrossEntropyLossLayer (line 591) | class SigmoidCrossEntropyLossLayer : public LossLayer { method SigmoidCrossEntropyLossLayer (line 593) | explicit SigmoidCrossEntropyLossLayer(const LayerParameter& param) class SoftmaxLayer (line 655) | class SoftmaxLayer class SoftmaxWithLossLayer (line 686) | class SoftmaxWithLossLayer : public LossLayer { method SoftmaxWithLossLayer (line 696) | explicit SoftmaxWithLossLayer(const LayerParameter& param) method ExactNumTopBlobs (line 704) | virtual inline int ExactNumTopBlobs() const { return -1; } method MinTopBlobs (line 705) | virtual inline int MinTopBlobs() const { return 1; } method MaxTopBlobs (line 706) | virtual inline int MaxTopBlobs() const { return 2; } FILE: include/caffe/net.hpp type caffe (line 15) | namespace caffe { class Net (line 24) | class Net { method Dtype (line 85) | Dtype ForwardBackward(const vector* > & bottom) { method string (line 123) | inline const string& name() const { return name_; } method Phase (line 137) | inline Phase phase() const { return phase_; } method num_inputs (line 183) | inline int num_inputs() const { return net_input_blobs_.size(); } method num_outputs (line 184) | inline int num_outputs() const { return net_output_blobs_.size(); } method set_current_iter_num (line 198) | inline void set_current_iter_num(const int iter_num) { method set_debug_info (line 210) | void set_debug_info(const bool value) { debug_info_ = value; } FILE: include/caffe/neuron_layers.hpp type caffe (line 16) | namespace caffe { class NeuronLayer (line 25) | class NeuronLayer : public Layer { method NeuronLayer (line 27) | explicit NeuronLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 32) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 33) | virtual inline int ExactNumTopBlobs() const { return 1; } class AbsValLayer (line 47) | class AbsValLayer : public NeuronLayer { method AbsValLayer (line 49) | explicit AbsValLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 55) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 56) | virtual inline int ExactNumTopBlobs() const { return 1; } class BNLLLayer (line 106) | class BNLLLayer : public NeuronLayer { method BNLLLayer (line 108) | explicit BNLLLayer(const LayerParameter& param) class DropoutLayer (line 154) | class DropoutLayer : public NeuronLayer { method DropoutLayer (line 162) | explicit DropoutLayer(const LayerParameter& param) class ExpLayer (line 212) | class ExpLayer : public NeuronLayer { method ExpLayer (line 222) | explicit ExpLayer(const LayerParameter& param) class LogLayer (line 276) | class LogLayer : public NeuronLayer { method LogLayer (line 286) | explicit LogLayer(const LayerParameter& param) class PowerLayer (line 342) | class PowerLayer : public NeuronLayer { method PowerLayer (line 351) | explicit PowerLayer(const LayerParameter& param) class ReLULayer (line 414) | class ReLULayer : public NeuronLayer { method ReLULayer (line 422) | explicit ReLULayer(const LayerParameter& param) class CuDNNReLULayer (line 483) | class CuDNNReLULayer : public ReLULayer { method CuDNNReLULayer (line 485) | explicit CuDNNReLULayer(const LayerParameter& param) class SigmoidLayer (line 515) | class SigmoidLayer : public NeuronLayer { method SigmoidLayer (line 517) | explicit SigmoidLayer(const LayerParameter& param) class CuDNNSigmoidLayer (line 566) | class CuDNNSigmoidLayer : public SigmoidLayer { method CuDNNSigmoidLayer (line 568) | explicit CuDNNSigmoidLayer(const LayerParameter& param) class TanHLayer (line 598) | class TanHLayer : public NeuronLayer { method TanHLayer (line 600) | explicit TanHLayer(const LayerParameter& param) class CuDNNTanHLayer (line 651) | class CuDNNTanHLayer : public TanHLayer { method CuDNNTanHLayer (line 653) | explicit CuDNNTanHLayer(const LayerParameter& param) class ThresholdLayer (line 679) | class ThresholdLayer : public NeuronLayer { method ThresholdLayer (line 687) | explicit ThresholdLayer(const LayerParameter& param) method Backward_cpu (line 714) | virtual void Backward_cpu(const vector*>& top, class PReLULayer (line 731) | class PReLULayer : public NeuronLayer { method PReLULayer (line 741) | explicit PReLULayer(const LayerParameter& param) FILE: include/caffe/parallel.hpp type caffe (line 17) | namespace caffe { class Params (line 23) | class Params { method size (line 29) | inline size_t size() const { method Dtype (line 32) | inline Dtype* data() const { method Dtype (line 35) | inline Dtype* diff() const { class GPUParams (line 49) | class GPUParams : public Params { class DevicePair (line 62) | class DevicePair { method DevicePair (line 64) | DevicePair(int parent, int device) method parent (line 68) | inline int parent() { method device (line 71) | inline int device() { class P2PSync (line 85) | class P2PSync : public GPUParams, public Solver::Callback, FILE: include/caffe/python_layer.hpp type caffe (line 11) | namespace caffe { class PythonLayer (line 14) | class PythonLayer : public Layer { method PythonLayer (line 16) | PythonLayer(PyObject* self, const LayerParameter& param) method LayerSetUp (line 19) | virtual void LayerSetUp(const vector*>& bottom, method Reshape (line 25) | virtual void Reshape(const vector*>& bottom, method ShareInParallel (line 30) | virtual inline bool ShareInParallel() const { method Forward_cpu (line 37) | virtual void Forward_cpu(const vector*>& bottom, method Backward_cpu (line 41) | virtual void Backward_cpu(const vector*>& top, FILE: include/caffe/solver.hpp type caffe (line 9) | namespace caffe { class Solver (line 18) | class Solver { method Solve (line 29) | inline void Solve(const string resume_file) { Solve(resume_file.c_st... method SolverParameter (line 36) | inline const SolverParameter& param() const { return param_; } method net (line 37) | inline shared_ptr > net() { return net_; } method iter (line 41) | int iter() { return iter_; } class Callback (line 44) | class Callback { method add_callback (line 53) | void add_callback(Callback* value) { class WorkerSolver (line 95) | class WorkerSolver : public Solver { method WorkerSolver (line 97) | explicit WorkerSolver(const SolverParameter& param, method ApplyUpdate (line 102) | void ApplyUpdate() {} method SnapshotSolverState (line 103) | void SnapshotSolverState(const string& model_filename) { method RestoreSolverStateFromBinaryProto (line 106) | void RestoreSolverStateFromBinaryProto(const string& state_file) { method RestoreSolverStateFromHDF5 (line 109) | void RestoreSolverStateFromHDF5(const string& state_file) { class SGDSolver (line 119) | class SGDSolver : public Solver { method SGDSolver (line 121) | explicit SGDSolver(const SolverParameter& param) method SGDSolver (line 123) | explicit SGDSolver(const string& param_file) class NesterovSolver (line 151) | class NesterovSolver : public SGDSolver { method NesterovSolver (line 153) | explicit NesterovSolver(const SolverParameter& param) method NesterovSolver (line 155) | explicit NesterovSolver(const string& param_file) class AdaGradSolver (line 165) | class AdaGradSolver : public SGDSolver { method AdaGradSolver (line 167) | explicit AdaGradSolver(const SolverParameter& param) method AdaGradSolver (line 169) | explicit AdaGradSolver(const string& param_file) method constructor_sanity_check (line 174) | void constructor_sanity_check() { class RMSPropSolver (line 184) | class RMSPropSolver : public SGDSolver { method RMSPropSolver (line 186) | explicit RMSPropSolver(const SolverParameter& param) method RMSPropSolver (line 188) | explicit RMSPropSolver(const string& param_file) method constructor_sanity_check (line 193) | void constructor_sanity_check() { class AdaDeltaSolver (line 206) | class AdaDeltaSolver : public SGDSolver { method AdaDeltaSolver (line 208) | explicit AdaDeltaSolver(const SolverParameter& param) method AdaDeltaSolver (line 210) | explicit AdaDeltaSolver(const string& param_file) class AdamSolver (line 229) | class AdamSolver : public SGDSolver { method AdamSolver (line 231) | explicit AdamSolver(const SolverParameter& param) method AdamSolver (line 233) | explicit AdamSolver(const string& param_file) FILE: include/caffe/syncedmem.hpp type caffe (line 9) | namespace caffe { function CaffeMallocHost (line 16) | inline void CaffeMallocHost(void** ptr, size_t size) { function CaffeFreeHost (line 27) | inline void CaffeFreeHost(void* ptr) { class SyncedMemory (line 44) | class SyncedMemory { method SyncedMemory (line 46) | SyncedMemory() method SyncedMemory (line 49) | explicit SyncedMemory(size_t size) type SyncedHead (line 59) | enum SyncedHead { UNINITIALIZED, HEAD_AT_CPU, HEAD_AT_GPU, SYNCED } method SyncedHead (line 60) | SyncedHead head() { return head_; } method size (line 61) | size_t size() { return size_; } FILE: include/caffe/test/test_caffe_main.hpp type caffe (line 28) | namespace caffe { class MultiDeviceTest (line 31) | class MultiDeviceTest : public ::testing::Test { method MultiDeviceTest (line 35) | MultiDeviceTest() { type CPUDevice (line 44) | struct CPUDevice { class CPUDeviceTest (line 50) | class CPUDeviceTest : public MultiDeviceTest > { type GPUDevice (line 61) | struct GPUDevice { class GPUDeviceTest (line 67) | class GPUDeviceTest : public MultiDeviceTest > { FILE: include/caffe/test/test_gradient_check_util.hpp type caffe (line 14) | namespace caffe { class GradientChecker (line 19) | class GradientChecker { method GradientChecker (line 24) | GradientChecker(const Dtype stepsize, const Dtype threshold, method CheckGradient (line 33) | void CheckGradient(Layer* layer, const vector*>& ... function Dtype (line 227) | Dtype GradientChecker::GetObjAndGradient(const Layer& la... FILE: include/caffe/util/benchmark.hpp type caffe (line 8) | namespace caffe { class Timer (line 10) | class Timer { method initted (line 20) | inline bool initted() { return initted_; } method running (line 21) | inline bool running() { return running_; } method has_run_at_least_once (line 22) | inline bool has_run_at_least_once() { return has_run_at_least_once_; } class CPUTimer (line 40) | class CPUTimer : public Timer { FILE: include/caffe/util/blocking_queue.hpp type caffe (line 9) | namespace caffe { class BlockingQueue (line 12) | class BlockingQueue { class sync (line 37) | class sync FILE: include/caffe/util/cudnn.hpp type caffe (line 45) | namespace caffe { type cudnn (line 47) | namespace cudnn { class dataType (line 49) | class dataType class dataType (line 50) | class dataType { class dataType (line 56) | class dataType { function createTensor4dDesc (line 64) | inline void createTensor4dDesc(cudnnTensorDescriptor_t* desc) { function setTensor4dDesc (line 69) | inline void setTensor4dDesc(cudnnTensorDescriptor_t* desc, function setTensor4dDesc (line 77) | inline void setTensor4dDesc(cudnnTensorDescriptor_t* desc, function createFilterDesc (line 88) | inline void createFilterDesc(cudnnFilterDescriptor_t* desc, function createConvolutionDesc (line 96) | inline void createConvolutionDesc(cudnnConvolutionDescriptor_t* conv) { function setConvolutionDesc (line 101) | inline void setConvolutionDesc(cudnnConvolutionDescriptor_t* conv, function createPoolingDesc (line 109) | inline void createPoolingDesc(cudnnPoolingDescriptor_t* pool_desc, FILE: include/caffe/util/db.hpp type caffe (line 9) | namespace caffe { namespace db { type db (line 9) | namespace db { type Mode (line 11) | enum Mode { READ, WRITE, NEW } class Cursor (line 13) | class Cursor { method Cursor (line 15) | Cursor() { } class Transaction (line 26) | class Transaction { method Transaction (line 28) | Transaction() { } class DB (line 36) | class DB { method DB (line 38) | DB() { } FILE: include/caffe/util/db_leveldb.hpp type caffe (line 11) | namespace caffe { namespace db { type db (line 11) | namespace db { class LevelDBCursor (line 13) | class LevelDBCursor : public Cursor { method LevelDBCursor (line 15) | explicit LevelDBCursor(leveldb::Iterator* iter) method SeekToFirst (line 18) | virtual void SeekToFirst() { iter_->SeekToFirst(); } method Next (line 19) | virtual void Next() { iter_->Next(); } method string (line 20) | virtual string key() { return iter_->key().ToString(); } method string (line 21) | virtual string value() { return iter_->value().ToString(); } method valid (line 22) | virtual bool valid() { return iter_->Valid(); } class LevelDBTransaction (line 28) | class LevelDBTransaction : public Transaction { method LevelDBTransaction (line 30) | explicit LevelDBTransaction(leveldb::DB* db) : db_(db) { CHECK_NOT... method Put (line 31) | virtual void Put(const string& key, const string& value) { method Commit (line 34) | virtual void Commit() { class LevelDB (line 47) | class LevelDB : public DB { method LevelDB (line 49) | LevelDB() : db_(NULL) { } method Close (line 52) | virtual void Close() { method LevelDBCursor (line 58) | virtual LevelDBCursor* NewCursor() { method LevelDBTransaction (line 61) | virtual LevelDBTransaction* NewTransaction() { FILE: include/caffe/util/db_lmdb.hpp type caffe (line 10) | namespace caffe { namespace db { type db (line 10) | namespace db { function MDB_CHECK (line 12) | inline void MDB_CHECK(int mdb_status) { class LMDBCursor (line 16) | class LMDBCursor : public Cursor { method LMDBCursor (line 18) | explicit LMDBCursor(MDB_txn* mdb_txn, MDB_cursor* mdb_cursor) method SeekToFirst (line 26) | virtual void SeekToFirst() { Seek(MDB_FIRST); } method Next (line 27) | virtual void Next() { Seek(MDB_NEXT); } method string (line 28) | virtual string key() { method string (line 31) | virtual string value() { method valid (line 35) | virtual bool valid() { return valid_; } method Seek (line 38) | void Seek(MDB_cursor_op op) { class LMDBTransaction (line 54) | class LMDBTransaction : public Transaction { method LMDBTransaction (line 56) | explicit LMDBTransaction(MDB_dbi* mdb_dbi, MDB_txn* mdb_txn) method Commit (line 59) | virtual void Commit() { MDB_CHECK(mdb_txn_commit(mdb_txn_)); } class LMDB (line 68) | class LMDB : public DB { method LMDB (line 70) | LMDB() : mdb_env_(NULL) { } method Close (line 73) | virtual void Close() { FILE: include/caffe/util/device_alternate.hpp type caffe (line 78) | namespace caffe { function CAFFE_GET_BLOCKS (line 94) | inline int CAFFE_GET_BLOCKS(const int N) { FILE: include/caffe/util/hdf5.hpp type caffe (line 11) | namespace caffe { FILE: include/caffe/util/im2col.hpp type caffe (line 4) | namespace caffe { FILE: include/caffe/util/insert_splits.hpp type caffe (line 8) | namespace caffe { FILE: include/caffe/util/io.hpp type caffe (line 13) | namespace caffe { function MakeTempFilename (line 17) | inline void MakeTempFilename(string* temp_filename) { function MakeTempDir (line 30) | inline void MakeTempDir(string* temp_dirname) { function ReadProtoFromTextFile (line 45) | inline bool ReadProtoFromTextFile(const string& filename, Message* pro... function ReadProtoFromTextFileOrDie (line 49) | inline void ReadProtoFromTextFileOrDie(const char* filename, Message* ... function ReadProtoFromTextFileOrDie (line 53) | inline void ReadProtoFromTextFileOrDie(const string& filename, Message... function WriteProtoToTextFile (line 58) | inline void WriteProtoToTextFile(const Message& proto, const string& f... function ReadProtoFromBinaryFile (line 64) | inline bool ReadProtoFromBinaryFile(const string& filename, Message* p... function ReadProtoFromBinaryFileOrDie (line 68) | inline void ReadProtoFromBinaryFileOrDie(const char* filename, Message... function ReadProtoFromBinaryFileOrDie (line 72) | inline void ReadProtoFromBinaryFileOrDie(const string& filename, function WriteProtoToBinaryFile (line 79) | inline void WriteProtoToBinaryFile( function ReadFileToDatum (line 86) | inline bool ReadFileToDatum(const string& filename, Datum* datum) { function ReadImageToDatum (line 94) | inline bool ReadImageToDatum(const string& filename, const int label, function ReadImageToDatum (line 100) | inline bool ReadImageToDatum(const string& filename, const int label, function ReadImageToDatum (line 105) | inline bool ReadImageToDatum(const string& filename, const int label, function ReadImageToDatum (line 110) | inline bool ReadImageToDatum(const string& filename, const int label, function ReadImageToDatum (line 115) | inline bool ReadImageToDatum(const string& filename, const int label, FILE: include/caffe/util/math_functions.hpp type caffe (line 13) | namespace caffe { function caffe_memset (line 42) | inline void caffe_memset(const size_t N, const int alpha, void* X) { function caffe_sign (line 114) | inline int8_t caffe_sign(Dtype val) { function caffe_gpu_memset (line 177) | inline void caffe_gpu_memset(const size_t N, const int alpha, void* X) { FILE: include/caffe/util/mkl_alternate.hpp function cblas_saxpby (line 83) | inline void cblas_saxpby(const int N, const float alpha, const float* X, function cblas_daxpby (line 89) | inline void cblas_daxpby(const int N, const double alpha, const double* X, FILE: include/caffe/util/rng.hpp type caffe (line 12) | namespace caffe { function rng_t (line 16) | inline rng_t* caffe_rng() { function shuffle (line 22) | inline void shuffle(RandomAccessIterator begin, RandomAccessIterator end, function shuffle (line 38) | inline void shuffle(RandomAccessIterator begin, RandomAccessIterator e... FILE: include/caffe/util/upgrade_proto.hpp type caffe (line 8) | namespace caffe { FILE: include/caffe/vision_layers.hpp type caffe (line 17) | namespace caffe { class BaseConvolutionLayer (line 24) | class BaseConvolutionLayer : public Layer { method BaseConvolutionLayer (line 26) | explicit BaseConvolutionLayer(const LayerParameter& param) method MinBottomBlobs (line 33) | virtual inline int MinBottomBlobs() const { return 1; } method MinTopBlobs (line 34) | virtual inline int MinTopBlobs() const { return 1; } method EqualNumBottomTopBlobs (line 35) | virtual inline bool EqualNumBottomTopBlobs() const { return true; } method conv_im2col_cpu (line 81) | inline void conv_im2col_cpu(const Dtype* data, Dtype* col_buff) { method conv_col2im_cpu (line 85) | inline void conv_col2im_cpu(const Dtype* col_buff, Dtype* data) { method conv_im2col_gpu (line 90) | inline void conv_im2col_gpu(const Dtype* data, Dtype* col_buff) { method conv_col2im_gpu (line 94) | inline void conv_col2im_gpu(const Dtype* col_buff, Dtype* data) { class ConvolutionLayer (line 131) | class ConvolutionLayer : public BaseConvolutionLayer { method ConvolutionLayer (line 161) | explicit ConvolutionLayer(const LayerParameter& param) method reverse_dimensions (line 175) | virtual inline bool reverse_dimensions() { return false; } class CConvolutionLayer (line 185) | class CConvolutionLayer : public BaseConvolutionLayer { method CConvolutionLayer (line 188) | explicit CConvolutionLayer(const LayerParameter& param) method reverse_dimensions (line 203) | virtual inline bool reverse_dimensions() { return false; } class DeconvolutionLayer (line 234) | class DeconvolutionLayer : public BaseConvolutionLayer { method DeconvolutionLayer (line 236) | explicit DeconvolutionLayer(const LayerParameter& param) method reverse_dimensions (line 250) | virtual inline bool reverse_dimensions() { return true; } class CuDNNConvolutionLayer (line 270) | class CuDNNConvolutionLayer : public ConvolutionLayer { method CuDNNConvolutionLayer (line 272) | explicit CuDNNConvolutionLayer(const LayerParameter& param) class Im2colLayer (line 307) | class Im2colLayer : public Layer { method Im2colLayer (line 309) | explicit Im2colLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 317) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 318) | virtual inline int ExactNumTopBlobs() const { return 1; } class PoolingLayer (line 338) | class PoolingLayer method PoolingLayer (line 425) | explicit PoolingLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 433) | virtual inline int ExactNumBottomBlobs() const { return 1; } method MinTopBlobs (line 434) | virtual inline int MinTopBlobs() const { return 1; } method MaxTopBlobs (line 437) | virtual inline int MaxTopBlobs() const { class SplitLayer (line 339) | class SplitLayer class LRNLayer (line 347) | class LRNLayer : public Layer { method LRNLayer (line 349) | explicit LRNLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 357) | virtual inline int ExactNumBottomBlobs() const { return 1; } method ExactNumTopBlobs (line 358) | virtual inline int ExactNumTopBlobs() const { return 1; } class PoolingLayer (line 423) | class PoolingLayer : public Layer { method PoolingLayer (line 425) | explicit PoolingLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 433) | virtual inline int ExactNumBottomBlobs() const { return 1; } method MinTopBlobs (line 434) | virtual inline int MinTopBlobs() const { return 1; } method MaxTopBlobs (line 437) | virtual inline int MaxTopBlobs() const { class CuDNNPoolingLayer (line 469) | class CuDNNPoolingLayer : public PoolingLayer { method CuDNNPoolingLayer (line 471) | explicit CuDNNPoolingLayer(const LayerParameter& param) method MinTopBlobs (line 479) | virtual inline int MinTopBlobs() const { return -1; } method ExactNumTopBlobs (line 480) | virtual inline int ExactNumTopBlobs() const { return 1; } class SPPLayer (line 503) | class SPPLayer : public Layer { method SPPLayer (line 505) | explicit SPPLayer(const LayerParameter& param) method ExactNumBottomBlobs (line 513) | virtual inline int ExactNumBottomBlobs() const { return 1; } method MinTopBlobs (line 514) | virtual inline int MinTopBlobs() const { return 1; } method MaxTopBlobs (line 517) | virtual inline int MaxTopBlobs() const { FILE: src/caffe/blob.cpp type caffe (line 9) | namespace caffe { function Dtype (line 71) | const Dtype* Blob::cpu_data() const { function Dtype (line 83) | const Dtype* Blob::gpu_data() const { function Dtype (line 89) | const Dtype* Blob::cpu_diff() const { function Dtype (line 95) | const Dtype* Blob::gpu_diff() const { function Dtype (line 101) | Dtype* Blob::mutable_cpu_data() { function Dtype (line 107) | Dtype* Blob::mutable_gpu_data() { function Dtype (line 113) | Dtype* Blob::mutable_cpu_diff() { function Dtype (line 119) | Dtype* Blob::mutable_gpu_diff() { function Dtype (line 179) | Dtype Blob::asum_data() const { function Dtype (line 214) | Dtype Blob::asum_diff() const { function Dtype (line 249) | Dtype Blob::sumsq_data() const { function Dtype (line 286) | Dtype Blob::sumsq_diff() const { class Blob (line 526) | class Blob class Blob (line 527) | class Blob FILE: src/caffe/common.cpp type caffe (line 9) | namespace caffe { function Caffe (line 14) | Caffe& Caffe::Get() { function cluster_seedgen (line 22) | int64_t cluster_seedgen(void) { function GlobalInit (line 42) | void GlobalInit(int* pargc, char*** pargv) { class Caffe::RNG::Generator (line 73) | class Caffe::RNG::Generator { method Generator (line 75) | Generator() : rng_(new caffe::rng_t(cluster_seedgen())) {} method Generator (line 76) | explicit Generator(unsigned int seed) : rng_(new caffe::rng_t(seed)) {} method Generator (line 197) | Generator() : rng_(new caffe::rng_t(cluster_seedgen())) {} method Generator (line 198) | explicit Generator(unsigned int seed) : rng_(new caffe::rng_t(seed)) {} class Caffe::RNG::Generator (line 195) | class Caffe::RNG::Generator { method Generator (line 75) | Generator() : rng_(new caffe::rng_t(cluster_seedgen())) {} method Generator (line 76) | explicit Generator(unsigned int seed) : rng_(new caffe::rng_t(seed)) {} method Generator (line 197) | Generator() : rng_(new caffe::rng_t(cluster_seedgen())) {} method Generator (line 198) | explicit Generator(unsigned int seed) : rng_(new caffe::rng_t(seed)) {} FILE: src/caffe/data_reader.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/data_transformer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/internal_thread.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layer.cpp type caffe (line 4) | namespace caffe { FILE: src/caffe/layer_factory.cpp type caffe (line 17) | namespace caffe { function GetConvolutionLayer (line 21) | shared_ptr > GetConvolutionLayer( function GetCConvolutionLayer (line 45) | shared_ptr > GetCConvolutionLayer( function GetPoolingLayer (line 71) | shared_ptr > GetPoolingLayer(const LayerParameter& param) { function GetReLULayer (line 101) | shared_ptr > GetReLULayer(const LayerParameter& param) { function GetSigmoidLayer (line 124) | shared_ptr > GetSigmoidLayer(const LayerParameter& param) { function GetSoftmaxLayer (line 147) | shared_ptr > GetSoftmaxLayer(const LayerParameter& param) { function GetTanHLayer (line 170) | shared_ptr > GetTanHLayer(const LayerParameter& param) { function GetPythonLayer (line 193) | shared_ptr > GetPythonLayer(const LayerParameter& param) { FILE: src/caffe/layers/absval_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/accuracy_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/argmax_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/base_conv_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/base_data_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/bnll_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/compress_conv_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/compress_inner_product_layer.cpp type caffe (line 12) | namespace caffe { FILE: src/caffe/layers/concat_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/contrastive_loss_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/conv_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/cudnn_conv_layer.cpp type caffe (line 10) | namespace caffe { FILE: src/caffe/layers/cudnn_pooling_layer.cpp type caffe (line 10) | namespace caffe { FILE: src/caffe/layers/cudnn_relu_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/cudnn_sigmoid_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/cudnn_softmax_layer.cpp type caffe (line 12) | namespace caffe { FILE: src/caffe/layers/cudnn_tanh_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/data_layer.cpp type caffe (line 15) | namespace caffe { FILE: src/caffe/layers/deconv_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/dropout_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/dummy_data_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/eltwise_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/euclidean_loss_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/exp_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/filter_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/flatten_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/hdf5_data_layer.cpp type caffe (line 21) | namespace caffe { FILE: src/caffe/layers/hdf5_output_layer.cpp type caffe (line 12) | namespace caffe { FILE: src/caffe/layers/hinge_loss_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/im2col_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/image_data_layer.cpp type caffe (line 16) | namespace caffe { FILE: src/caffe/layers/infogain_loss_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/inner_product_layer.cpp type caffe (line 10) | namespace caffe { FILE: src/caffe/layers/loss_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/lrn_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/memory_data_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/multinomial_logistic_loss_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/mvn_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/neuron_layer.cpp type caffe (line 6) | namespace caffe { FILE: src/caffe/layers/pooling_layer.cpp type caffe (line 11) | namespace caffe { FILE: src/caffe/layers/power_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/prelu_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/reduction_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/relu_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/reshape_layer.cpp type caffe (line 6) | namespace caffe { FILE: src/caffe/layers/sigmoid_cross_entropy_loss_layer.cpp type caffe (line 9) | namespace caffe { FILE: src/caffe/layers/sigmoid_layer.cpp type caffe (line 8) | namespace caffe { function Dtype (line 11) | inline Dtype sigmoid(Dtype x) { FILE: src/caffe/layers/silence_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/slice_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/softmax_layer.cpp type caffe (line 8) | namespace caffe { FILE: src/caffe/layers/softmax_loss_layer.cpp type caffe (line 10) | namespace caffe { FILE: src/caffe/layers/split_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/spp_layer.cpp type caffe (line 11) | namespace caffe { function LayerParameter (line 17) | LayerParameter SPPLayer::GetPoolingParam(const int pyramid_level, FILE: src/caffe/layers/tanh_layer.cpp type caffe (line 10) | namespace caffe { FILE: src/caffe/layers/threshold_layer.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/layers/window_data_layer.cpp type caffe (line 26) | namespace caffe { FILE: src/caffe/net.cpp type caffe (line 22) | namespace caffe { function Dtype (line 588) | Dtype Net::ForwardFromTo(int start, int end) { function Dtype (line 607) | Dtype Net::ForwardFrom(int start) { function Dtype (line 612) | Dtype Net::ForwardTo(int end) { function string (line 637) | string Net::Forward(const string& input_blob_protos, Dtype* los... FILE: src/caffe/parallel.cpp type caffe (line 19) | namespace caffe { type Op (line 21) | enum Op { function apply_buffers (line 30) | static void apply_buffers(const vector*>& blobs, function total_size (line 64) | static size_t total_size(const vector*>& params) { FILE: src/caffe/solver.cpp type caffe (line 18) | namespace caffe { function string (line 388) | string Solver::SnapshotFilename(const string extension) { function string (line 397) | string Solver::SnapshotToBinaryProto() { function string (line 407) | string Solver::SnapshotToHDF5() { function Dtype (line 442) | Dtype SGDSolver::GetLearningRate() { FILE: src/caffe/syncedmem.cpp type caffe (line 7) | namespace caffe { FILE: src/caffe/test/test_accuracy_layer.cpp type caffe (line 16) | namespace caffe { class AccuracyLayerTest (line 19) | class AccuracyLayerTest : public CPUDeviceTest { method AccuracyLayerTest (line 21) | AccuracyLayerTest() method FillBottoms (line 39) | virtual void FillBottoms() { function TYPED_TEST (line 70) | TYPED_TEST(AccuracyLayerTest, TestSetup) { function TYPED_TEST (line 80) | TYPED_TEST(AccuracyLayerTest, TestSetupTopK) { function TYPED_TEST (line 93) | TYPED_TEST(AccuracyLayerTest, TestForwardCPU) { function TYPED_TEST (line 119) | TYPED_TEST(AccuracyLayerTest, TestForwardWithSpatialAxes) { function TYPED_TEST (line 162) | TYPED_TEST(AccuracyLayerTest, TestForwardIgnoreLabel) { function TYPED_TEST (line 200) | TYPED_TEST(AccuracyLayerTest, TestForwardCPUTopK) { FILE: src/caffe/test/test_argmax_layer.cpp type caffe (line 13) | namespace caffe { class ArgMaxLayerTest (line 16) | class ArgMaxLayerTest : public CPUDeviceTest { method ArgMaxLayerTest (line 18) | ArgMaxLayerTest() function TYPED_TEST (line 40) | TYPED_TEST(ArgMaxLayerTest, TestSetup) { function TYPED_TEST (line 48) | TYPED_TEST(ArgMaxLayerTest, TestSetupMaxVal) { function TYPED_TEST (line 58) | TYPED_TEST(ArgMaxLayerTest, TestCPU) { function TYPED_TEST (line 81) | TYPED_TEST(ArgMaxLayerTest, TestCPUMaxVal) { function TYPED_TEST (line 107) | TYPED_TEST(ArgMaxLayerTest, TestCPUTopK) { function TYPED_TEST (line 136) | TYPED_TEST(ArgMaxLayerTest, TestCPUMaxValTopK) { FILE: src/caffe/test/test_benchmark.cpp type caffe (line 10) | namespace caffe { class BenchmarkTest (line 15) | class BenchmarkTest : public MultiDeviceTest {} function TYPED_TEST (line 19) | TYPED_TEST(BenchmarkTest, TestTimerConstructor) { function TYPED_TEST (line 26) | TYPED_TEST(BenchmarkTest, TestTimerStart) { function TYPED_TEST (line 43) | TYPED_TEST(BenchmarkTest, TestTimerStop) { function TYPED_TEST (line 60) | TYPED_TEST(BenchmarkTest, TestTimerMilliSeconds) { function TYPED_TEST (line 75) | TYPED_TEST(BenchmarkTest, TestTimerSeconds) { FILE: src/caffe/test/test_blob.cpp type caffe (line 12) | namespace caffe { class BlobSimpleTest (line 15) | class BlobSimpleTest : public ::testing::Test { method BlobSimpleTest (line 17) | BlobSimpleTest() function TYPED_TEST (line 27) | TYPED_TEST(BlobSimpleTest, TestInitialization) { function TYPED_TEST (line 39) | TYPED_TEST(BlobSimpleTest, TestPointersCPUGPU) { function TYPED_TEST (line 46) | TYPED_TEST(BlobSimpleTest, TestReshape) { function TYPED_TEST (line 55) | TYPED_TEST(BlobSimpleTest, TestLegacyBlobProtoShapeEquals) { class BlobMathTest (line 109) | class BlobMathTest : public MultiDeviceTest { method BlobMathTest (line 112) | BlobMathTest() function TYPED_TEST (line 123) | TYPED_TEST(BlobMathTest, TestSumOfSquares) { function TYPED_TEST (line 178) | TYPED_TEST(BlobMathTest, TestAsum) { function TYPED_TEST (line 232) | TYPED_TEST(BlobMathTest, TestScaleData) { FILE: src/caffe/test/test_caffe_main.cpp type caffe (line 7) | namespace caffe { function main (line 17) | int main(int argc, char** argv) { FILE: src/caffe/test/test_common.cpp type caffe (line 11) | namespace caffe { class CommonTest (line 13) | class CommonTest : public ::testing::Test {} function TEST_F (line 17) | TEST_F(CommonTest, TestCublasHandlerGPU) { function TEST_F (line 25) | TEST_F(CommonTest, TestBrewMode) { function TEST_F (line 32) | TEST_F(CommonTest, TestRandSeedCPU) { function TEST_F (line 49) | TEST_F(CommonTest, TestRandSeedGPU) { FILE: src/caffe/test/test_concat_layer.cpp type caffe (line 14) | namespace caffe { class ConcatLayerTest (line 17) | class ConcatLayerTest : public MultiDeviceTest { method ConcatLayerTest (line 21) | ConcatLayerTest() method SetUp (line 26) | virtual void SetUp() { function TYPED_TEST (line 61) | TYPED_TEST(ConcatLayerTest, TestSetupNum) { function TYPED_TEST (line 74) | TYPED_TEST(ConcatLayerTest, TestSetupChannels) { function TYPED_TEST (line 86) | TYPED_TEST(ConcatLayerTest, TestSetupChannelsNegativeIndexing) { function TYPED_TEST (line 102) | TYPED_TEST(ConcatLayerTest, TestForwardNum) { function TYPED_TEST (line 131) | TYPED_TEST(ConcatLayerTest, TestForwardChannels) { function TYPED_TEST (line 157) | TYPED_TEST(ConcatLayerTest, TestGradientNum) { function TYPED_TEST (line 167) | TYPED_TEST(ConcatLayerTest, TestGradientChannels) { FILE: src/caffe/test/test_contrastive_loss_layer.cpp type caffe (line 17) | namespace caffe { class ContrastiveLossLayerTest (line 20) | class ContrastiveLossLayerTest : public MultiDeviceTest { method ContrastiveLossLayerTest (line 24) | ContrastiveLossLayerTest() function TYPED_TEST (line 61) | TYPED_TEST(ContrastiveLossLayerTest, TestForward) { function TYPED_TEST (line 90) | TYPED_TEST(ContrastiveLossLayerTest, TestGradient) { function TYPED_TEST (line 103) | TYPED_TEST(ContrastiveLossLayerTest, TestForwardLegacy) { function TYPED_TEST (line 132) | TYPED_TEST(ContrastiveLossLayerTest, TestGradientLegacy) { FILE: src/caffe/test/test_convolution_layer.cpp type caffe (line 14) | namespace caffe { function caffe_conv (line 19) | void caffe_conv(const Blob* in, ConvolutionParameter* conv_param, class ConvolutionLayerTest (line 104) | class ConvolutionLayerTest : public MultiDeviceTest { method ConvolutionLayerTest (line 108) | ConvolutionLayerTest() method SetUp (line 113) | virtual void SetUp() { function TYPED_TEST (line 148) | TYPED_TEST(ConvolutionLayerTest, TestSetup) { function TYPED_TEST (line 184) | TYPED_TEST(ConvolutionLayerTest, TestSimpleConvolution) { function TYPED_TEST (line 220) | TYPED_TEST(ConvolutionLayerTest, Test1x1Convolution) { function TYPED_TEST (line 247) | TYPED_TEST(ConvolutionLayerTest, TestSimpleConvolutionGroup) { function TYPED_TEST (line 275) | TYPED_TEST(ConvolutionLayerTest, TestSobelConvolution) { function TYPED_TEST (line 371) | TYPED_TEST(ConvolutionLayerTest, TestGradient) { function TYPED_TEST (line 389) | TYPED_TEST(ConvolutionLayerTest, Test1x1Gradient) { function TYPED_TEST (line 407) | TYPED_TEST(ConvolutionLayerTest, TestGradientGroup) { class CuDNNConvolutionLayerTest (line 427) | class CuDNNConvolutionLayerTest : public GPUDeviceTest { method CuDNNConvolutionLayerTest (line 429) | CuDNNConvolutionLayerTest() method SetUp (line 434) | virtual void SetUp() { function TYPED_TEST (line 469) | TYPED_TEST(CuDNNConvolutionLayerTest, TestSetupCuDNN) { function TYPED_TEST (line 506) | TYPED_TEST(CuDNNConvolutionLayerTest, TestSimpleConvolutionCuDNN) { function TYPED_TEST (line 541) | TYPED_TEST(CuDNNConvolutionLayerTest, TestSimpleConvolutionGroupCuDNN) { function TYPED_TEST (line 568) | TYPED_TEST(CuDNNConvolutionLayerTest, TestSobelConvolutionCuDNN) { function TYPED_TEST (line 664) | TYPED_TEST(CuDNNConvolutionLayerTest, TestGradientCuDNN) { function TYPED_TEST (line 681) | TYPED_TEST(CuDNNConvolutionLayerTest, TestGradientGroupCuDNN) { FILE: src/caffe/test/test_data_layer.cpp type caffe (line 17) | namespace caffe { class DataLayerTest (line 22) | class DataLayerTest : public MultiDeviceTest { method DataLayerTest (line 26) | DataLayerTest() method SetUp (line 31) | virtual void SetUp() { method Fill (line 42) | void Fill(const bool unique_pixels, DataParameter_DB backend) { method TestRead (line 69) | void TestRead() { method TestReshape (line 107) | void TestReshape(DataParameter_DB backend) { method TestReadCrop (line 172) | void TestReadCrop(Phase phase) { method TestReadCropTrainSequenceSeeded (line 226) | void TestReadCropTrainSequenceSeeded() { method TestReadCropTrainSequenceUnseeded (line 281) | void TestReadCropTrainSequenceUnseeded() { function TYPED_TEST (line 351) | TYPED_TEST(DataLayerTest, TestReadLevelDB) { function TYPED_TEST (line 357) | TYPED_TEST(DataLayerTest, TestReshapeLevelDB) { function TYPED_TEST (line 361) | TYPED_TEST(DataLayerTest, TestReadCropTrainLevelDB) { function TYPED_TEST (line 369) | TYPED_TEST(DataLayerTest, TestReadCropTrainSequenceSeededLevelDB) { function TYPED_TEST (line 377) | TYPED_TEST(DataLayerTest, TestReadCropTrainSequenceUnseededLevelDB) { function TYPED_TEST (line 383) | TYPED_TEST(DataLayerTest, TestReadCropTestLevelDB) { function TYPED_TEST (line 389) | TYPED_TEST(DataLayerTest, TestReadLMDB) { function TYPED_TEST (line 395) | TYPED_TEST(DataLayerTest, TestReshapeLMDB) { function TYPED_TEST (line 399) | TYPED_TEST(DataLayerTest, TestReadCropTrainLMDB) { function TYPED_TEST (line 407) | TYPED_TEST(DataLayerTest, TestReadCropTrainSequenceSeededLMDB) { function TYPED_TEST (line 415) | TYPED_TEST(DataLayerTest, TestReadCropTrainSequenceUnseededLMDB) { function TYPED_TEST (line 421) | TYPED_TEST(DataLayerTest, TestReadCropTestLMDB) { FILE: src/caffe/test/test_data_transformer.cpp type caffe (line 16) | namespace caffe { function FillDatum (line 18) | void FillDatum(const int label, const int channels, const int height, class DataTransformTest (line 33) | class DataTransformTest : public ::testing::Test { method DataTransformTest (line 35) | DataTransformTest() method NumSequenceMatches (line 39) | int NumSequenceMatches(const TransformationParameter transform_param, function TYPED_TEST (line 83) | TYPED_TEST(DataTransformTest, TestEmptyTransform) { function TYPED_TEST (line 107) | TYPED_TEST(DataTransformTest, TestEmptyTransformUniquePixels) { function TYPED_TEST (line 131) | TYPED_TEST(DataTransformTest, TestCropSize) { function TYPED_TEST (line 160) | TYPED_TEST(DataTransformTest, TestCropTrain) { function TYPED_TEST (line 177) | TYPED_TEST(DataTransformTest, TestCropTest) { function TYPED_TEST (line 194) | TYPED_TEST(DataTransformTest, TestMirrorTrain) { function TYPED_TEST (line 210) | TYPED_TEST(DataTransformTest, TestMirrorTest) { function TYPED_TEST (line 226) | TYPED_TEST(DataTransformTest, TestCropMirrorTrain) { function TYPED_TEST (line 248) | TYPED_TEST(DataTransformTest, TestCropMirrorTest) { function TYPED_TEST (line 270) | TYPED_TEST(DataTransformTest, TestMeanValue) { function TYPED_TEST (line 292) | TYPED_TEST(DataTransformTest, TestMeanValues) { function TYPED_TEST (line 317) | TYPED_TEST(DataTransformTest, TestMeanFile) { FILE: src/caffe/test/test_db.cpp type caffe (line 13) | namespace caffe { class DBTest (line 18) | class DBTest : public ::testing::Test { method DBTest (line 20) | DBTest() method SetUp (line 24) | virtual void SetUp() { type TypeLevelDB (line 49) | struct TypeLevelDB { type TypeLMDB (line 54) | struct TypeLMDB { function TYPED_TEST (line 64) | TYPED_TEST(DBTest, TestGetDB) { function TYPED_TEST (line 68) | TYPED_TEST(DBTest, TestNext) { function TYPED_TEST (line 79) | TYPED_TEST(DBTest, TestSeekToFirst) { function TYPED_TEST (line 95) | TYPED_TEST(DBTest, TestKeyValue) { function TYPED_TEST (line 119) | TYPED_TEST(DBTest, TestWrite) { FILE: src/caffe/test/test_deconvolution_layer.cpp type caffe (line 14) | namespace caffe { class DeconvolutionLayerTest (line 19) | class DeconvolutionLayerTest : public MultiDeviceTest { method DeconvolutionLayerTest (line 23) | DeconvolutionLayerTest() method SetUp (line 28) | virtual void SetUp() { function TYPED_TEST (line 56) | TYPED_TEST(DeconvolutionLayerTest, TestSetup) { function TYPED_TEST (line 92) | TYPED_TEST(DeconvolutionLayerTest, TestSimpleDeconvolution) { function TYPED_TEST (line 140) | TYPED_TEST(DeconvolutionLayerTest, TestGradient) { FILE: src/caffe/test/test_dummy_data_layer.cpp type caffe (line 13) | namespace caffe { class DummyDataLayerTest (line 16) | class DummyDataLayerTest : public CPUDeviceTest { method DummyDataLayerTest (line 18) | DummyDataLayerTest() method SetUp (line 23) | virtual void SetUp() { function TYPED_TEST (line 46) | TYPED_TEST(DummyDataLayerTest, TestOneTopConstant) { function TYPED_TEST (line 75) | TYPED_TEST(DummyDataLayerTest, TestTwoTopConstant) { function TYPED_TEST (line 113) | TYPED_TEST(DummyDataLayerTest, TestThreeTopConstantGaussianConstant) { FILE: src/caffe/test/test_eltwise_layer.cpp type caffe (line 14) | namespace caffe { class EltwiseLayerTest (line 17) | class EltwiseLayerTest : public MultiDeviceTest { method EltwiseLayerTest (line 21) | EltwiseLayerTest() function TYPED_TEST (line 54) | TYPED_TEST(EltwiseLayerTest, TestSetUp) { function TYPED_TEST (line 68) | TYPED_TEST(EltwiseLayerTest, TestProd) { function TYPED_TEST (line 87) | TYPED_TEST(EltwiseLayerTest, TestSum) { function TYPED_TEST (line 106) | TYPED_TEST(EltwiseLayerTest, TestSumCoeff) { function TYPED_TEST (line 129) | TYPED_TEST(EltwiseLayerTest, TestStableProdGradient) { function TYPED_TEST (line 141) | TYPED_TEST(EltwiseLayerTest, TestUnstableProdGradient) { function TYPED_TEST (line 153) | TYPED_TEST(EltwiseLayerTest, TestSumGradient) { function TYPED_TEST (line 164) | TYPED_TEST(EltwiseLayerTest, TestSumCoeffGradient) { function TYPED_TEST (line 178) | TYPED_TEST(EltwiseLayerTest, TestMax) { function TYPED_TEST (line 198) | TYPED_TEST(EltwiseLayerTest, TestMaxGradient) { FILE: src/caffe/test/test_euclidean_loss_layer.cpp type caffe (line 16) | namespace caffe { class EuclideanLossLayerTest (line 19) | class EuclideanLossLayerTest : public MultiDeviceTest { method EuclideanLossLayerTest (line 23) | EuclideanLossLayerTest() method TestForward (line 42) | void TestForward() { function TYPED_TEST (line 75) | TYPED_TEST(EuclideanLossLayerTest, TestForward) { function TYPED_TEST (line 79) | TYPED_TEST(EuclideanLossLayerTest, TestGradient) { FILE: src/caffe/test/test_filler.cpp type caffe (line 9) | namespace caffe { class ConstantFillerTest (line 12) | class ConstantFillerTest : public ::testing::Test { method ConstantFillerTest (line 14) | ConstantFillerTest() function TYPED_TEST (line 29) | TYPED_TEST(ConstantFillerTest, TestFill) { class UniformFillerTest (line 40) | class UniformFillerTest : public ::testing::Test { method UniformFillerTest (line 42) | UniformFillerTest() function TYPED_TEST (line 58) | TYPED_TEST(UniformFillerTest, TestFill) { class PositiveUnitballFillerTest (line 69) | class PositiveUnitballFillerTest : public ::testing::Test { method PositiveUnitballFillerTest (line 71) | PositiveUnitballFillerTest() function TYPED_TEST (line 85) | TYPED_TEST(PositiveUnitballFillerTest, TestFill) { class GaussianFillerTest (line 106) | class GaussianFillerTest : public ::testing::Test { method GaussianFillerTest (line 108) | GaussianFillerTest() function TYPED_TEST (line 124) | TYPED_TEST(GaussianFillerTest, TestFill) { class XavierFillerTest (line 146) | class XavierFillerTest : public ::testing::Test { method XavierFillerTest (line 148) | XavierFillerTest() method test_params (line 152) | virtual void test_params(FillerParameter_VarianceNorm variance_norm, function TYPED_TEST (line 181) | TYPED_TEST(XavierFillerTest, TestFillFanIn) { function TYPED_TEST (line 185) | TYPED_TEST(XavierFillerTest, TestFillFanOut) { function TYPED_TEST (line 189) | TYPED_TEST(XavierFillerTest, TestFillAverage) { class MSRAFillerTest (line 195) | class MSRAFillerTest : public ::testing::Test { method MSRAFillerTest (line 197) | MSRAFillerTest() method test_params (line 201) | virtual void test_params(FillerParameter_VarianceNorm variance_norm, function TYPED_TEST (line 230) | TYPED_TEST(MSRAFillerTest, TestFillFanIn) { function TYPED_TEST (line 234) | TYPED_TEST(MSRAFillerTest, TestFillFanOut) { function TYPED_TEST (line 238) | TYPED_TEST(MSRAFillerTest, TestFillAverage) { FILE: src/caffe/test/test_filter_layer.cpp type caffe (line 15) | namespace caffe { class FilterLayerTest (line 18) | class FilterLayerTest : public MultiDeviceTest { method FilterLayerTest (line 22) | FilterLayerTest() method SetUp (line 28) | virtual void SetUp() { function TYPED_TEST (line 69) | TYPED_TEST(FilterLayerTest, TestReshape) { function TYPED_TEST (line 89) | TYPED_TEST(FilterLayerTest, TestForward) { function TYPED_TEST (line 117) | TYPED_TEST(FilterLayerTest, TestGradient) { FILE: src/caffe/test/test_flatten_layer.cpp type caffe (line 14) | namespace caffe { class FlattenLayerTest (line 17) | class FlattenLayerTest : public MultiDeviceTest { method FlattenLayerTest (line 20) | FlattenLayerTest() function TYPED_TEST (line 40) | TYPED_TEST(FlattenLayerTest, TestSetup) { function TYPED_TEST (line 50) | TYPED_TEST(FlattenLayerTest, TestSetupWithAxis) { function TYPED_TEST (line 62) | TYPED_TEST(FlattenLayerTest, TestSetupWithEndAxis) { function TYPED_TEST (line 74) | TYPED_TEST(FlattenLayerTest, TestSetupWithStartAndEndAxis) { function TYPED_TEST (line 86) | TYPED_TEST(FlattenLayerTest, TestForward) { function TYPED_TEST (line 100) | TYPED_TEST(FlattenLayerTest, TestGradient) { FILE: src/caffe/test/test_gradient_based_solver.cpp type caffe (line 20) | namespace caffe { class GradientBasedSolverTest (line 23) | class GradientBasedSolverTest : public MultiDeviceTest { method GradientBasedSolverTest (line 27) | GradientBasedSolverTest() : method InitSolverFromProtoString (line 53) | virtual void InitSolverFromProtoString(const string& proto) { method string (line 71) | string RunLeastSquaresSolver(const Dtype learning_rate, method ComputeLeastSquaresUpdate (line 226) | void ComputeLeastSquaresUpdate(const Dtype learning_rate, method CheckLeastSquaresUpdate (line 363) | void CheckLeastSquaresUpdate( method CheckAccumulation (line 413) | void CheckAccumulation(const Dtype kLearningRate, const Dtype kWeigh... method TestLeastSquaresUpdate (line 467) | void TestLeastSquaresUpdate(const Dtype learning_rate = 1.0, method TestSnapshot (line 504) | void TestSnapshot(const Dtype learning_rate = 1.0, class SGDSolverTest (line 577) | class SGDSolverTest : public GradientBasedSolverTest { method InitSolver (line 581) | virtual void InitSolver(const SolverParameter& param) { method SolverParameter_SolverType (line 585) | virtual SolverParameter_SolverType solver_type() { function TYPED_TEST (line 592) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdate) { function TYPED_TEST (line 596) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateLROneHundredth) { function TYPED_TEST (line 602) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithWeightDecay) { function TYPED_TEST (line 613) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithWeightDecayMultiIt... function TYPED_TEST (line 624) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithMomentum) { function TYPED_TEST (line 635) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithMomentumMultiIter) { function TYPED_TEST (line 646) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithEverything) { function TYPED_TEST (line 657) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithEverythingShare) { function TYPED_TEST (line 669) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithEverythingAccum) { function TYPED_TEST (line 680) | TYPED_TEST(SGDSolverTest, TestLeastSquaresUpdateWithEverythingAccumSha... function TYPED_TEST (line 692) | TYPED_TEST(SGDSolverTest, TestSnapshot) { function TYPED_TEST (line 703) | TYPED_TEST(SGDSolverTest, TestSnapshotShare) { class AdaGradSolverTest (line 717) | class AdaGradSolverTest : public GradientBasedSolverTest { method InitSolver (line 721) | virtual void InitSolver(const SolverParameter& param) { method SolverParameter_SolverType (line 724) | virtual SolverParameter_SolverType solver_type() { function TYPED_TEST (line 731) | TYPED_TEST(AdaGradSolverTest, TestAdaGradLeastSquaresUpdate) { function TYPED_TEST (line 735) | TYPED_TEST(AdaGradSolverTest, TestAdaGradLeastSquaresUpdateLROneHundre... function TYPED_TEST (line 741) | TYPED_TEST(AdaGradSolverTest, TestAdaGradLeastSquaresUpdateWithWeightD... function TYPED_TEST (line 748) | TYPED_TEST(AdaGradSolverTest, TestAdaGradLeastSquaresUpdateWithEveryth... function TYPED_TEST (line 759) | TYPED_TEST(AdaGradSolverTest, function TYPED_TEST (line 772) | TYPED_TEST(AdaGradSolverTest, TestLeastSquaresUpdateWithEverythingAccu... function TYPED_TEST (line 783) | TYPED_TEST(AdaGradSolverTest, TestLeastSquaresUpdateWithEverythingAccu... function TYPED_TEST (line 795) | TYPED_TEST(AdaGradSolverTest, TestSnapshot) { function TYPED_TEST (line 806) | TYPED_TEST(AdaGradSolverTest, TestSnapshotShare) { class NesterovSolverTest (line 820) | class NesterovSolverTest : public GradientBasedSolverTest { method InitSolver (line 824) | virtual void InitSolver(const SolverParameter& param) { method SolverParameter_SolverType (line 827) | virtual SolverParameter_SolverType solver_type() { function TYPED_TEST (line 834) | TYPED_TEST(NesterovSolverTest, TestNesterovLeastSquaresUpdate) { function TYPED_TEST (line 838) | TYPED_TEST(NesterovSolverTest, TestNesterovLeastSquaresUpdateLROneHund... function TYPED_TEST (line 844) | TYPED_TEST(NesterovSolverTest, TestNesterovLeastSquaresUpdateWithWeigh... function TYPED_TEST (line 851) | TYPED_TEST(NesterovSolverTest, function TYPED_TEST (line 863) | TYPED_TEST(NesterovSolverTest, TestNesterovLeastSquaresUpdateWithMomen... function TYPED_TEST (line 874) | TYPED_TEST(NesterovSolverTest, TestLeastSquaresUpdateWithMomentumMulti... function TYPED_TEST (line 885) | TYPED_TEST(NesterovSolverTest, TestNesterovLeastSquaresUpdateWithEvery... function TYPED_TEST (line 896) | TYPED_TEST(NesterovSolverTest, function TYPED_TEST (line 909) | TYPED_TEST(NesterovSolverTest, TestLeastSquaresUpdateWithEverythingAcc... function TYPED_TEST (line 920) | TYPED_TEST(NesterovSolverTest, TestLeastSquaresUpdateWithEverythingAcc... function TYPED_TEST (line 932) | TYPED_TEST(NesterovSolverTest, TestSnapshot) { function TYPED_TEST (line 943) | TYPED_TEST(NesterovSolverTest, TestSnapshotShare) { class AdaDeltaSolverTest (line 956) | class AdaDeltaSolverTest : public GradientBasedSolverTest { method InitSolver (line 960) | virtual void InitSolver(const SolverParameter& param) { method SolverParameter_SolverType (line 964) | virtual SolverParameter_SolverType solver_type() { function TYPED_TEST (line 971) | TYPED_TEST(AdaDeltaSolverTest, TestAdaDeltaLeastSquaresUpdate) { function TYPED_TEST (line 977) | TYPED_TEST(AdaDeltaSolverTest, TestAdaDeltaLeastSquaresUpdateWithWeigh... function TYPED_TEST (line 985) | TYPED_TEST(AdaDeltaSolverTest, TestAdaDeltaLeastSquaresUpdateWithHalfM... function TYPED_TEST (line 996) | TYPED_TEST(AdaDeltaSolverTest, TestAdaDeltaLeastSquaresUpdateWithMomen... function TYPED_TEST (line 1007) | TYPED_TEST(AdaDeltaSolverTest, TestLeastSquaresUpdateWithMomentumMulti... function TYPED_TEST (line 1018) | TYPED_TEST(AdaDeltaSolverTest, TestAdaDeltaLeastSquaresUpdateWithEvery... function TYPED_TEST (line 1029) | TYPED_TEST(AdaDeltaSolverTest, function TYPED_TEST (line 1042) | TYPED_TEST(AdaDeltaSolverTest, TestLeastSquaresUpdateWithEverythingAcc... function TYPED_TEST (line 1053) | TYPED_TEST(AdaDeltaSolverTest, TestLeastSquaresUpdateWithEverythingAcc... function TYPED_TEST (line 1065) | TYPED_TEST(AdaDeltaSolverTest, TestSnapshot) { function TYPED_TEST (line 1076) | TYPED_TEST(AdaDeltaSolverTest, TestSnapshotShare) { class AdamSolverTest (line 1089) | class AdamSolverTest : public GradientBasedSolverTest { method InitSolver (line 1093) | virtual void InitSolver(const SolverParameter& param) { method SolverParameter_SolverType (line 1101) | virtual SolverParameter_SolverType solver_type() { function TYPED_TEST (line 1108) | TYPED_TEST(AdamSolverTest, TestAdamLeastSquaresUpdate) { function TYPED_TEST (line 1116) | TYPED_TEST(AdamSolverTest, TestAdamLeastSquaresUpdateWithWeightDecay) { function TYPED_TEST (line 1124) | TYPED_TEST(AdamSolverTest, TestAdamLeastSquaresUpdateWithEverything) { function TYPED_TEST (line 1135) | TYPED_TEST(AdamSolverTest, TestAdamLeastSquaresUpdateWithEverythingSha... function TYPED_TEST (line 1147) | TYPED_TEST(AdamSolverTest, TestLeastSquaresUpdateWithEverythingAccum) { function TYPED_TEST (line 1158) | TYPED_TEST(AdamSolverTest, TestLeastSquaresUpdateWithEverythingAccumSh... function TYPED_TEST (line 1170) | TYPED_TEST(AdamSolverTest, TestSnapshot) { function TYPED_TEST (line 1181) | TYPED_TEST(AdamSolverTest, TestSnapshotShare) { class RMSPropSolverTest (line 1194) | class RMSPropSolverTest : public GradientBasedSolverTest { method InitSolver (line 1198) | virtual void InitSolver(const SolverParameter& param) { method SolverParameter_SolverType (line 1204) | virtual SolverParameter_SolverType solver_type() { function TYPED_TEST (line 1211) | TYPED_TEST(RMSPropSolverTest, TestRMSPropLeastSquaresUpdateWithWeightD... function TYPED_TEST (line 1218) | TYPED_TEST(RMSPropSolverTest, TestRMSPropLeastSquaresUpdateWithRmsDeca... function TYPED_TEST (line 1229) | TYPED_TEST(RMSPropSolverTest, TestRMSPropLeastSquaresUpdateWithEveryth... function TYPED_TEST (line 1240) | TYPED_TEST(RMSPropSolverTest, function TYPED_TEST (line 1253) | TYPED_TEST(RMSPropSolverTest, TestLeastSquaresUpdateWithEverythingAccu... function TYPED_TEST (line 1264) | TYPED_TEST(RMSPropSolverTest, TestLeastSquaresUpdateWithEverythingAccu... function TYPED_TEST (line 1276) | TYPED_TEST(RMSPropSolverTest, TestSnapshot) { function TYPED_TEST (line 1287) | TYPED_TEST(RMSPropSolverTest, TestSnapshotShare) { FILE: src/caffe/test/test_hdf5_output_layer.cpp type caffe (line 15) | namespace caffe { class HDF5OutputLayerTest (line 18) | class HDF5OutputLayerTest : public MultiDeviceTest { method HDF5OutputLayerTest (line 22) | HDF5OutputLayerTest() function TYPED_TEST (line 73) | TYPED_TEST(HDF5OutputLayerTest, TestForward) { FILE: src/caffe/test/test_hdf5data_layer.cpp type caffe (line 14) | namespace caffe { class HDF5DataLayerTest (line 17) | class HDF5DataLayerTest : public MultiDeviceTest { method HDF5DataLayerTest (line 21) | HDF5DataLayerTest() method SetUp (line 26) | virtual void SetUp() { function TYPED_TEST (line 54) | TYPED_TEST(HDF5DataLayerTest, TestRead) { FILE: src/caffe/test/test_hinge_loss_layer.cpp type caffe (line 16) | namespace caffe { class HingeLossLayerTest (line 19) | class HingeLossLayerTest : public MultiDeviceTest { method HingeLossLayerTest (line 23) | HingeLossLayerTest() function TYPED_TEST (line 55) | TYPED_TEST(HingeLossLayerTest, TestGradientL1) { function TYPED_TEST (line 64) | TYPED_TEST(HingeLossLayerTest, TestGradientL2) { FILE: src/caffe/test/test_im2col_layer.cpp type caffe (line 14) | namespace caffe { class Im2colLayerTest (line 17) | class Im2colLayerTest : public MultiDeviceTest { method Im2colLayerTest (line 20) | Im2colLayerTest() function TYPED_TEST (line 39) | TYPED_TEST(Im2colLayerTest, TestSetup) { function TYPED_TEST (line 54) | TYPED_TEST(Im2colLayerTest, TestForward) { function TYPED_TEST (line 71) | TYPED_TEST(Im2colLayerTest, TestGradient) { function TYPED_TEST (line 85) | TYPED_TEST(Im2colLayerTest, TestRect) { function TYPED_TEST (line 104) | TYPED_TEST(Im2colLayerTest, TestRectGradient) { FILE: src/caffe/test/test_image_data_layer.cpp type caffe (line 16) | namespace caffe { class ImageDataLayerTest (line 19) | class ImageDataLayerTest : public MultiDeviceTest { method ImageDataLayerTest (line 23) | ImageDataLayerTest() method SetUp (line 27) | virtual void SetUp() { function TYPED_TEST (line 64) | TYPED_TEST(ImageDataLayerTest, TestRead) { function TYPED_TEST (line 90) | TYPED_TEST(ImageDataLayerTest, TestResize) { function TYPED_TEST (line 118) | TYPED_TEST(ImageDataLayerTest, TestReshape) { function TYPED_TEST (line 145) | TYPED_TEST(ImageDataLayerTest, TestShuffle) { FILE: src/caffe/test/test_infogain_loss_layer.cpp type caffe (line 16) | namespace caffe { class InfogainLossLayerTest (line 19) | class InfogainLossLayerTest : public MultiDeviceTest { method InfogainLossLayerTest (line 23) | InfogainLossLayerTest() function TYPED_TEST (line 61) | TYPED_TEST(InfogainLossLayerTest, TestGradient) { FILE: src/caffe/test/test_inner_product_layer.cpp type caffe (line 14) | namespace caffe { class InnerProductLayerTest (line 21) | class InnerProductLayerTest : public MultiDeviceTest { method InnerProductLayerTest (line 24) | InnerProductLayerTest() function TYPED_TEST (line 48) | TYPED_TEST(InnerProductLayerTest, TestSetUp) { function TYPED_TEST (line 64) | TYPED_TEST(InnerProductLayerTest, TestForward) { function TYPED_TEST (line 95) | TYPED_TEST(InnerProductLayerTest, TestForwardNoBatch) { function TYPED_TEST (line 126) | TYPED_TEST(InnerProductLayerTest, TestGradient) { FILE: src/caffe/test/test_internal_thread.cpp type caffe (line 9) | namespace caffe { class InternalThreadTest (line 12) | class InternalThreadTest : public ::testing::Test {} function TEST_F (line 14) | TEST_F(InternalThreadTest, TestStartAndExit) { class TestThreadA (line 23) | class TestThreadA : public InternalThread { method InternalThreadEntry (line 24) | void InternalThreadEntry() { class TestThreadB (line 29) | class TestThreadB : public InternalThread { method InternalThreadEntry (line 30) | void InternalThreadEntry() { function TEST_F (line 35) | TEST_F(InternalThreadTest, TestRandomSeed) { FILE: src/caffe/test/test_io.cpp type caffe (line 15) | namespace caffe { class IOTest (line 17) | class IOTest : public ::testing::Test {} function ReadImageToDatumReference (line 19) | bool ReadImageToDatumReference(const string& filename, const int label, function TEST_F (line 64) | TEST_F(IOTest, TestReadImageToDatum) { function TEST_F (line 73) | TEST_F(IOTest, TestReadImageToDatumReference) { function TEST_F (line 92) | TEST_F(IOTest, TestReadImageToDatumReferenceResized) { function TEST_F (line 110) | TEST_F(IOTest, TestReadImageToDatumContent) { function TEST_F (line 131) | TEST_F(IOTest, TestReadImageToDatumContentGray) { function TEST_F (line 150) | TEST_F(IOTest, TestReadImageToDatumResized) { function TEST_F (line 160) | TEST_F(IOTest, TestReadImageToDatumResizedSquare) { function TEST_F (line 169) | TEST_F(IOTest, TestReadImageToDatumGray) { function TEST_F (line 179) | TEST_F(IOTest, TestReadImageToDatumResizedGray) { function TEST_F (line 189) | TEST_F(IOTest, TestReadImageToCVMat) { function TEST_F (line 197) | TEST_F(IOTest, TestReadImageToCVMatResized) { function TEST_F (line 205) | TEST_F(IOTest, TestReadImageToCVMatResizedSquare) { function TEST_F (line 213) | TEST_F(IOTest, TestReadImageToCVMatGray) { function TEST_F (line 222) | TEST_F(IOTest, TestReadImageToCVMatResizedGray) { function TEST_F (line 231) | TEST_F(IOTest, TestCVMatToDatum) { function TEST_F (line 241) | TEST_F(IOTest, TestCVMatToDatumContent) { function TEST_F (line 260) | TEST_F(IOTest, TestCVMatToDatumReference) { function TEST_F (line 279) | TEST_F(IOTest, TestReadFileToDatum) { function TEST_F (line 288) | TEST_F(IOTest, TestDecodeDatum) { function TEST_F (line 308) | TEST_F(IOTest, TestDecodeDatumToCVMat) { function TEST_F (line 322) | TEST_F(IOTest, TestDecodeDatumToCVMatContent) { function TEST_F (line 342) | TEST_F(IOTest, TestDecodeDatumNative) { function TEST_F (line 362) | TEST_F(IOTest, TestDecodeDatumToCVMatNative) { function TEST_F (line 372) | TEST_F(IOTest, TestDecodeDatumNativeGray) { function TEST_F (line 392) | TEST_F(IOTest, TestDecodeDatumToCVMatNativeGray) { function TEST_F (line 402) | TEST_F(IOTest, TestDecodeDatumToCVMatContentNative) { FILE: src/caffe/test/test_layer_factory.cpp type caffe (line 15) | namespace caffe { class LayerFactoryTest (line 18) | class LayerFactoryTest : public MultiDeviceTest {} function TYPED_TEST (line 22) | TYPED_TEST(LayerFactoryTest, TestCreateLayer) { FILE: src/caffe/test/test_lrn_layer.cpp type caffe (line 18) | namespace caffe { class LRNLayerTest (line 21) | class LRNLayerTest : public MultiDeviceTest { method LRNLayerTest (line 25) | LRNLayerTest() method SetUp (line 29) | virtual void SetUp() { function TYPED_TEST (line 115) | TYPED_TEST(LRNLayerTest, TestSetupAcrossChannels) { function TYPED_TEST (line 126) | TYPED_TEST(LRNLayerTest, TestForwardAcrossChannels) { function TYPED_TEST (line 141) | TYPED_TEST(LRNLayerTest, TestForwardAcrossChannelsLargeRegion) { function TYPED_TEST (line 157) | TYPED_TEST(LRNLayerTest, TestGradientAcrossChannels) { function TYPED_TEST (line 178) | TYPED_TEST(LRNLayerTest, TestGradientAcrossChannelsLargeRegion) { function TYPED_TEST (line 200) | TYPED_TEST(LRNLayerTest, TestSetupWithinChannel) { function TYPED_TEST (line 214) | TYPED_TEST(LRNLayerTest, TestForwardWithinChannel) { function TYPED_TEST (line 232) | TYPED_TEST(LRNLayerTest, TestGradientWithinChannel) { FILE: src/caffe/test/test_math_functions.cpp type caffe (line 16) | namespace caffe { class MathFunctionsTest (line 19) | class MathFunctionsTest : public MultiDeviceTest { method MathFunctionsTest (line 23) | MathFunctionsTest() method SetUp (line 28) | virtual void SetUp() { method ReferenceHammingDistance (line 45) | int ReferenceHammingDistance(const int n, const Dtype* x, const Dtyp... class CPUMathFunctionsTest (line 70) | class CPUMathFunctionsTest function TYPED_TEST (line 76) | TYPED_TEST(CPUMathFunctionsTest, TestNothing) { function TYPED_TEST (line 81) | TYPED_TEST(CPUMathFunctionsTest, TestHammingDistance) { function TYPED_TEST (line 89) | TYPED_TEST(CPUMathFunctionsTest, TestAsum) { function TYPED_TEST (line 100) | TYPED_TEST(CPUMathFunctionsTest, TestSign) { function TYPED_TEST (line 110) | TYPED_TEST(CPUMathFunctionsTest, TestSgnbit) { function TYPED_TEST (line 120) | TYPED_TEST(CPUMathFunctionsTest, TestFabs) { function TYPED_TEST (line 130) | TYPED_TEST(CPUMathFunctionsTest, TestScale) { function TYPED_TEST (line 143) | TYPED_TEST(CPUMathFunctionsTest, TestCopy) { class GPUMathFunctionsTest (line 156) | class GPUMathFunctionsTest : public MathFunctionsTest... function TYPED_TEST (line 162) | TYPED_TEST(GPUMathFunctionsTest, DISABLED_TestHammingDistance) { function TYPED_TEST (line 173) | TYPED_TEST(GPUMathFunctionsTest, TestAsum) { function TYPED_TEST (line 185) | TYPED_TEST(GPUMathFunctionsTest, TestSign) { function TYPED_TEST (line 196) | TYPED_TEST(GPUMathFunctionsTest, TestSgnbit) { function TYPED_TEST (line 207) | TYPED_TEST(GPUMathFunctionsTest, TestFabs) { function TYPED_TEST (line 218) | TYPED_TEST(GPUMathFunctionsTest, TestScale) { function TYPED_TEST (line 231) | TYPED_TEST(GPUMathFunctionsTest, TestCopy) { FILE: src/caffe/test/test_maxpool_dropout_layers.cpp type caffe (line 14) | namespace caffe { class MaxPoolingDropoutTest (line 17) | class MaxPoolingDropoutTest : public MultiDeviceTest { method MaxPoolingDropoutTest (line 20) | MaxPoolingDropoutTest() method SetUp (line 23) | virtual void SetUp() { function TYPED_TEST (line 43) | TYPED_TEST(MaxPoolingDropoutTest, TestSetup) { function TYPED_TEST (line 60) | TYPED_TEST(MaxPoolingDropoutTest, TestForward) { function TYPED_TEST (line 89) | TYPED_TEST(MaxPoolingDropoutTest, TestBackward) { FILE: src/caffe/test/test_memory_data_layer.cpp type caffe (line 11) | namespace caffe { class MemoryDataLayerTest (line 14) | class MemoryDataLayerTest : public MultiDeviceTest { method MemoryDataLayerTest (line 18) | MemoryDataLayerTest() method SetUp (line 23) | virtual void SetUp() { function TYPED_TEST (line 64) | TYPED_TEST(MemoryDataLayerTest, TestSetup) { function TYPED_TEST (line 87) | TYPED_TEST(MemoryDataLayerTest, TestForward) { function TYPED_TEST (line 116) | TYPED_TEST(MemoryDataLayerTest, AddDatumVectorDefaultTransform) { function TYPED_TEST (line 170) | TYPED_TEST(MemoryDataLayerTest, AddMatVectorDefaultTransform) { function TYPED_TEST (line 216) | TYPED_TEST(MemoryDataLayerTest, TestSetBatchSize) { FILE: src/caffe/test/test_multinomial_logistic_loss_layer.cpp type caffe (line 16) | namespace caffe { class MultinomialLogisticLossLayerTest (line 19) | class MultinomialLogisticLossLayerTest : public CPUDeviceTest { method MultinomialLogisticLossLayerTest (line 21) | MultinomialLogisticLossLayerTest() function TYPED_TEST (line 52) | TYPED_TEST(MultinomialLogisticLossLayerTest, TestGradientCPU) { FILE: src/caffe/test/test_mvn_layer.cpp type caffe (line 14) | namespace caffe { class MVNLayerTest (line 17) | class MVNLayerTest : public MultiDeviceTest { method MVNLayerTest (line 20) | MVNLayerTest() function TYPED_TEST (line 39) | TYPED_TEST(MVNLayerTest, TestForward) { function TYPED_TEST (line 73) | TYPED_TEST(MVNLayerTest, TestForwardMeanOnly) { function TYPED_TEST (line 105) | TYPED_TEST(MVNLayerTest, TestForwardAcrossChannels) { function TYPED_TEST (line 140) | TYPED_TEST(MVNLayerTest, TestGradient) { function TYPED_TEST (line 149) | TYPED_TEST(MVNLayerTest, TestGradientMeanOnly) { function TYPED_TEST (line 159) | TYPED_TEST(MVNLayerTest, TestGradientAcrossChannels) { FILE: src/caffe/test/test_net.cpp type caffe (line 17) | namespace caffe { class NetTest (line 20) | class NetTest : public MultiDeviceTest { method NetTest (line 24) | NetTest() : seed_(1701) {} method InitNetFromProtoString (line 26) | virtual void InitNetFromProtoString(const string& proto) { method CopyNetBlobs (line 32) | virtual void CopyNetBlobs(const bool copy_diff, method CopyNetParams (line 45) | virtual void CopyNetParams(const bool copy_diff, method InitTinyNet (line 58) | virtual void InitTinyNet(const bool force_backward = false, method InitTinyNetEuclidean (line 135) | virtual void InitTinyNetEuclidean(const bool force_backward = false) { method InitTrickyNet (line 195) | virtual void InitTrickyNet(Dtype* loss_weight = NULL) { method InitUnsharedWeightsNet (line 286) | virtual void InitUnsharedWeightsNet(const Dtype* loss_weight = NULL, method InitSharedWeightsNet (line 374) | virtual void InitSharedWeightsNet() { method InitDiffDataUnsharedWeightsNet (line 431) | virtual void InitDiffDataUnsharedWeightsNet() { method InitDiffDataSharedWeightsNet (line 493) | virtual void InitDiffDataSharedWeightsNet() { method InitReshapableNet (line 555) | virtual void InitReshapableNet() { method InitSkipPropNet (line 617) | virtual void InitSkipPropNet(bool test_skip_true) { function TYPED_TEST (line 722) | TYPED_TEST(NetTest, TestHasBlob) { function TYPED_TEST (line 731) | TYPED_TEST(NetTest, TestGetBlob) { function TYPED_TEST (line 740) | TYPED_TEST(NetTest, TestHasLayer) { function TYPED_TEST (line 748) | TYPED_TEST(NetTest, TestGetLayerByName) { function TYPED_TEST (line 756) | TYPED_TEST(NetTest, TestBottomNeedBackward) { function TYPED_TEST (line 769) | TYPED_TEST(NetTest, TestBottomNeedBackwardForce) { function TYPED_TEST (line 783) | TYPED_TEST(NetTest, TestBottomNeedBackwardEuclideanForce) { function TYPED_TEST (line 797) | TYPED_TEST(NetTest, TestBottomNeedBackwardTricky) { function TYPED_TEST (line 815) | TYPED_TEST(NetTest, TestLossWeight) { function TYPED_TEST (line 866) | TYPED_TEST(NetTest, TestLossWeightMidNet) { function TYPED_TEST (line 904) | TYPED_TEST(NetTest, TestComboLossWeight) { function TYPED_TEST (line 1034) | TYPED_TEST(NetTest, TestBackwardWithAccuracyLayer) { function TYPED_TEST (line 1045) | TYPED_TEST(NetTest, TestUnsharedWeightsDataNet) { function TYPED_TEST (line 1054) | TYPED_TEST(NetTest, TestSharedWeightsDataNet) { function TYPED_TEST (line 1063) | TYPED_TEST(NetTest, TestUnsharedWeightsDiffNet) { function TYPED_TEST (line 1081) | TYPED_TEST(NetTest, TestSharedWeightsDiffNet) { function TYPED_TEST (line 1101) | TYPED_TEST(NetTest, TestSharedWeightsUpdate) { function TYPED_TEST (line 1183) | TYPED_TEST(NetTest, TestSharedWeightsResume) { function TYPED_TEST (line 1229) | TYPED_TEST(NetTest, TestParamPropagateDown) { function TYPED_TEST (line 1311) | TYPED_TEST(NetTest, TestFromTo) { class FilterNetTest (line 1345) | class FilterNetTest : public ::testing::Test { method RunFilterNetTest (line 1347) | void RunFilterNetTest( function TEST_F (line 1367) | TEST_F(FilterNetTest, TestNoFilter) { function TEST_F (line 1391) | TEST_F(FilterNetTest, TestFilterLeNetTrainTest) { function TEST_F (line 1633) | TEST_F(FilterNetTest, TestFilterOutByStage) { function TEST_F (line 1672) | TEST_F(FilterNetTest, TestFilterOutByStage2) { function TEST_F (line 1711) | TEST_F(FilterNetTest, TestFilterInByStage) { function TEST_F (line 1737) | TEST_F(FilterNetTest, TestFilterInByStage2) { function TEST_F (line 1762) | TEST_F(FilterNetTest, TestFilterOutByMultipleStage) { function TEST_F (line 1805) | TEST_F(FilterNetTest, TestFilterInByMultipleStage) { function TEST_F (line 1833) | TEST_F(FilterNetTest, TestFilterInByMultipleStage2) { function TEST_F (line 1860) | TEST_F(FilterNetTest, TestFilterInByNotStage) { function TEST_F (line 1887) | TEST_F(FilterNetTest, TestFilterOutByNotStage) { function TEST_F (line 1923) | TEST_F(FilterNetTest, TestFilterOutByMinLevel) { function TEST_F (line 1962) | TEST_F(FilterNetTest, TestFilterOutByMaxLevel) { function TEST_F (line 2001) | TEST_F(FilterNetTest, TestFilterInByMinLevel) { function TEST_F (line 2026) | TEST_F(FilterNetTest, TestFilterInByMinLevel2) { function TEST_F (line 2052) | TEST_F(FilterNetTest, TestFilterInByMaxLevel) { function TEST_F (line 2077) | TEST_F(FilterNetTest, TestFilterInByMaxLevel2) { function TEST_F (line 2103) | TEST_F(FilterNetTest, TestFilterInOutByIncludeMultiRule) { function TEST_F (line 2166) | TEST_F(FilterNetTest, TestFilterInByIncludeMultiRule) { function TEST_F (line 2199) | TEST_F(FilterNetTest, TestFilterInOutByExcludeMultiRule) { function TYPED_TEST (line 2262) | TYPED_TEST(NetTest, TestReshape) { function TYPED_TEST (line 2320) | TYPED_TEST(NetTest, TestSkipPropagateDown) { FILE: src/caffe/test/test_neuron_layer.cpp type caffe (line 16) | namespace caffe { class NeuronLayerTest (line 19) | class NeuronLayerTest : public MultiDeviceTest { method NeuronLayerTest (line 23) | NeuronLayerTest() method TestDropoutForward (line 40) | void TestDropoutForward(const float dropout_ratio) { method TestExpForward (line 72) | void TestExpForward(const float base, const float scale, const float... method TestExpGradient (line 94) | void TestExpGradient(const float base, const float scale, const floa... method TestPReLU (line 104) | void TestPReLU(PReLULayer *layer) { method LogBottomInit (line 121) | void LogBottomInit() { method TestLogForward (line 129) | void TestLogForward(const float base, const float scale, const float... method TestLogGradient (line 153) | void TestLogGradient(const float base, const float scale, const floa... function TYPED_TEST (line 167) | TYPED_TEST(NeuronLayerTest, TestAbsVal) { function TYPED_TEST (line 181) | TYPED_TEST(NeuronLayerTest, TestAbsGradient) { function TYPED_TEST (line 190) | TYPED_TEST(NeuronLayerTest, TestReLU) { function TYPED_TEST (line 205) | TYPED_TEST(NeuronLayerTest, TestReLUGradient) { function TYPED_TEST (line 214) | TYPED_TEST(NeuronLayerTest, TestReLUWithNegativeSlope) { function TYPED_TEST (line 234) | TYPED_TEST(NeuronLayerTest, TestReLUGradientWithNegativeSlope) { function TYPED_TEST (line 245) | TYPED_TEST(NeuronLayerTest, TestSigmoid) { function TYPED_TEST (line 262) | TYPED_TEST(NeuronLayerTest, TestSigmoidGradient) { function TYPED_TEST (line 271) | TYPED_TEST(NeuronLayerTest, TestTanH) { function TYPED_TEST (line 294) | TYPED_TEST(NeuronLayerTest, TestTanHGradient) { function TYPED_TEST (line 303) | TYPED_TEST(NeuronLayerTest, TestExpLayer) { function TYPED_TEST (line 312) | TYPED_TEST(NeuronLayerTest, TestExpGradient) { function TYPED_TEST (line 321) | TYPED_TEST(NeuronLayerTest, TestExpLayerBase2) { function TYPED_TEST (line 329) | TYPED_TEST(NeuronLayerTest, TestExpGradientBase2) { function TYPED_TEST (line 337) | TYPED_TEST(NeuronLayerTest, TestExpLayerBase2Shift1) { function TYPED_TEST (line 345) | TYPED_TEST(NeuronLayerTest, TestExpGradientBase2Shift1) { function TYPED_TEST (line 353) | TYPED_TEST(NeuronLayerTest, TestExpLayerBase2Scale3) { function TYPED_TEST (line 361) | TYPED_TEST(NeuronLayerTest, TestExpGradientBase2Scale3) { function TYPED_TEST (line 369) | TYPED_TEST(NeuronLayerTest, TestExpLayerBase2Shift1Scale3) { function TYPED_TEST (line 377) | TYPED_TEST(NeuronLayerTest, TestExpGradientBase2Shift1Scale3) { function TYPED_TEST (line 385) | TYPED_TEST(NeuronLayerTest, TestLogLayer) { function TYPED_TEST (line 394) | TYPED_TEST(NeuronLayerTest, TestLogGradient) { function TYPED_TEST (line 403) | TYPED_TEST(NeuronLayerTest, TestLogLayerBase2) { function TYPED_TEST (line 411) | TYPED_TEST(NeuronLayerTest, TestLogGradientBase2) { function TYPED_TEST (line 419) | TYPED_TEST(NeuronLayerTest, TestLogLayerBase2Shift1) { function TYPED_TEST (line 427) | TYPED_TEST(NeuronLayerTest, TestLogGradientBase2Shift1) { function TYPED_TEST (line 435) | TYPED_TEST(NeuronLayerTest, TestLogLayerBase2Scale3) { function TYPED_TEST (line 443) | TYPED_TEST(NeuronLayerTest, TestLogGradientBase2Scale3) { function TYPED_TEST (line 451) | TYPED_TEST(NeuronLayerTest, TestLogLayerBase2Shift1Scale3) { function TYPED_TEST (line 459) | TYPED_TEST(NeuronLayerTest, TestLogGradientBase2Shift1Scale3) { function TYPED_TEST (line 467) | TYPED_TEST(NeuronLayerTest, TestDropoutHalf) { function TYPED_TEST (line 472) | TYPED_TEST(NeuronLayerTest, TestDropoutThreeQuarters) { function TYPED_TEST (line 477) | TYPED_TEST(NeuronLayerTest, TestDropoutTestPhase) { function TYPED_TEST (line 494) | TYPED_TEST(NeuronLayerTest, TestDropoutGradient) { function TYPED_TEST (line 504) | TYPED_TEST(NeuronLayerTest, TestDropoutGradientTest) { function TYPED_TEST (line 514) | TYPED_TEST(NeuronLayerTest, TestBNLL) { function TYPED_TEST (line 529) | TYPED_TEST(NeuronLayerTest, TestBNLLGradient) { function TYPED_TEST (line 538) | TYPED_TEST(NeuronLayerTest, TestPReLUParam) { function TYPED_TEST (line 550) | TYPED_TEST(NeuronLayerTest, TestPReLUForward) { function TYPED_TEST (line 561) | TYPED_TEST(NeuronLayerTest, TestPReLUForwardChannelShared) { function TYPED_TEST (line 570) | TYPED_TEST(NeuronLayerTest, TestPReLUGradient) { function TYPED_TEST (line 583) | TYPED_TEST(NeuronLayerTest, TestPReLUGradientChannelShared) { function TYPED_TEST (line 594) | TYPED_TEST(NeuronLayerTest, TestPReLUConsistencyReLU) { function TYPED_TEST (line 637) | TYPED_TEST(NeuronLayerTest, TestPReLUInPlace) { class CuDNNNeuronLayerTest (line 714) | class CuDNNNeuronLayerTest : public GPUDeviceTest { method CuDNNNeuronLayerTest (line 716) | CuDNNNeuronLayerTest() function TYPED_TEST (line 736) | TYPED_TEST(CuDNNNeuronLayerTest, TestReLUCuDNN) { function TYPED_TEST (line 750) | TYPED_TEST(CuDNNNeuronLayerTest, TestReLUGradientCuDNN) { function TYPED_TEST (line 758) | TYPED_TEST(CuDNNNeuronLayerTest, TestReLUWithNegativeSlopeCuDNN) { function TYPED_TEST (line 777) | TYPED_TEST(CuDNNNeuronLayerTest, TestReLUGradientWithNegativeSlopeCuDN... function TYPED_TEST (line 787) | TYPED_TEST(CuDNNNeuronLayerTest, TestSigmoidCuDNN) { function TYPED_TEST (line 803) | TYPED_TEST(CuDNNNeuronLayerTest, TestSigmoidGradientCuDNN) { function TYPED_TEST (line 811) | TYPED_TEST(CuDNNNeuronLayerTest, TestTanHCuDNN) { function TYPED_TEST (line 833) | TYPED_TEST(CuDNNNeuronLayerTest, TestTanHGradientCuDNN) { FILE: src/caffe/test/test_platform.cpp type caffe (line 11) | namespace caffe { class PlatformTest (line 15) | class PlatformTest : public ::testing::Test {} function TEST_F (line 17) | TEST_F(PlatformTest, TestInitialization) { FILE: src/caffe/test/test_pooling_layer.cpp type caffe (line 14) | namespace caffe { class PoolingLayerTest (line 17) | class PoolingLayerTest : public MultiDeviceTest { method PoolingLayerTest (line 21) | PoolingLayerTest() method SetUp (line 25) | virtual void SetUp() { method TestForwardSquare (line 46) | void TestForwardSquare() { method TestForwardRectHigh (line 118) | void TestForwardRectHigh() { method TestForwardRectWide (line 243) | void TestForwardRectWide() { function TYPED_TEST (line 373) | TYPED_TEST(PoolingLayerTest, TestSetup) { function TYPED_TEST (line 387) | TYPED_TEST(PoolingLayerTest, TestSetupPadded) { function TYPED_TEST (line 403) | TYPED_TEST(PoolingLayerTest, TestSetupGlobalPooling) { function TYPED_TEST (line 443) | TYPED_TEST(PoolingLayerTest, TestForwardMax) { function TYPED_TEST (line 449) | TYPED_TEST(PoolingLayerTest, TestForwardMaxTopMask) { function TYPED_TEST (line 456) | TYPED_TEST(PoolingLayerTest, TestGradientMax) { function TYPED_TEST (line 475) | TYPED_TEST(PoolingLayerTest, TestForwardMaxPadded) { function TYPED_TEST (line 520) | TYPED_TEST(PoolingLayerTest, TestGradientMaxTopMask) { function TYPED_TEST (line 540) | TYPED_TEST(PoolingLayerTest, TestForwardAve) { function TYPED_TEST (line 572) | TYPED_TEST(PoolingLayerTest, TestGradientAve) { function TYPED_TEST (line 590) | TYPED_TEST(PoolingLayerTest, TestGradientAvePadded) { class CuDNNPoolingLayerTest (line 611) | class CuDNNPoolingLayerTest : public GPUDeviceTest { method CuDNNPoolingLayerTest (line 613) | CuDNNPoolingLayerTest() method SetUp (line 617) | virtual void SetUp() { method TestForwardSquare (line 638) | void TestForwardSquare() { method TestForwardRectHigh (line 710) | void TestForwardRectHigh() { method TestForwardRectWide (line 835) | void TestForwardRectWide() { function TYPED_TEST (line 965) | TYPED_TEST(CuDNNPoolingLayerTest, TestSetupCuDNN) { function TYPED_TEST (line 978) | TYPED_TEST(CuDNNPoolingLayerTest, TestSetupPaddedCuDNN) { function TYPED_TEST (line 1019) | TYPED_TEST(CuDNNPoolingLayerTest, TestForwardMaxCuDNN) { function TYPED_TEST (line 1036) | TYPED_TEST(CuDNNPoolingLayerTest, TestGradientMaxCuDNN) { function TYPED_TEST (line 1055) | TYPED_TEST(CuDNNPoolingLayerTest, TestForwardMaxPaddedCuDNN) { function TYPED_TEST (line 1120) | TYPED_TEST(CuDNNPoolingLayerTest, TestForwardAveCuDNN) { function TYPED_TEST (line 1145) | TYPED_TEST(CuDNNPoolingLayerTest, TestGradientAveCuDNN) { function TYPED_TEST (line 1162) | TYPED_TEST(CuDNNPoolingLayerTest, TestGradientAvePaddedCuDNN) { FILE: src/caffe/test/test_power_layer.cpp type caffe (line 14) | namespace caffe { class PowerLayerTest (line 17) | class PowerLayerTest : public MultiDeviceTest { method PowerLayerTest (line 21) | PowerLayerTest() method TestForward (line 34) | void TestForward(Dtype power, Dtype scale, Dtype shift) { method TestBackward (line 61) | void TestBackward(Dtype power, Dtype scale, Dtype shift) { function TYPED_TEST (line 90) | TYPED_TEST(PowerLayerTest, TestPower) { function TYPED_TEST (line 98) | TYPED_TEST(PowerLayerTest, TestPowerGradient) { function TYPED_TEST (line 106) | TYPED_TEST(PowerLayerTest, TestPowerGradientShiftZero) { function TYPED_TEST (line 114) | TYPED_TEST(PowerLayerTest, TestPowerZero) { function TYPED_TEST (line 122) | TYPED_TEST(PowerLayerTest, TestPowerZeroGradient) { function TYPED_TEST (line 130) | TYPED_TEST(PowerLayerTest, TestPowerOne) { function TYPED_TEST (line 138) | TYPED_TEST(PowerLayerTest, TestPowerOneGradient) { function TYPED_TEST (line 146) | TYPED_TEST(PowerLayerTest, TestPowerTwo) { function TYPED_TEST (line 154) | TYPED_TEST(PowerLayerTest, TestPowerTwoGradient) { function TYPED_TEST (line 162) | TYPED_TEST(PowerLayerTest, TestPowerTwoScaleHalfGradient) { FILE: src/caffe/test/test_protobuf.cpp type caffe (line 12) | namespace caffe { class ProtoTest (line 14) | class ProtoTest : public ::testing::Test {} function TEST_F (line 16) | TEST_F(ProtoTest, TestSerialization) { FILE: src/caffe/test/test_random_number_generator.cpp type caffe (line 12) | namespace caffe { class RandomNumberGeneratorTest (line 15) | class RandomNumberGeneratorTest : public ::testing::Test { method RandomNumberGeneratorTest (line 17) | RandomNumberGeneratorTest() method SetUp (line 26) | virtual void SetUp() { method Dtype (line 30) | Dtype sample_mean(const Dtype* const seqs, const int sample_size) { method Dtype (line 38) | Dtype sample_mean(const Dtype* const seqs) { method Dtype (line 42) | Dtype sample_mean(const int* const seqs, const int sample_size) { method Dtype (line 50) | Dtype sample_mean(const int* const seqs) { method Dtype (line 54) | Dtype mean_bound(const Dtype std, const int sample_size) { method Dtype (line 58) | Dtype mean_bound(const Dtype std) { method RngGaussianFill (line 62) | void RngGaussianFill(const Dtype mu, const Dtype sigma, void* cpu_da... method RngGaussianChecks (line 67) | void RngGaussianChecks(const Dtype mu, const Dtype sigma, method RngUniformFill (line 105) | void RngUniformFill(const Dtype lower, const Dtype upper, void* cpu_... method RngUniformChecks (line 111) | void RngUniformChecks(const Dtype lower, const Dtype upper, method RngBernoulliFill (line 158) | void RngBernoulliFill(const Dtype p, void* cpu_data) { method RngBernoulliChecks (line 163) | void RngBernoulliChecks(const Dtype p, const void* cpu_data) { method RngGaussianFillGPU (line 174) | void RngGaussianFillGPU(const Dtype mu, const Dtype sigma, void* gpu... method RngUniformFillGPU (line 179) | void RngUniformFillGPU(const Dtype lower, const Dtype upper, void* g... method RngUniformIntFillGPU (line 187) | void RngUniformIntFillGPU(void* gpu_data) { function TYPED_TEST (line 210) | TYPED_TEST(RandomNumberGeneratorTest, TestRngGaussian) { function TYPED_TEST (line 219) | TYPED_TEST(RandomNumberGeneratorTest, TestRngGaussian2) { function TYPED_TEST (line 228) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniform) { function TYPED_TEST (line 237) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniform2) { function TYPED_TEST (line 246) | TYPED_TEST(RandomNumberGeneratorTest, TestRngBernoulli) { function TYPED_TEST (line 254) | TYPED_TEST(RandomNumberGeneratorTest, TestRngBernoulli2) { function TYPED_TEST (line 262) | TYPED_TEST(RandomNumberGeneratorTest, TestRngGaussianTimesGaussian) { function TYPED_TEST (line 288) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniformTimesUniform) { function TYPED_TEST (line 316) | TYPED_TEST(RandomNumberGeneratorTest, TestRngGaussianTimesBernoulli) { function TYPED_TEST (line 341) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniformTimesBernoulli) { function TYPED_TEST (line 366) | TYPED_TEST(RandomNumberGeneratorTest, TestRngBernoulliTimesBernoulli) { function TYPED_TEST (line 401) | TYPED_TEST(RandomNumberGeneratorTest, TestRngGaussianGPU) { function TYPED_TEST (line 411) | TYPED_TEST(RandomNumberGeneratorTest, TestRngGaussian2GPU) { function TYPED_TEST (line 421) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniformGPU) { function TYPED_TEST (line 431) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniform2GPU) { function TYPED_TEST (line 441) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniformIntGPU) { function TYPED_TEST (line 458) | TYPED_TEST(RandomNumberGeneratorTest, TestRngGaussianTimesGaussianGPU) { function TYPED_TEST (line 489) | TYPED_TEST(RandomNumberGeneratorTest, TestRngUniformTimesUniformGPU) { FILE: src/caffe/test/test_reduction_layer.cpp type caffe (line 14) | namespace caffe { class ReductionLayerTest (line 17) | class ReductionLayerTest : public MultiDeviceTest { method ReductionLayerTest (line 21) | ReductionLayerTest() method TestForward (line 37) | void TestForward(ReductionParameter_ReductionOp op, method TestGradient (line 81) | void TestGradient(ReductionParameter_ReductionOp op, function TYPED_TEST (line 103) | TYPED_TEST(ReductionLayerTest, TestSetUp) { function TYPED_TEST (line 112) | TYPED_TEST(ReductionLayerTest, TestSetUpWithAxis1) { function TYPED_TEST (line 123) | TYPED_TEST(ReductionLayerTest, TestSetUpWithAxis2) { function TYPED_TEST (line 135) | TYPED_TEST(ReductionLayerTest, TestSum) { function TYPED_TEST (line 140) | TYPED_TEST(ReductionLayerTest, TestSumCoeff) { function TYPED_TEST (line 146) | TYPED_TEST(ReductionLayerTest, TestSumCoeffAxis1) { function TYPED_TEST (line 153) | TYPED_TEST(ReductionLayerTest, TestSumGradient) { function TYPED_TEST (line 158) | TYPED_TEST(ReductionLayerTest, TestSumCoeffGradient) { function TYPED_TEST (line 164) | TYPED_TEST(ReductionLayerTest, TestSumCoeffAxis1Gradient) { function TYPED_TEST (line 171) | TYPED_TEST(ReductionLayerTest, TestMean) { function TYPED_TEST (line 177) | TYPED_TEST(ReductionLayerTest, TestMeanCoeff) { function TYPED_TEST (line 184) | TYPED_TEST(ReductionLayerTest, TestMeanCoeffAxis1) { function TYPED_TEST (line 192) | TYPED_TEST(ReductionLayerTest, TestMeanGradient) { function TYPED_TEST (line 198) | TYPED_TEST(ReductionLayerTest, TestMeanCoeffGradient) { function TYPED_TEST (line 205) | TYPED_TEST(ReductionLayerTest, TestMeanCoeffGradientAxis1) { function TYPED_TEST (line 213) | TYPED_TEST(ReductionLayerTest, TestAbsSum) { function TYPED_TEST (line 219) | TYPED_TEST(ReductionLayerTest, TestAbsSumCoeff) { function TYPED_TEST (line 226) | TYPED_TEST(ReductionLayerTest, TestAbsSumCoeffAxis1) { function TYPED_TEST (line 234) | TYPED_TEST(ReductionLayerTest, TestAbsSumGradient) { function TYPED_TEST (line 240) | TYPED_TEST(ReductionLayerTest, TestAbsSumCoeffGradient) { function TYPED_TEST (line 247) | TYPED_TEST(ReductionLayerTest, TestAbsSumCoeffAxis1Gradient) { function TYPED_TEST (line 255) | TYPED_TEST(ReductionLayerTest, TestSumOfSquares) { function TYPED_TEST (line 261) | TYPED_TEST(ReductionLayerTest, TestSumOfSquaresCoeff) { function TYPED_TEST (line 268) | TYPED_TEST(ReductionLayerTest, TestSumOfSquaresCoeffAxis1) { function TYPED_TEST (line 276) | TYPED_TEST(ReductionLayerTest, TestSumOfSquaresGradient) { function TYPED_TEST (line 282) | TYPED_TEST(ReductionLayerTest, TestSumOfSquaresCoeffGradient) { function TYPED_TEST (line 289) | TYPED_TEST(ReductionLayerTest, TestSumOfSquaresCoeffAxis1Gradient) { FILE: src/caffe/test/test_reshape_layer.cpp type caffe (line 14) | namespace caffe { class ReshapeLayerTest (line 17) | class ReshapeLayerTest : public MultiDeviceTest { method ReshapeLayerTest (line 20) | ReshapeLayerTest() function TYPED_TEST (line 41) | TYPED_TEST(ReshapeLayerTest, TestFlattenOutputSizes) { function TYPED_TEST (line 58) | TYPED_TEST(ReshapeLayerTest, TestFlattenValues) { function TYPED_TEST (line 79) | TYPED_TEST(ReshapeLayerTest, TestCopyDimensions) { function TYPED_TEST (line 98) | TYPED_TEST(ReshapeLayerTest, TestInferenceOfUnspecified) { function TYPED_TEST (line 118) | TYPED_TEST(ReshapeLayerTest, TestInferenceOfUnspecifiedWithStartAxis) { function TYPED_TEST (line 137) | TYPED_TEST(ReshapeLayerTest, TestInsertSingletonAxesStart) { function TYPED_TEST (line 160) | TYPED_TEST(ReshapeLayerTest, TestInsertSingletonAxesMiddle) { function TYPED_TEST (line 183) | TYPED_TEST(ReshapeLayerTest, TestInsertSingletonAxesEnd) { function TYPED_TEST (line 206) | TYPED_TEST(ReshapeLayerTest, TestFlattenMiddle) { function TYPED_TEST (line 223) | TYPED_TEST(ReshapeLayerTest, TestForward) { function TYPED_TEST (line 240) | TYPED_TEST(ReshapeLayerTest, TestForwardAfterReshape) { function TYPED_TEST (line 266) | TYPED_TEST(ReshapeLayerTest, TestGradient) { FILE: src/caffe/test/test_sigmoid_cross_entropy_loss_layer.cpp type caffe (line 16) | namespace caffe { class SigmoidCrossEntropyLossLayerTest (line 19) | class SigmoidCrossEntropyLossLayerTest : public MultiDeviceTest { method SliceLayerTest (line 21) | SliceLayerTest() method SetUp (line 26) | virtual void SetUp() { method ReduceBottomBlobSize (line 40) | virtual void ReduceBottomBlobSize() { function TYPED_TEST (line 62) | TYPED_TEST(SliceLayerTest, TestSetupNum) { function TYPED_TEST (line 76) | TYPED_TEST(SliceLayerTest, TestSetupChannels) { function TYPED_TEST (line 91) | TYPED_TEST(SliceLayerTest, TestSliceAcrossNum) { function TYPED_TEST (line 121) | TYPED_TEST(SliceLayerTest, TestSliceAcrossChannels) { function TYPED_TEST (line 164) | TYPED_TEST(SliceLayerTest, TestGradientAcrossNum) { function TYPED_TEST (line 176) | TYPED_TEST(SliceLayerTest, TestGradientAcrossChannels) { FILE: src/caffe/test/test_softmax_layer.cpp type caffe (line 15) | namespace caffe { class SoftmaxLayerTest (line 18) | class SoftmaxLayerTest : public MultiDeviceTest { method SoftmaxLayerTest (line 21) | SoftmaxLayerTest() function TYPED_TEST (line 40) | TYPED_TEST(SoftmaxLayerTest, TestForward) { function TYPED_TEST (line 74) | TYPED_TEST(SoftmaxLayerTest, TestGradient) { class CuDNNSoftmaxLayerTest (line 85) | class CuDNNSoftmaxLayerTest : public GPUDeviceTest { method CuDNNSoftmaxLayerTest (line 87) | CuDNNSoftmaxLayerTest() function TYPED_TEST (line 106) | TYPED_TEST(CuDNNSoftmaxLayerTest, TestForwardCuDNN) { function TYPED_TEST (line 139) | TYPED_TEST(CuDNNSoftmaxLayerTest, TestGradientCuDNN) { FILE: src/caffe/test/test_softmax_with_loss_layer.cpp type caffe (line 19) | namespace caffe { class SoftmaxWithLossLayerTest (line 22) | class SoftmaxWithLossLayerTest : public MultiDeviceTest { method SoftmaxWithLossLayerTest (line 26) | SoftmaxWithLossLayerTest() function TYPED_TEST (line 56) | TYPED_TEST(SoftmaxWithLossLayerTest, TestGradient) { function TYPED_TEST (line 66) | TYPED_TEST(SoftmaxWithLossLayerTest, TestForwardIgnoreLabel) { function TYPED_TEST (line 89) | TYPED_TEST(SoftmaxWithLossLayerTest, TestGradientIgnoreLabel) { function TYPED_TEST (line 100) | TYPED_TEST(SoftmaxWithLossLayerTest, TestGradientUnnormalized) { FILE: src/caffe/test/test_solver.cpp type caffe (line 16) | namespace caffe { class SolverTest (line 19) | class SolverTest : public MultiDeviceTest { method InitSolverFromProtoString (line 23) | virtual void InitSolverFromProtoString(const string& proto) { function TYPED_TEST (line 45) | TYPED_TEST(SolverTest, TestInitTrainTestNets) { FILE: src/caffe/test/test_split_layer.cpp type caffe (line 18) | namespace caffe { class SplitLayerTest (line 21) | class SplitLayerTest : public MultiDeviceTest { method SplitLayerTest (line 25) | SplitLayerTest() function TYPED_TEST (line 51) | TYPED_TEST(SplitLayerTest, TestSetup) { function TYPED_TEST (line 66) | TYPED_TEST(SplitLayerTest, Test) { function TYPED_TEST (line 79) | TYPED_TEST(SplitLayerTest, TestGradient) { class SplitLayerInsertionTest (line 89) | class SplitLayerInsertionTest : public ::testing::Test { method RunInsertionTest (line 91) | void RunInsertionTest( function TEST_F (line 114) | TEST_F(SplitLayerInsertionTest, TestNoInsertion1) { function TEST_F (line 138) | TEST_F(SplitLayerInsertionTest, TestNoInsertion2) { function TEST_F (line 175) | TEST_F(SplitLayerInsertionTest, TestNoInsertionImageNet) { function TEST_F (line 530) | TEST_F(SplitLayerInsertionTest, TestNoInsertionWithInPlace) { function TEST_F (line 560) | TEST_F(SplitLayerInsertionTest, TestLossInsertion) { function TEST_F (line 689) | TEST_F(SplitLayerInsertionTest, TestInsertion) { function TEST_F (line 784) | TEST_F(SplitLayerInsertionTest, TestInsertionTwoTop) { function TEST_F (line 890) | TEST_F(SplitLayerInsertionTest, TestInputInsertion) { function TEST_F (line 951) | TEST_F(SplitLayerInsertionTest, TestWithInPlace) { FILE: src/caffe/test/test_spp_layer.cpp type caffe (line 15) | namespace caffe { class SPPLayerTest (line 18) | class SPPLayerTest : public MultiDeviceTest { method SPPLayerTest (line 22) | SPPLayerTest() method SetUp (line 27) | virtual void SetUp() { function TYPED_TEST (line 55) | TYPED_TEST(SPPLayerTest, TestSetup) { function TYPED_TEST (line 72) | TYPED_TEST(SPPLayerTest, TestEqualOutputDims) { function TYPED_TEST (line 89) | TYPED_TEST(SPPLayerTest, TestEqualOutputDims2) { function TYPED_TEST (line 106) | TYPED_TEST(SPPLayerTest, TestForwardBackward) { function TYPED_TEST (line 118) | TYPED_TEST(SPPLayerTest, TestGradient) { FILE: src/caffe/test/test_stochastic_pooling.cpp type caffe (line 17) | namespace caffe { class StochasticPoolingLayerTest (line 20) | class StochasticPoolingLayerTest : public MultiDeviceTest { method StochasticPoolingLayerTest (line 24) | StochasticPoolingLayerTest() method SetUp (line 27) | virtual void SetUp() { class CPUStochasticPoolingLayerTest (line 51) | class CPUStochasticPoolingLayerTest function TYPED_TEST (line 57) | TYPED_TEST(CPUStochasticPoolingLayerTest, TestSetup) { class GPUStochasticPoolingLayerTest (line 73) | class GPUStochasticPoolingLayerTest function TYPED_TEST (line 79) | TYPED_TEST(GPUStochasticPoolingLayerTest, TestStochastic) { function TYPED_TEST (line 122) | TYPED_TEST(GPUStochasticPoolingLayerTest, TestStochasticTestPhase) { function TYPED_TEST (line 159) | TYPED_TEST(GPUStochasticPoolingLayerTest, TestGradient) { FILE: src/caffe/test/test_syncedmem.cpp type caffe (line 13) | namespace caffe { class SyncedMemoryTest (line 15) | class SyncedMemoryTest : public ::testing::Test {} function TEST_F (line 17) | TEST_F(SyncedMemoryTest, TestInitialization) { function TEST_F (line 28) | TEST_F(SyncedMemoryTest, TestAllocationCPUGPU) { function TEST_F (line 38) | TEST_F(SyncedMemoryTest, TestAllocationCPU) { function TEST_F (line 46) | TEST_F(SyncedMemoryTest, TestAllocationGPU) { function TEST_F (line 54) | TEST_F(SyncedMemoryTest, TestCPUWrite) { function TEST_F (line 73) | TEST_F(SyncedMemoryTest, TestGPURead) { function TEST_F (line 103) | TEST_F(SyncedMemoryTest, TestGPUWrite) { FILE: src/caffe/test/test_tanh_layer.cpp type caffe (line 14) | namespace caffe { function tanh_naive (line 16) | double tanh_naive(double x) { class TanHLayerTest (line 31) | class TanHLayerTest : public MultiDeviceTest { method TanHLayerTest (line 35) | TanHLayerTest() method TestForward (line 45) | void TestForward(Dtype filler_std) { method TestBackward (line 67) | void TestBackward(Dtype filler_std) { function TYPED_TEST (line 88) | TYPED_TEST(TanHLayerTest, TestTanH) { function TYPED_TEST (line 92) | TYPED_TEST(TanHLayerTest, TestTanHOverflow) { function TYPED_TEST (line 97) | TYPED_TEST(TanHLayerTest, TestTanHGradient) { FILE: src/caffe/test/test_threshold_layer.cpp type caffe (line 12) | namespace caffe { class ThresholdLayerTest (line 15) | class ThresholdLayerTest : public MultiDeviceTest { method ThresholdLayerTest (line 18) | ThresholdLayerTest() function TYPED_TEST (line 39) | TYPED_TEST(ThresholdLayerTest, TestSetup) { function TYPED_TEST (line 50) | TYPED_TEST(ThresholdLayerTest, Test) { function TYPED_TEST (line 72) | TYPED_TEST(ThresholdLayerTest, Test2) { FILE: src/caffe/test/test_upgrade_proto.cpp type caffe (line 18) | namespace caffe { class PaddingLayerUpgradeTest (line 20) | class PaddingLayerUpgradeTest : public ::testing::Test { method RunPaddingUpgradeTest (line 22) | void RunPaddingUpgradeTest( function TEST_F (line 45) | TEST_F(PaddingLayerUpgradeTest, TestSimple) { function TEST_F (line 193) | TEST_F(PaddingLayerUpgradeTest, TestTwoTops) { function TEST_F (line 388) | TEST_F(PaddingLayerUpgradeTest, TestImageNet) { class NetUpgradeTest (line 1090) | class NetUpgradeTest : public ::testing::Test { method RunV0UpgradeTest (line 1092) | void RunV0UpgradeTest( method RunV1UpgradeTest (line 1109) | void RunV1UpgradeTest( function TEST_F (line 1127) | TEST_F(NetUpgradeTest, TestSimple) { function TEST_F (line 1354) | TEST_F(NetUpgradeTest, TestAllParams) { function TEST_F (line 1854) | TEST_F(NetUpgradeTest, TestImageNet) { function TEST_F (line 2895) | TEST_F(NetUpgradeTest, TestUpgradeV1LayerType) { FILE: src/caffe/test/test_util_blas.cpp type caffe (line 13) | namespace caffe { class GemmTest (line 18) | class GemmTest : public ::testing::Test {} function TYPED_TEST (line 22) | TYPED_TEST(GemmTest, TestGemmCPUGPU) { function TYPED_TEST (line 93) | TYPED_TEST(GemmTest, TestGemvCPUGPU) { FILE: src/caffe/util/benchmark.cpp type caffe (line 6) | namespace caffe { FILE: src/caffe/util/blocking_queue.cpp type caffe (line 9) | namespace caffe { class BlockingQueue::sync (line 12) | class BlockingQueue::sync { function T (line 45) | T BlockingQueue::pop(const string& log_on_wait) { function T (line 73) | T BlockingQueue::peek() { class BlockingQueue*> (line 89) | class BlockingQueue*> class BlockingQueue*> (line 90) | class BlockingQueue*> class BlockingQueue (line 91) | class BlockingQueue class BlockingQueue > (line 92) | class BlockingQueue > class BlockingQueue*> (line 93) | class BlockingQueue*> class BlockingQueue*> (line 94) | class BlockingQueue*> FILE: src/caffe/util/cudnn.cpp type caffe (line 4) | namespace caffe { type cudnn (line 5) | namespace cudnn { FILE: src/caffe/util/db.cpp type caffe (line 7) | namespace caffe { namespace db { type db (line 7) | namespace db { function DB (line 9) | DB* GetDB(DataParameter::DB backend) { function DB (line 20) | DB* GetDB(const string& backend) { FILE: src/caffe/util/db_leveldb.cpp type caffe (line 5) | namespace caffe { namespace db { type db (line 5) | namespace db { FILE: src/caffe/util/db_lmdb.cpp type caffe (line 7) | namespace caffe { namespace db { type db (line 7) | namespace db { function LMDBCursor (line 25) | LMDBCursor* LMDB::NewCursor() { function LMDBTransaction (line 34) | LMDBTransaction* LMDB::NewTransaction() { FILE: src/caffe/util/hdf5.cpp type caffe (line 6) | namespace caffe { function hdf5_load_nd_dataset_helper (line 10) | void hdf5_load_nd_dataset_helper( function string (line 99) | string hdf5_load_string(hid_t loc_id, const string& dataset_name) { function hdf5_save_string (line 115) | void hdf5_save_string(hid_t loc_id, const string& dataset_name, function hdf5_load_int (line 123) | int hdf5_load_int(hid_t loc_id, const string& dataset_name) { function hdf5_save_int (line 131) | void hdf5_save_int(hid_t loc_id, const string& dataset_name, int i) { function hdf5_get_num_links (line 139) | int hdf5_get_num_links(hid_t loc_id) { function string (line 146) | string hdf5_get_name_by_idx(hid_t loc_id, int idx) { FILE: src/caffe/util/im2col.cpp type caffe (line 8) | namespace caffe { function im2col_cpu (line 11) | void im2col_cpu(const Dtype* data_im, const int channels, function col2im_cpu (line 48) | void col2im_cpu(const Dtype* data_col, const int channels, FILE: src/caffe/util/insert_splits.cpp type caffe (line 10) | namespace caffe { function InsertSplits (line 12) | void InsertSplits(const NetParameter& param, NetParameter* param_split) { function ConfigureSplitLayer (line 108) | void ConfigureSplitLayer(const string& layer_name, const string& blob_... function string (line 128) | string SplitLayerName(const string& layer_name, const string& blob_name, function string (line 136) | string SplitBlobName(const string& layer_name, const string& blob_name, FILE: src/caffe/util/io.cpp type caffe (line 22) | namespace caffe { function ReadProtoFromTextFile (line 32) | bool ReadProtoFromTextFile(const char* filename, Message* proto) { function WriteProtoToTextFile (line 42) | void WriteProtoToTextFile(const Message& proto, const char* filename) { function ReadProtoFromBinaryFile (line 50) | bool ReadProtoFromBinaryFile(const char* filename, Message* proto) { function WriteProtoToBinaryFile (line 65) | void WriteProtoToBinaryFile(const Message& proto, const char* filename) { function ReadImageToCVMat (line 70) | cv::Mat ReadImageToCVMat(const string& filename, function ReadImageToCVMat (line 88) | cv::Mat ReadImageToCVMat(const string& filename, function ReadImageToCVMat (line 93) | cv::Mat ReadImageToCVMat(const string& filename, function ReadImageToCVMat (line 98) | cv::Mat ReadImageToCVMat(const string& filename) { function matchExt (line 102) | static bool matchExt(const std::string & fn, function ReadImageToDatum (line 114) | bool ReadImageToDatum(const string& filename, const int label, function ReadFileToDatum (line 139) | bool ReadFileToDatum(const string& filename, const int label, function DecodeDatumToCVMatNative (line 159) | cv::Mat DecodeDatumToCVMatNative(const Datum& datum) { function DecodeDatumToCVMat (line 170) | cv::Mat DecodeDatumToCVMat(const Datum& datum, bool is_color) { function DecodeDatumNative (line 186) | bool DecodeDatumNative(Datum* datum) { function DecodeDatum (line 195) | bool DecodeDatum(Datum* datum, bool is_color) { function CVMatToDatum (line 205) | void CVMatToDatum(const cv::Mat& cv_img, Datum* datum) { FILE: src/caffe/util/math_functions.cpp type caffe (line 10) | namespace caffe { function caffe_set (line 57) | void caffe_set(const int N, const Dtype alpha, Dtype* Y) { function caffe_add_scalar (line 72) | void caffe_add_scalar(const int N, const float alpha, float* Y) { function caffe_add_scalar (line 79) | void caffe_add_scalar(const int N, const double alpha, double* Y) { function caffe_copy (line 86) | void caffe_copy(const int N, const Dtype* X, Dtype* Y) { function caffe_rng_rand (line 229) | unsigned int caffe_rng_rand() { function Dtype (line 234) | Dtype caffe_nextafter(const Dtype b) { function caffe_rng_uniform (line 246) | void caffe_rng_uniform(const int n, const Dtype a, const Dtype b, Dtyp... function caffe_rng_gaussian (line 267) | void caffe_rng_gaussian(const int n, const Dtype a, function caffe_rng_bernoulli (line 289) | void caffe_rng_bernoulli(const int n, const Dtype p, int* r) { function caffe_rng_bernoulli (line 309) | void caffe_rng_bernoulli(const int n, const Dtype p, unsigned int* r) { function Dtype (line 341) | Dtype caffe_cpu_dot(const int n, const Dtype* x, const Dtype* y) { FILE: src/caffe/util/upgrade_proto.cpp type caffe (line 13) | namespace caffe { function NetNeedsUpgrade (line 15) | bool NetNeedsUpgrade(const NetParameter& net_param) { function NetNeedsV0ToV1Upgrade (line 19) | bool NetNeedsV0ToV1Upgrade(const NetParameter& net_param) { function NetNeedsV1ToV2Upgrade (line 28) | bool NetNeedsV1ToV2Upgrade(const NetParameter& net_param) { function UpgradeV0Net (line 32) | bool UpgradeV0Net(const NetParameter& v0_net_param_padding_layers, function UpgradeV0PaddingLayers (line 59) | void UpgradeV0PaddingLayers(const NetParameter& param, function UpgradeV0LayerParameter (line 118) | bool UpgradeV0LayerParameter(const V1LayerParameter& v0_layer_connection, function V1LayerParameter_LayerType (line 470) | V1LayerParameter_LayerType UpgradeV0LayerType(const string& type) { function NetNeedsDataUpgrade (line 525) | bool NetNeedsDataUpgrade(const NetParameter& net_param) { function UpgradeNetDataTransformation (line 578) | void UpgradeNetDataTransformation(NetParameter* net_param) { function UpgradeNetAsNeeded (line 586) | bool UpgradeNetAsNeeded(const string& param_file, NetParameter* param) { function UpgradeV1Net (line 633) | bool UpgradeV1Net(const NetParameter& v1_net_param, NetParameter* net_... function UpgradeV1LayerParameter (line 653) | bool UpgradeV1LayerParameter(const V1LayerParameter& v1_layer_param, function ReadNetParamsFromTextFileOrDie (line 926) | void ReadNetParamsFromTextFileOrDie(const string& param_file, function ReadNetParamsFromBinaryFileOrDie (line 933) | void ReadNetParamsFromBinaryFileOrDie(const string& param_file, FILE: src/gtest/gtest-all.cpp type testing (line 113) | namespace testing { function ScopedFakeTestPartResultReporter (line 124) | class GTEST_API_ ScopedFakeTestPartResultReporter function AssertionResult (line 2510) | AssertionResult CmpHelperSTRCASENE(const char* s1_expression, type internal (line 6293) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 6334) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function SplitString (line 7294) | static void SplitString(const ::std::string& str, char delimiter, function GetStatusFileDescriptor (line 7315) | int GetStatusFileDescriptor(unsigned int parent_process_id, function InternalRunDeathTestFlag (line 7380) | InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { type internal (line 7490) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 7870) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function PrintByteSegmentInObjectTo (line 8612) | void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t... function PrintBytesInObjectToImpl (line 8631) | void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t c... type internal2 (line 8656) | namespace internal2 { function PrintBytesInObjectTo (line 8663) | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, type internal (line 8670) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function TestPartResult (line 8972) | const TestPartResult& TestPartResultArray::GetTestPartResult(int index... type internal (line 8986) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 9043) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function IsSubstringPred (line 2534) | bool IsSubstringPred(const char* needle, const char* haystack) { function IsSubstringPred (line 2541) | bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { function IsSubstringPred (line 2550) | bool IsSubstringPred(const StringType& needle, function AssertionResult (line 2560) | AssertionResult IsSubstringImpl( function AssertionResult (line 2583) | AssertionResult IsSubstring( function AssertionResult (line 2589) | AssertionResult IsSubstring( function AssertionResult (line 2595) | AssertionResult IsNotSubstring( function AssertionResult (line 2601) | AssertionResult IsNotSubstring( function AssertionResult (line 2607) | AssertionResult IsSubstring( function AssertionResult (line 2613) | AssertionResult IsNotSubstring( function AssertionResult (line 2620) | AssertionResult IsSubstring( function AssertionResult (line 2626) | AssertionResult IsNotSubstring( type internal (line 2633) | namespace internal { function AssertionResult (line 2640) | AssertionResult HRESULTFailureHelper(const char* expr, function AssertionResult (line 2681) | AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT function AssertionResult (line 2688) | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT function UInt32 (line 2724) | inline UInt32 ChopLowBits(UInt32* bits, int n) { function IsUtf16SurrogatePair (line 2778) | inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { function UInt32 (line 2784) | inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, function String (line 2807) | String WideStringToUtf8(const wchar_t* str, int num_chars) { function String (line 2833) | String String::ShowWideCString(const wchar_t * wide_c_str) { function String (line 2841) | String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { function AssertionResult (line 2863) | AssertionResult CmpHelperSTREQ(const char* expected_expression, function AssertionResult (line 2879) | AssertionResult CmpHelperSTRNE(const char* s1_expression, function String (line 3003) | String String::Format(const char * format, ...) { function String (line 3038) | String StringStreamToString(::std::stringstream* ss) { function String (line 3058) | String AppendUserMessage(const String& gtest_msg, function ReportFailureInUnknownLocation (line 3235) | void ReportFailureInUnknownLocation(TestPartResult::Type result_type, function Result (line 3374) | Result HandleSehExceptionsInMethodIfSupported( function Result (line 3401) | Result HandleExceptionsInMethodIfSupported( function TestInfo (line 3532) | TestInfo* MakeAndRegisterTestInfo( function ReportInvalidTestCaseType (line 3548) | void ReportInvalidTestCaseType(const char* test_case_name, type GTestColor (line 3853) | enum GTestColor { function WORD (line 3863) | WORD GetColorAttribute(GTestColor color) { function ShouldUseColor (line 3888) | bool ShouldUseColor(bool stdout_is_tty) { function ColoredPrintf (line 3923) | void ColoredPrintf(GTestColor color, const char* fmt, ...) { function PrintFullTestCommentIfPresent (line 3969) | void PrintFullTestCommentIfPresent(const TestInfo& test_info) { class PrettyUnitTestResultPrinter (line 3989) | class PrettyUnitTestResultPrinter : public TestEventListener { method PrettyUnitTestResultPrinter (line 3991) | PrettyUnitTestResultPrinter() {} method PrintTestName (line 3992) | static void PrintTestName(const char * test_case, const char * test) { method OnTestProgramStart (line 3997) | virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} method OnEnvironmentsSetUpEnd (line 4000) | virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} method OnEnvironmentsTearDownEnd (line 4007) | virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/... method OnTestProgramEnd (line 4009) | virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} class TestEventRepeater (line 4200) | class TestEventRepeater : public TestEventListener { method TestEventRepeater (line 4202) | TestEventRepeater() : forwarding_enabled_(true) {} method forwarding_enabled (line 4209) | bool forwarding_enabled() const { return forwarding_enabled_; } method set_forwarding_enabled (line 4210) | void set_forwarding_enabled(bool enable) { forwarding_enabled_ = ena... function TestEventListener (line 4245) | TestEventListener* TestEventRepeater::Release(TestEventListener *liste... class XmlUnitTestResultPrinter (line 4313) | class XmlUnitTestResultPrinter : public EmptyTestEventListener { method IsNormalizableWhitespace (line 4322) | static bool IsNormalizableWhitespace(char c) { method IsValidXmlCharacter (line 4327) | static bool IsValidXmlCharacter(char c) { method String (line 4341) | static String EscapeXmlAttribute(const char* str) { method String (line 4346) | static String EscapeXmlText(const char* str) { return EscapeXml(str,... function String (line 4427) | String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_at... function string (line 4472) | string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const stri... function FormatTimeInMillisAsSeconds (line 4499) | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { function String (line 4617) | String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( class StreamingListener (line 4633) | class StreamingListener : public EmptyTestEventListener { method StreamingListener (line 4638) | StreamingListener(const string& host, const string& port) method OnTestProgramStart (line 4649) | void OnTestProgramStart(const UnitTest& /* unit_test */) { method OnTestProgramEnd (line 4653) | void OnTestProgramEnd(const UnitTest& unit_test) { method OnTestIterationStart (line 4663) | void OnTestIterationStart(const UnitTest& /* unit_test */, int itera... method OnTestIterationEnd (line 4668) | void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration ... method OnTestCaseStart (line 4674) | void OnTestCaseStart(const TestCase& test_case) { method OnTestCaseEnd (line 4678) | void OnTestCaseEnd(const TestCase& test_case) { method OnTestStart (line 4684) | void OnTestStart(const TestInfo& test_info) { method OnTestEnd (line 4688) | void OnTestEnd(const TestInfo& test_info) { method OnTestPartResult (line 4695) | void OnTestPartResult(const TestPartResult& test_part_result) { method CloseConnection (line 4710) | void CloseConnection() { method Send (line 4719) | void Send(const string& message) { function string (line 4743) | string StreamingListener::UrlEncode(const char* str) { function String (line 4838) | String OsStackTraceGetter::CurrentStackTrace(int, int) { class TestCaseNameIs (line 5372) | class TestCaseNameIs { method TestCaseNameIs (line 5375) | explicit TestCaseNameIs(const String& name) function TestCase (line 5399) | TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, function SetUpEnvironment (line 5436) | static void SetUpEnvironment(Environment* env) { env->SetUp(); } function TearDownEnvironment (line 5437) | static void TearDownEnvironment(Environment* env) { env->TearDown(); } function WriteToShardStatusFileIfNeeded (line 5584) | void WriteToShardStatusFileIfNeeded() { function ShouldShard (line 5606) | bool ShouldShard(const char* total_shards_env, function Int32 (line 5651) | Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { function ShouldRunTestOnShard (line 5669) | bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_... function OsStackTraceGetterInterface (line 5770) | OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { function TestResult (line 5780) | TestResult* UnitTestImpl::current_test_result() { function String (line 5821) | String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, class ClassUniqueToAlwaysTrue (line 5831) | class ClassUniqueToAlwaysTrue {} function IsTrue (line 5834) | bool IsTrue(bool condition) { return condition; } function AlwaysTrue (line 5836) | bool AlwaysTrue() { function SkipPrefix (line 5849) | bool SkipPrefix(const char* prefix, const char** pstr) { function ParseBoolFlag (line 5901) | bool ParseBoolFlag(const char* str, const char* flag, bool* value) { function ParseInt32Flag (line 5918) | bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { function ParseStringFlag (line 5935) | bool ParseStringFlag(const char* str, const char* flag, String* value) { function HasGoogleTestFlagPrefix (line 5953) | static bool HasGoogleTestFlagPrefix(const char* str) { function PrintColorEncoded (line 5973) | static void PrintColorEncoded(const char* str) { function ParseGoogleTestFlagsOnlyImpl (line 6075) | void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { function ParseGoogleTestFlagsOnly (line 6145) | void ParseGoogleTestFlagsOnly(int* argc, char** argv) { function ParseGoogleTestFlagsOnly (line 6148) | void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { function InitGoogleTestImpl (line 6157) | void InitGoogleTestImpl(int* argc, CharType** argv) { function TestPartResult (line 3089) | const TestPartResult& TestResult::GetTestPartResult(int i) const { function TestProperty (line 3098) | const TestProperty& TestResult::GetTestProperty(int i) const { function TestPartFatallyFailed (line 3165) | static bool TestPartFatallyFailed(const TestPartResult& result) { function TestPartNonfatallyFailed (line 3175) | static bool TestPartNonfatallyFailed(const TestPartResult& result) { type internal (line 3233) | namespace internal { function AssertionResult (line 2640) | AssertionResult HRESULTFailureHelper(const char* expr, function AssertionResult (line 2681) | AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT function AssertionResult (line 2688) | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT function UInt32 (line 2724) | inline UInt32 ChopLowBits(UInt32* bits, int n) { function IsUtf16SurrogatePair (line 2778) | inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { function UInt32 (line 2784) | inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, function String (line 2807) | String WideStringToUtf8(const wchar_t* str, int num_chars) { function String (line 2833) | String String::ShowWideCString(const wchar_t * wide_c_str) { function String (line 2841) | String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { function AssertionResult (line 2863) | AssertionResult CmpHelperSTREQ(const char* expected_expression, function AssertionResult (line 2879) | AssertionResult CmpHelperSTRNE(const char* s1_expression, function String (line 3003) | String String::Format(const char * format, ...) { function String (line 3038) | String StringStreamToString(::std::stringstream* ss) { function String (line 3058) | String AppendUserMessage(const String& gtest_msg, function ReportFailureInUnknownLocation (line 3235) | void ReportFailureInUnknownLocation(TestPartResult::Type result_type, function Result (line 3374) | Result HandleSehExceptionsInMethodIfSupported( function Result (line 3401) | Result HandleExceptionsInMethodIfSupported( function TestInfo (line 3532) | TestInfo* MakeAndRegisterTestInfo( function ReportInvalidTestCaseType (line 3548) | void ReportInvalidTestCaseType(const char* test_case_name, type GTestColor (line 3853) | enum GTestColor { function WORD (line 3863) | WORD GetColorAttribute(GTestColor color) { function ShouldUseColor (line 3888) | bool ShouldUseColor(bool stdout_is_tty) { function ColoredPrintf (line 3923) | void ColoredPrintf(GTestColor color, const char* fmt, ...) { function PrintFullTestCommentIfPresent (line 3969) | void PrintFullTestCommentIfPresent(const TestInfo& test_info) { class PrettyUnitTestResultPrinter (line 3989) | class PrettyUnitTestResultPrinter : public TestEventListener { method PrettyUnitTestResultPrinter (line 3991) | PrettyUnitTestResultPrinter() {} method PrintTestName (line 3992) | static void PrintTestName(const char * test_case, const char * test) { method OnTestProgramStart (line 3997) | virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} method OnEnvironmentsSetUpEnd (line 4000) | virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} method OnEnvironmentsTearDownEnd (line 4007) | virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/... method OnTestProgramEnd (line 4009) | virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} class TestEventRepeater (line 4200) | class TestEventRepeater : public TestEventListener { method TestEventRepeater (line 4202) | TestEventRepeater() : forwarding_enabled_(true) {} method forwarding_enabled (line 4209) | bool forwarding_enabled() const { return forwarding_enabled_; } method set_forwarding_enabled (line 4210) | void set_forwarding_enabled(bool enable) { forwarding_enabled_ = ena... function TestEventListener (line 4245) | TestEventListener* TestEventRepeater::Release(TestEventListener *liste... class XmlUnitTestResultPrinter (line 4313) | class XmlUnitTestResultPrinter : public EmptyTestEventListener { method IsNormalizableWhitespace (line 4322) | static bool IsNormalizableWhitespace(char c) { method IsValidXmlCharacter (line 4327) | static bool IsValidXmlCharacter(char c) { method String (line 4341) | static String EscapeXmlAttribute(const char* str) { method String (line 4346) | static String EscapeXmlText(const char* str) { return EscapeXml(str,... function String (line 4427) | String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_at... function string (line 4472) | string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const stri... function FormatTimeInMillisAsSeconds (line 4499) | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { function String (line 4617) | String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( class StreamingListener (line 4633) | class StreamingListener : public EmptyTestEventListener { method StreamingListener (line 4638) | StreamingListener(const string& host, const string& port) method OnTestProgramStart (line 4649) | void OnTestProgramStart(const UnitTest& /* unit_test */) { method OnTestProgramEnd (line 4653) | void OnTestProgramEnd(const UnitTest& unit_test) { method OnTestIterationStart (line 4663) | void OnTestIterationStart(const UnitTest& /* unit_test */, int itera... method OnTestIterationEnd (line 4668) | void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration ... method OnTestCaseStart (line 4674) | void OnTestCaseStart(const TestCase& test_case) { method OnTestCaseEnd (line 4678) | void OnTestCaseEnd(const TestCase& test_case) { method OnTestStart (line 4684) | void OnTestStart(const TestInfo& test_info) { method OnTestEnd (line 4688) | void OnTestEnd(const TestInfo& test_info) { method OnTestPartResult (line 4695) | void OnTestPartResult(const TestPartResult& test_part_result) { method CloseConnection (line 4710) | void CloseConnection() { method Send (line 4719) | void Send(const string& message) { function string (line 4743) | string StreamingListener::UrlEncode(const char* str) { function String (line 4838) | String OsStackTraceGetter::CurrentStackTrace(int, int) { class TestCaseNameIs (line 5372) | class TestCaseNameIs { method TestCaseNameIs (line 5375) | explicit TestCaseNameIs(const String& name) function TestCase (line 5399) | TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, function SetUpEnvironment (line 5436) | static void SetUpEnvironment(Environment* env) { env->SetUp(); } function TearDownEnvironment (line 5437) | static void TearDownEnvironment(Environment* env) { env->TearDown(); } function WriteToShardStatusFileIfNeeded (line 5584) | void WriteToShardStatusFileIfNeeded() { function ShouldShard (line 5606) | bool ShouldShard(const char* total_shards_env, function Int32 (line 5651) | Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { function ShouldRunTestOnShard (line 5669) | bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_... function OsStackTraceGetterInterface (line 5770) | OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { function TestResult (line 5780) | TestResult* UnitTestImpl::current_test_result() { function String (line 5821) | String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, class ClassUniqueToAlwaysTrue (line 5831) | class ClassUniqueToAlwaysTrue {} function IsTrue (line 5834) | bool IsTrue(bool condition) { return condition; } function AlwaysTrue (line 5836) | bool AlwaysTrue() { function SkipPrefix (line 5849) | bool SkipPrefix(const char* prefix, const char** pstr) { function ParseBoolFlag (line 5901) | bool ParseBoolFlag(const char* str, const char* flag, bool* value) { function ParseInt32Flag (line 5918) | bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { function ParseStringFlag (line 5935) | bool ParseStringFlag(const char* str, const char* flag, String* value) { function HasGoogleTestFlagPrefix (line 5953) | static bool HasGoogleTestFlagPrefix(const char* str) { function PrintColorEncoded (line 5973) | static void PrintColorEncoded(const char* str) { function ParseGoogleTestFlagsOnlyImpl (line 6075) | void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { function ParseGoogleTestFlagsOnly (line 6145) | void ParseGoogleTestFlagsOnly(int* argc, char** argv) { function ParseGoogleTestFlagsOnly (line 6148) | void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { function InitGoogleTestImpl (line 6157) | void InitGoogleTestImpl(int* argc, CharType** argv) { function FormatCxxExceptionMessage (line 3335) | static internal::String FormatCxxExceptionMessage(const char* description, class GoogleTestFailureException (line 3357) | class GoogleTestFailureException : public ::std::runtime_error { method GoogleTestFailureException (line 3359) | explicit GoogleTestFailureException(const TestPartResult& failure) type internal (line 3364) | namespace internal { function AssertionResult (line 2640) | AssertionResult HRESULTFailureHelper(const char* expr, function AssertionResult (line 2681) | AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT function AssertionResult (line 2688) | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT function UInt32 (line 2724) | inline UInt32 ChopLowBits(UInt32* bits, int n) { function IsUtf16SurrogatePair (line 2778) | inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { function UInt32 (line 2784) | inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, function String (line 2807) | String WideStringToUtf8(const wchar_t* str, int num_chars) { function String (line 2833) | String String::ShowWideCString(const wchar_t * wide_c_str) { function String (line 2841) | String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { function AssertionResult (line 2863) | AssertionResult CmpHelperSTREQ(const char* expected_expression, function AssertionResult (line 2879) | AssertionResult CmpHelperSTRNE(const char* s1_expression, function String (line 3003) | String String::Format(const char * format, ...) { function String (line 3038) | String StringStreamToString(::std::stringstream* ss) { function String (line 3058) | String AppendUserMessage(const String& gtest_msg, function ReportFailureInUnknownLocation (line 3235) | void ReportFailureInUnknownLocation(TestPartResult::Type result_type, function Result (line 3374) | Result HandleSehExceptionsInMethodIfSupported( function Result (line 3401) | Result HandleExceptionsInMethodIfSupported( function TestInfo (line 3532) | TestInfo* MakeAndRegisterTestInfo( function ReportInvalidTestCaseType (line 3548) | void ReportInvalidTestCaseType(const char* test_case_name, type GTestColor (line 3853) | enum GTestColor { function WORD (line 3863) | WORD GetColorAttribute(GTestColor color) { function ShouldUseColor (line 3888) | bool ShouldUseColor(bool stdout_is_tty) { function ColoredPrintf (line 3923) | void ColoredPrintf(GTestColor color, const char* fmt, ...) { function PrintFullTestCommentIfPresent (line 3969) | void PrintFullTestCommentIfPresent(const TestInfo& test_info) { class PrettyUnitTestResultPrinter (line 3989) | class PrettyUnitTestResultPrinter : public TestEventListener { method PrettyUnitTestResultPrinter (line 3991) | PrettyUnitTestResultPrinter() {} method PrintTestName (line 3992) | static void PrintTestName(const char * test_case, const char * test) { method OnTestProgramStart (line 3997) | virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} method OnEnvironmentsSetUpEnd (line 4000) | virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} method OnEnvironmentsTearDownEnd (line 4007) | virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/... method OnTestProgramEnd (line 4009) | virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} class TestEventRepeater (line 4200) | class TestEventRepeater : public TestEventListener { method TestEventRepeater (line 4202) | TestEventRepeater() : forwarding_enabled_(true) {} method forwarding_enabled (line 4209) | bool forwarding_enabled() const { return forwarding_enabled_; } method set_forwarding_enabled (line 4210) | void set_forwarding_enabled(bool enable) { forwarding_enabled_ = ena... function TestEventListener (line 4245) | TestEventListener* TestEventRepeater::Release(TestEventListener *liste... class XmlUnitTestResultPrinter (line 4313) | class XmlUnitTestResultPrinter : public EmptyTestEventListener { method IsNormalizableWhitespace (line 4322) | static bool IsNormalizableWhitespace(char c) { method IsValidXmlCharacter (line 4327) | static bool IsValidXmlCharacter(char c) { method String (line 4341) | static String EscapeXmlAttribute(const char* str) { method String (line 4346) | static String EscapeXmlText(const char* str) { return EscapeXml(str,... function String (line 4427) | String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_at... function string (line 4472) | string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const stri... function FormatTimeInMillisAsSeconds (line 4499) | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { function String (line 4617) | String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( class StreamingListener (line 4633) | class StreamingListener : public EmptyTestEventListener { method StreamingListener (line 4638) | StreamingListener(const string& host, const string& port) method OnTestProgramStart (line 4649) | void OnTestProgramStart(const UnitTest& /* unit_test */) { method OnTestProgramEnd (line 4653) | void OnTestProgramEnd(const UnitTest& unit_test) { method OnTestIterationStart (line 4663) | void OnTestIterationStart(const UnitTest& /* unit_test */, int itera... method OnTestIterationEnd (line 4668) | void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration ... method OnTestCaseStart (line 4674) | void OnTestCaseStart(const TestCase& test_case) { method OnTestCaseEnd (line 4678) | void OnTestCaseEnd(const TestCase& test_case) { method OnTestStart (line 4684) | void OnTestStart(const TestInfo& test_info) { method OnTestEnd (line 4688) | void OnTestEnd(const TestInfo& test_info) { method OnTestPartResult (line 4695) | void OnTestPartResult(const TestPartResult& test_part_result) { method CloseConnection (line 4710) | void CloseConnection() { method Send (line 4719) | void Send(const string& message) { function string (line 4743) | string StreamingListener::UrlEncode(const char* str) { function String (line 4838) | String OsStackTraceGetter::CurrentStackTrace(int, int) { class TestCaseNameIs (line 5372) | class TestCaseNameIs { method TestCaseNameIs (line 5375) | explicit TestCaseNameIs(const String& name) function TestCase (line 5399) | TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, function SetUpEnvironment (line 5436) | static void SetUpEnvironment(Environment* env) { env->SetUp(); } function TearDownEnvironment (line 5437) | static void TearDownEnvironment(Environment* env) { env->TearDown(); } function WriteToShardStatusFileIfNeeded (line 5584) | void WriteToShardStatusFileIfNeeded() { function ShouldShard (line 5606) | bool ShouldShard(const char* total_shards_env, function Int32 (line 5651) | Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { function ShouldRunTestOnShard (line 5669) | bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_... function OsStackTraceGetterInterface (line 5770) | OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { function TestResult (line 5780) | TestResult* UnitTestImpl::current_test_result() { function String (line 5821) | String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, class ClassUniqueToAlwaysTrue (line 5831) | class ClassUniqueToAlwaysTrue {} function IsTrue (line 5834) | bool IsTrue(bool condition) { return condition; } function AlwaysTrue (line 5836) | bool AlwaysTrue() { function SkipPrefix (line 5849) | bool SkipPrefix(const char* prefix, const char** pstr) { function ParseBoolFlag (line 5901) | bool ParseBoolFlag(const char* str, const char* flag, bool* value) { function ParseInt32Flag (line 5918) | bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { function ParseStringFlag (line 5935) | bool ParseStringFlag(const char* str, const char* flag, String* value) { function HasGoogleTestFlagPrefix (line 5953) | static bool HasGoogleTestFlagPrefix(const char* str) { function PrintColorEncoded (line 5973) | static void PrintColorEncoded(const char* str) { function ParseGoogleTestFlagsOnlyImpl (line 6075) | void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { function ParseGoogleTestFlagsOnly (line 6145) | void ParseGoogleTestFlagsOnly(int* argc, char** argv) { function ParseGoogleTestFlagsOnly (line 6148) | void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { function InitGoogleTestImpl (line 6157) | void InitGoogleTestImpl(int* argc, CharType** argv) { type internal (line 3513) | namespace internal { function AssertionResult (line 2640) | AssertionResult HRESULTFailureHelper(const char* expr, function AssertionResult (line 2681) | AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT function AssertionResult (line 2688) | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT function UInt32 (line 2724) | inline UInt32 ChopLowBits(UInt32* bits, int n) { function IsUtf16SurrogatePair (line 2778) | inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { function UInt32 (line 2784) | inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, function String (line 2807) | String WideStringToUtf8(const wchar_t* str, int num_chars) { function String (line 2833) | String String::ShowWideCString(const wchar_t * wide_c_str) { function String (line 2841) | String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { function AssertionResult (line 2863) | AssertionResult CmpHelperSTREQ(const char* expected_expression, function AssertionResult (line 2879) | AssertionResult CmpHelperSTRNE(const char* s1_expression, function String (line 3003) | String String::Format(const char * format, ...) { function String (line 3038) | String StringStreamToString(::std::stringstream* ss) { function String (line 3058) | String AppendUserMessage(const String& gtest_msg, function ReportFailureInUnknownLocation (line 3235) | void ReportFailureInUnknownLocation(TestPartResult::Type result_type, function Result (line 3374) | Result HandleSehExceptionsInMethodIfSupported( function Result (line 3401) | Result HandleExceptionsInMethodIfSupported( function TestInfo (line 3532) | TestInfo* MakeAndRegisterTestInfo( function ReportInvalidTestCaseType (line 3548) | void ReportInvalidTestCaseType(const char* test_case_name, type GTestColor (line 3853) | enum GTestColor { function WORD (line 3863) | WORD GetColorAttribute(GTestColor color) { function ShouldUseColor (line 3888) | bool ShouldUseColor(bool stdout_is_tty) { function ColoredPrintf (line 3923) | void ColoredPrintf(GTestColor color, const char* fmt, ...) { function PrintFullTestCommentIfPresent (line 3969) | void PrintFullTestCommentIfPresent(const TestInfo& test_info) { class PrettyUnitTestResultPrinter (line 3989) | class PrettyUnitTestResultPrinter : public TestEventListener { method PrettyUnitTestResultPrinter (line 3991) | PrettyUnitTestResultPrinter() {} method PrintTestName (line 3992) | static void PrintTestName(const char * test_case, const char * test) { method OnTestProgramStart (line 3997) | virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} method OnEnvironmentsSetUpEnd (line 4000) | virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} method OnEnvironmentsTearDownEnd (line 4007) | virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/... method OnTestProgramEnd (line 4009) | virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} class TestEventRepeater (line 4200) | class TestEventRepeater : public TestEventListener { method TestEventRepeater (line 4202) | TestEventRepeater() : forwarding_enabled_(true) {} method forwarding_enabled (line 4209) | bool forwarding_enabled() const { return forwarding_enabled_; } method set_forwarding_enabled (line 4210) | void set_forwarding_enabled(bool enable) { forwarding_enabled_ = ena... function TestEventListener (line 4245) | TestEventListener* TestEventRepeater::Release(TestEventListener *liste... class XmlUnitTestResultPrinter (line 4313) | class XmlUnitTestResultPrinter : public EmptyTestEventListener { method IsNormalizableWhitespace (line 4322) | static bool IsNormalizableWhitespace(char c) { method IsValidXmlCharacter (line 4327) | static bool IsValidXmlCharacter(char c) { method String (line 4341) | static String EscapeXmlAttribute(const char* str) { method String (line 4346) | static String EscapeXmlText(const char* str) { return EscapeXml(str,... function String (line 4427) | String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_at... function string (line 4472) | string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const stri... function FormatTimeInMillisAsSeconds (line 4499) | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { function String (line 4617) | String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( class StreamingListener (line 4633) | class StreamingListener : public EmptyTestEventListener { method StreamingListener (line 4638) | StreamingListener(const string& host, const string& port) method OnTestProgramStart (line 4649) | void OnTestProgramStart(const UnitTest& /* unit_test */) { method OnTestProgramEnd (line 4653) | void OnTestProgramEnd(const UnitTest& unit_test) { method OnTestIterationStart (line 4663) | void OnTestIterationStart(const UnitTest& /* unit_test */, int itera... method OnTestIterationEnd (line 4668) | void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration ... method OnTestCaseStart (line 4674) | void OnTestCaseStart(const TestCase& test_case) { method OnTestCaseEnd (line 4678) | void OnTestCaseEnd(const TestCase& test_case) { method OnTestStart (line 4684) | void OnTestStart(const TestInfo& test_info) { method OnTestEnd (line 4688) | void OnTestEnd(const TestInfo& test_info) { method OnTestPartResult (line 4695) | void OnTestPartResult(const TestPartResult& test_part_result) { method CloseConnection (line 4710) | void CloseConnection() { method Send (line 4719) | void Send(const string& message) { function string (line 4743) | string StreamingListener::UrlEncode(const char* str) { function String (line 4838) | String OsStackTraceGetter::CurrentStackTrace(int, int) { class TestCaseNameIs (line 5372) | class TestCaseNameIs { method TestCaseNameIs (line 5375) | explicit TestCaseNameIs(const String& name) function TestCase (line 5399) | TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, function SetUpEnvironment (line 5436) | static void SetUpEnvironment(Environment* env) { env->SetUp(); } function TearDownEnvironment (line 5437) | static void TearDownEnvironment(Environment* env) { env->TearDown(); } function WriteToShardStatusFileIfNeeded (line 5584) | void WriteToShardStatusFileIfNeeded() { function ShouldShard (line 5606) | bool ShouldShard(const char* total_shards_env, function Int32 (line 5651) | Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { function ShouldRunTestOnShard (line 5669) | bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_... function OsStackTraceGetterInterface (line 5770) | OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { function TestResult (line 5780) | TestResult* UnitTestImpl::current_test_result() { function String (line 5821) | String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, class ClassUniqueToAlwaysTrue (line 5831) | class ClassUniqueToAlwaysTrue {} function IsTrue (line 5834) | bool IsTrue(bool condition) { return condition; } function AlwaysTrue (line 5836) | bool AlwaysTrue() { function SkipPrefix (line 5849) | bool SkipPrefix(const char* prefix, const char** pstr) { function ParseBoolFlag (line 5901) | bool ParseBoolFlag(const char* str, const char* flag, bool* value) { function ParseInt32Flag (line 5918) | bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { function ParseStringFlag (line 5935) | bool ParseStringFlag(const char* str, const char* flag, String* value) { function HasGoogleTestFlagPrefix (line 5953) | static bool HasGoogleTestFlagPrefix(const char* str) { function PrintColorEncoded (line 5973) | static void PrintColorEncoded(const char* str) { function ParseGoogleTestFlagsOnlyImpl (line 6075) | void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { function ParseGoogleTestFlagsOnly (line 6145) | void ParseGoogleTestFlagsOnly(int* argc, char** argv) { function ParseGoogleTestFlagsOnly (line 6148) | void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { function InitGoogleTestImpl (line 6157) | void InitGoogleTestImpl(int* argc, CharType** argv) { class TestNameIs (line 3578) | class TestNameIs { method TestNameIs (line 3583) | explicit TestNameIs(const char* name) type internal (line 3597) | namespace internal { function AssertionResult (line 2640) | AssertionResult HRESULTFailureHelper(const char* expr, function AssertionResult (line 2681) | AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT function AssertionResult (line 2688) | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT function UInt32 (line 2724) | inline UInt32 ChopLowBits(UInt32* bits, int n) { function IsUtf16SurrogatePair (line 2778) | inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { function UInt32 (line 2784) | inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, function String (line 2807) | String WideStringToUtf8(const wchar_t* str, int num_chars) { function String (line 2833) | String String::ShowWideCString(const wchar_t * wide_c_str) { function String (line 2841) | String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { function AssertionResult (line 2863) | AssertionResult CmpHelperSTREQ(const char* expected_expression, function AssertionResult (line 2879) | AssertionResult CmpHelperSTRNE(const char* s1_expression, function String (line 3003) | String String::Format(const char * format, ...) { function String (line 3038) | String StringStreamToString(::std::stringstream* ss) { function String (line 3058) | String AppendUserMessage(const String& gtest_msg, function ReportFailureInUnknownLocation (line 3235) | void ReportFailureInUnknownLocation(TestPartResult::Type result_type, function Result (line 3374) | Result HandleSehExceptionsInMethodIfSupported( function Result (line 3401) | Result HandleExceptionsInMethodIfSupported( function TestInfo (line 3532) | TestInfo* MakeAndRegisterTestInfo( function ReportInvalidTestCaseType (line 3548) | void ReportInvalidTestCaseType(const char* test_case_name, type GTestColor (line 3853) | enum GTestColor { function WORD (line 3863) | WORD GetColorAttribute(GTestColor color) { function ShouldUseColor (line 3888) | bool ShouldUseColor(bool stdout_is_tty) { function ColoredPrintf (line 3923) | void ColoredPrintf(GTestColor color, const char* fmt, ...) { function PrintFullTestCommentIfPresent (line 3969) | void PrintFullTestCommentIfPresent(const TestInfo& test_info) { class PrettyUnitTestResultPrinter (line 3989) | class PrettyUnitTestResultPrinter : public TestEventListener { method PrettyUnitTestResultPrinter (line 3991) | PrettyUnitTestResultPrinter() {} method PrintTestName (line 3992) | static void PrintTestName(const char * test_case, const char * test) { method OnTestProgramStart (line 3997) | virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} method OnEnvironmentsSetUpEnd (line 4000) | virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} method OnEnvironmentsTearDownEnd (line 4007) | virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/... method OnTestProgramEnd (line 4009) | virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} class TestEventRepeater (line 4200) | class TestEventRepeater : public TestEventListener { method TestEventRepeater (line 4202) | TestEventRepeater() : forwarding_enabled_(true) {} method forwarding_enabled (line 4209) | bool forwarding_enabled() const { return forwarding_enabled_; } method set_forwarding_enabled (line 4210) | void set_forwarding_enabled(bool enable) { forwarding_enabled_ = ena... function TestEventListener (line 4245) | TestEventListener* TestEventRepeater::Release(TestEventListener *liste... class XmlUnitTestResultPrinter (line 4313) | class XmlUnitTestResultPrinter : public EmptyTestEventListener { method IsNormalizableWhitespace (line 4322) | static bool IsNormalizableWhitespace(char c) { method IsValidXmlCharacter (line 4327) | static bool IsValidXmlCharacter(char c) { method String (line 4341) | static String EscapeXmlAttribute(const char* str) { method String (line 4346) | static String EscapeXmlText(const char* str) { return EscapeXml(str,... function String (line 4427) | String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_at... function string (line 4472) | string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const stri... function FormatTimeInMillisAsSeconds (line 4499) | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { function String (line 4617) | String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( class StreamingListener (line 4633) | class StreamingListener : public EmptyTestEventListener { method StreamingListener (line 4638) | StreamingListener(const string& host, const string& port) method OnTestProgramStart (line 4649) | void OnTestProgramStart(const UnitTest& /* unit_test */) { method OnTestProgramEnd (line 4653) | void OnTestProgramEnd(const UnitTest& unit_test) { method OnTestIterationStart (line 4663) | void OnTestIterationStart(const UnitTest& /* unit_test */, int itera... method OnTestIterationEnd (line 4668) | void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration ... method OnTestCaseStart (line 4674) | void OnTestCaseStart(const TestCase& test_case) { method OnTestCaseEnd (line 4678) | void OnTestCaseEnd(const TestCase& test_case) { method OnTestStart (line 4684) | void OnTestStart(const TestInfo& test_info) { method OnTestEnd (line 4688) | void OnTestEnd(const TestInfo& test_info) { method OnTestPartResult (line 4695) | void OnTestPartResult(const TestPartResult& test_part_result) { method CloseConnection (line 4710) | void CloseConnection() { method Send (line 4719) | void Send(const string& message) { function string (line 4743) | string StreamingListener::UrlEncode(const char* str) { function String (line 4838) | String OsStackTraceGetter::CurrentStackTrace(int, int) { class TestCaseNameIs (line 5372) | class TestCaseNameIs { method TestCaseNameIs (line 5375) | explicit TestCaseNameIs(const String& name) function TestCase (line 5399) | TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, function SetUpEnvironment (line 5436) | static void SetUpEnvironment(Environment* env) { env->SetUp(); } function TearDownEnvironment (line 5437) | static void TearDownEnvironment(Environment* env) { env->TearDown(); } function WriteToShardStatusFileIfNeeded (line 5584) | void WriteToShardStatusFileIfNeeded() { function ShouldShard (line 5606) | bool ShouldShard(const char* total_shards_env, function Int32 (line 5651) | Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { function ShouldRunTestOnShard (line 5669) | bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_... function OsStackTraceGetterInterface (line 5770) | OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { function TestResult (line 5780) | TestResult* UnitTestImpl::current_test_result() { function String (line 5821) | String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, class ClassUniqueToAlwaysTrue (line 5831) | class ClassUniqueToAlwaysTrue {} function IsTrue (line 5834) | bool IsTrue(bool condition) { return condition; } function AlwaysTrue (line 5836) | bool AlwaysTrue() { function SkipPrefix (line 5849) | bool SkipPrefix(const char* prefix, const char** pstr) { function ParseBoolFlag (line 5901) | bool ParseBoolFlag(const char* str, const char* flag, bool* value) { function ParseInt32Flag (line 5918) | bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { function ParseStringFlag (line 5935) | bool ParseStringFlag(const char* str, const char* flag, String* value) { function HasGoogleTestFlagPrefix (line 5953) | static bool HasGoogleTestFlagPrefix(const char* str) { function PrintColorEncoded (line 5973) | static void PrintColorEncoded(const char* str) { function ParseGoogleTestFlagsOnlyImpl (line 6075) | void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { function ParseGoogleTestFlagsOnly (line 6145) | void ParseGoogleTestFlagsOnly(int* argc, char** argv) { function ParseGoogleTestFlagsOnly (line 6148) | void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { function InitGoogleTestImpl (line 6157) | void InitGoogleTestImpl(int* argc, CharType** argv) { function TestInfo (line 3713) | const TestInfo* TestCase::GetTestInfo(int i) const { function TestInfo (line 3720) | TestInfo* TestCase::GetMutableTestInfo(int i) { function FormatCountableNoun (line 3782) | static internal::String FormatCountableNoun(int count, function FormatTestCount (line 3790) | static internal::String FormatTestCount(int test_count) { function FormatTestCaseCount (line 3795) | static internal::String FormatTestCaseCount(int test_case_count) { function PrintTestPartResultToString (line 3821) | static internal::String PrintTestPartResultToString( function PrintTestPartResult (line 3831) | static void PrintTestPartResult(const TestPartResult& test_part_result) { type internal (line 3851) | namespace internal { function AssertionResult (line 2640) | AssertionResult HRESULTFailureHelper(const char* expr, function AssertionResult (line 2681) | AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT function AssertionResult (line 2688) | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT function UInt32 (line 2724) | inline UInt32 ChopLowBits(UInt32* bits, int n) { function IsUtf16SurrogatePair (line 2778) | inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { function UInt32 (line 2784) | inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, function String (line 2807) | String WideStringToUtf8(const wchar_t* str, int num_chars) { function String (line 2833) | String String::ShowWideCString(const wchar_t * wide_c_str) { function String (line 2841) | String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { function AssertionResult (line 2863) | AssertionResult CmpHelperSTREQ(const char* expected_expression, function AssertionResult (line 2879) | AssertionResult CmpHelperSTRNE(const char* s1_expression, function String (line 3003) | String String::Format(const char * format, ...) { function String (line 3038) | String StringStreamToString(::std::stringstream* ss) { function String (line 3058) | String AppendUserMessage(const String& gtest_msg, function ReportFailureInUnknownLocation (line 3235) | void ReportFailureInUnknownLocation(TestPartResult::Type result_type, function Result (line 3374) | Result HandleSehExceptionsInMethodIfSupported( function Result (line 3401) | Result HandleExceptionsInMethodIfSupported( function TestInfo (line 3532) | TestInfo* MakeAndRegisterTestInfo( function ReportInvalidTestCaseType (line 3548) | void ReportInvalidTestCaseType(const char* test_case_name, type GTestColor (line 3853) | enum GTestColor { function WORD (line 3863) | WORD GetColorAttribute(GTestColor color) { function ShouldUseColor (line 3888) | bool ShouldUseColor(bool stdout_is_tty) { function ColoredPrintf (line 3923) | void ColoredPrintf(GTestColor color, const char* fmt, ...) { function PrintFullTestCommentIfPresent (line 3969) | void PrintFullTestCommentIfPresent(const TestInfo& test_info) { class PrettyUnitTestResultPrinter (line 3989) | class PrettyUnitTestResultPrinter : public TestEventListener { method PrettyUnitTestResultPrinter (line 3991) | PrettyUnitTestResultPrinter() {} method PrintTestName (line 3992) | static void PrintTestName(const char * test_case, const char * test) { method OnTestProgramStart (line 3997) | virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} method OnEnvironmentsSetUpEnd (line 4000) | virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} method OnEnvironmentsTearDownEnd (line 4007) | virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/... method OnTestProgramEnd (line 4009) | virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} class TestEventRepeater (line 4200) | class TestEventRepeater : public TestEventListener { method TestEventRepeater (line 4202) | TestEventRepeater() : forwarding_enabled_(true) {} method forwarding_enabled (line 4209) | bool forwarding_enabled() const { return forwarding_enabled_; } method set_forwarding_enabled (line 4210) | void set_forwarding_enabled(bool enable) { forwarding_enabled_ = ena... function TestEventListener (line 4245) | TestEventListener* TestEventRepeater::Release(TestEventListener *liste... class XmlUnitTestResultPrinter (line 4313) | class XmlUnitTestResultPrinter : public EmptyTestEventListener { method IsNormalizableWhitespace (line 4322) | static bool IsNormalizableWhitespace(char c) { method IsValidXmlCharacter (line 4327) | static bool IsValidXmlCharacter(char c) { method String (line 4341) | static String EscapeXmlAttribute(const char* str) { method String (line 4346) | static String EscapeXmlText(const char* str) { return EscapeXml(str,... function String (line 4427) | String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_at... function string (line 4472) | string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const stri... function FormatTimeInMillisAsSeconds (line 4499) | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { function String (line 4617) | String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( class StreamingListener (line 4633) | class StreamingListener : public EmptyTestEventListener { method StreamingListener (line 4638) | StreamingListener(const string& host, const string& port) method OnTestProgramStart (line 4649) | void OnTestProgramStart(const UnitTest& /* unit_test */) { method OnTestProgramEnd (line 4653) | void OnTestProgramEnd(const UnitTest& unit_test) { method OnTestIterationStart (line 4663) | void OnTestIterationStart(const UnitTest& /* unit_test */, int itera... method OnTestIterationEnd (line 4668) | void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration ... method OnTestCaseStart (line 4674) | void OnTestCaseStart(const TestCase& test_case) { method OnTestCaseEnd (line 4678) | void OnTestCaseEnd(const TestCase& test_case) { method OnTestStart (line 4684) | void OnTestStart(const TestInfo& test_info) { method OnTestEnd (line 4688) | void OnTestEnd(const TestInfo& test_info) { method OnTestPartResult (line 4695) | void OnTestPartResult(const TestPartResult& test_part_result) { method CloseConnection (line 4710) | void CloseConnection() { method Send (line 4719) | void Send(const string& message) { function string (line 4743) | string StreamingListener::UrlEncode(const char* str) { function String (line 4838) | String OsStackTraceGetter::CurrentStackTrace(int, int) { class TestCaseNameIs (line 5372) | class TestCaseNameIs { method TestCaseNameIs (line 5375) | explicit TestCaseNameIs(const String& name) function TestCase (line 5399) | TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, function SetUpEnvironment (line 5436) | static void SetUpEnvironment(Environment* env) { env->SetUp(); } function TearDownEnvironment (line 5437) | static void TearDownEnvironment(Environment* env) { env->TearDown(); } function WriteToShardStatusFileIfNeeded (line 5584) | void WriteToShardStatusFileIfNeeded() { function ShouldShard (line 5606) | bool ShouldShard(const char* total_shards_env, function Int32 (line 5651) | Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { function ShouldRunTestOnShard (line 5669) | bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_... function OsStackTraceGetterInterface (line 5770) | OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { function TestResult (line 5780) | TestResult* UnitTestImpl::current_test_result() { function String (line 5821) | String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, class ClassUniqueToAlwaysTrue (line 5831) | class ClassUniqueToAlwaysTrue {} function IsTrue (line 5834) | bool IsTrue(bool condition) { return condition; } function AlwaysTrue (line 5836) | bool AlwaysTrue() { function SkipPrefix (line 5849) | bool SkipPrefix(const char* prefix, const char** pstr) { function ParseBoolFlag (line 5901) | bool ParseBoolFlag(const char* str, const char* flag, bool* value) { function ParseInt32Flag (line 5918) | bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { function ParseStringFlag (line 5935) | bool ParseStringFlag(const char* str, const char* flag, String* value) { function HasGoogleTestFlagPrefix (line 5953) | static bool HasGoogleTestFlagPrefix(const char* str) { function PrintColorEncoded (line 5973) | static void PrintColorEncoded(const char* str) { function ParseGoogleTestFlagsOnlyImpl (line 6075) | void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { function ParseGoogleTestFlagsOnly (line 6145) | void ParseGoogleTestFlagsOnly(int* argc, char** argv) { function ParseGoogleTestFlagsOnly (line 6148) | void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { function InitGoogleTestImpl (line 6157) | void InitGoogleTestImpl(int* argc, CharType** argv) { function TestEventListener (line 4873) | TestEventListener* TestEventListeners::Release(TestEventListener* listen... function TestEventListener (line 4883) | TestEventListener* TestEventListeners::repeater() { return repeater_; } function UnitTest (line 4936) | UnitTest * UnitTest::GetInstance() { function TestCase (line 5011) | const TestCase* UnitTest::GetTestCase(int i) const { function TestCase (line 5017) | TestCase* UnitTest::GetMutableTestCase(int i) { function TestEventListeners (line 5023) | TestEventListeners& UnitTest::listeners() { function Environment (line 5037) | Environment* UnitTest::AddEnvironment(Environment* env) { function TestCase (line 5189) | const TestCase* UnitTest::current_test_case() const { function TestInfo (line 5197) | const TestInfo* UnitTest::current_test_info() const { type internal (line 5240) | namespace internal { function AssertionResult (line 2640) | AssertionResult HRESULTFailureHelper(const char* expr, function AssertionResult (line 2681) | AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT function AssertionResult (line 2688) | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT function UInt32 (line 2724) | inline UInt32 ChopLowBits(UInt32* bits, int n) { function IsUtf16SurrogatePair (line 2778) | inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { function UInt32 (line 2784) | inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, function String (line 2807) | String WideStringToUtf8(const wchar_t* str, int num_chars) { function String (line 2833) | String String::ShowWideCString(const wchar_t * wide_c_str) { function String (line 2841) | String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { function AssertionResult (line 2863) | AssertionResult CmpHelperSTREQ(const char* expected_expression, function AssertionResult (line 2879) | AssertionResult CmpHelperSTRNE(const char* s1_expression, function String (line 3003) | String String::Format(const char * format, ...) { function String (line 3038) | String StringStreamToString(::std::stringstream* ss) { function String (line 3058) | String AppendUserMessage(const String& gtest_msg, function ReportFailureInUnknownLocation (line 3235) | void ReportFailureInUnknownLocation(TestPartResult::Type result_type, function Result (line 3374) | Result HandleSehExceptionsInMethodIfSupported( function Result (line 3401) | Result HandleExceptionsInMethodIfSupported( function TestInfo (line 3532) | TestInfo* MakeAndRegisterTestInfo( function ReportInvalidTestCaseType (line 3548) | void ReportInvalidTestCaseType(const char* test_case_name, type GTestColor (line 3853) | enum GTestColor { function WORD (line 3863) | WORD GetColorAttribute(GTestColor color) { function ShouldUseColor (line 3888) | bool ShouldUseColor(bool stdout_is_tty) { function ColoredPrintf (line 3923) | void ColoredPrintf(GTestColor color, const char* fmt, ...) { function PrintFullTestCommentIfPresent (line 3969) | void PrintFullTestCommentIfPresent(const TestInfo& test_info) { class PrettyUnitTestResultPrinter (line 3989) | class PrettyUnitTestResultPrinter : public TestEventListener { method PrettyUnitTestResultPrinter (line 3991) | PrettyUnitTestResultPrinter() {} method PrintTestName (line 3992) | static void PrintTestName(const char * test_case, const char * test) { method OnTestProgramStart (line 3997) | virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} method OnEnvironmentsSetUpEnd (line 4000) | virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} method OnEnvironmentsTearDownEnd (line 4007) | virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/... method OnTestProgramEnd (line 4009) | virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} class TestEventRepeater (line 4200) | class TestEventRepeater : public TestEventListener { method TestEventRepeater (line 4202) | TestEventRepeater() : forwarding_enabled_(true) {} method forwarding_enabled (line 4209) | bool forwarding_enabled() const { return forwarding_enabled_; } method set_forwarding_enabled (line 4210) | void set_forwarding_enabled(bool enable) { forwarding_enabled_ = ena... function TestEventListener (line 4245) | TestEventListener* TestEventRepeater::Release(TestEventListener *liste... class XmlUnitTestResultPrinter (line 4313) | class XmlUnitTestResultPrinter : public EmptyTestEventListener { method IsNormalizableWhitespace (line 4322) | static bool IsNormalizableWhitespace(char c) { method IsValidXmlCharacter (line 4327) | static bool IsValidXmlCharacter(char c) { method String (line 4341) | static String EscapeXmlAttribute(const char* str) { method String (line 4346) | static String EscapeXmlText(const char* str) { return EscapeXml(str,... function String (line 4427) | String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_at... function string (line 4472) | string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const stri... function FormatTimeInMillisAsSeconds (line 4499) | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { function String (line 4617) | String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( class StreamingListener (line 4633) | class StreamingListener : public EmptyTestEventListener { method StreamingListener (line 4638) | StreamingListener(const string& host, const string& port) method OnTestProgramStart (line 4649) | void OnTestProgramStart(const UnitTest& /* unit_test */) { method OnTestProgramEnd (line 4653) | void OnTestProgramEnd(const UnitTest& unit_test) { method OnTestIterationStart (line 4663) | void OnTestIterationStart(const UnitTest& /* unit_test */, int itera... method OnTestIterationEnd (line 4668) | void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration ... method OnTestCaseStart (line 4674) | void OnTestCaseStart(const TestCase& test_case) { method OnTestCaseEnd (line 4678) | void OnTestCaseEnd(const TestCase& test_case) { method OnTestStart (line 4684) | void OnTestStart(const TestInfo& test_info) { method OnTestEnd (line 4688) | void OnTestEnd(const TestInfo& test_info) { method OnTestPartResult (line 4695) | void OnTestPartResult(const TestPartResult& test_part_result) { method CloseConnection (line 4710) | void CloseConnection() { method Send (line 4719) | void Send(const string& message) { function string (line 4743) | string StreamingListener::UrlEncode(const char* str) { function String (line 4838) | String OsStackTraceGetter::CurrentStackTrace(int, int) { class TestCaseNameIs (line 5372) | class TestCaseNameIs { method TestCaseNameIs (line 5375) | explicit TestCaseNameIs(const String& name) function TestCase (line 5399) | TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, function SetUpEnvironment (line 5436) | static void SetUpEnvironment(Environment* env) { env->SetUp(); } function TearDownEnvironment (line 5437) | static void TearDownEnvironment(Environment* env) { env->TearDown(); } function WriteToShardStatusFileIfNeeded (line 5584) | void WriteToShardStatusFileIfNeeded() { function ShouldShard (line 5606) | bool ShouldShard(const char* total_shards_env, function Int32 (line 5651) | Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { function ShouldRunTestOnShard (line 5669) | bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_... function OsStackTraceGetterInterface (line 5770) | OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { function TestResult (line 5780) | TestResult* UnitTestImpl::current_test_result() { function String (line 5821) | String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, class ClassUniqueToAlwaysTrue (line 5831) | class ClassUniqueToAlwaysTrue {} function IsTrue (line 5834) | bool IsTrue(bool condition) { return condition; } function AlwaysTrue (line 5836) | bool AlwaysTrue() { function SkipPrefix (line 5849) | bool SkipPrefix(const char* prefix, const char** pstr) { function ParseBoolFlag (line 5901) | bool ParseBoolFlag(const char* str, const char* flag, bool* value) { function ParseInt32Flag (line 5918) | bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { function ParseStringFlag (line 5935) | bool ParseStringFlag(const char* str, const char* flag, String* value) { function HasGoogleTestFlagPrefix (line 5953) | static bool HasGoogleTestFlagPrefix(const char* str) { function PrintColorEncoded (line 5973) | static void PrintColorEncoded(const char* str) { function ParseGoogleTestFlagsOnlyImpl (line 6075) | void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { function ParseGoogleTestFlagsOnly (line 6145) | void ParseGoogleTestFlagsOnly(int* argc, char** argv) { function ParseGoogleTestFlagsOnly (line 6148) | void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { function InitGoogleTestImpl (line 6157) | void InitGoogleTestImpl(int* argc, CharType** argv) { function InitGoogleTest (line 6191) | void InitGoogleTest(int* argc, char** argv) { function InitGoogleTest (line 6197) | void InitGoogleTest(int* argc, wchar_t** argv) { type testing (line 6265) | namespace testing { function ScopedFakeTestPartResultReporter (line 124) | class GTEST_API_ ScopedFakeTestPartResultReporter function AssertionResult (line 2510) | AssertionResult CmpHelperSTRCASENE(const char* s1_expression, type internal (line 6293) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 6334) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function SplitString (line 7294) | static void SplitString(const ::std::string& str, char delimiter, function GetStatusFileDescriptor (line 7315) | int GetStatusFileDescriptor(unsigned int parent_process_id, function InternalRunDeathTestFlag (line 7380) | InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { type internal (line 7490) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 7870) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function PrintByteSegmentInObjectTo (line 8612) | void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t... function PrintBytesInObjectToImpl (line 8631) | void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t c... type internal2 (line 8656) | namespace internal2 { function PrintBytesInObjectTo (line 8663) | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, type internal (line 8670) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function TestPartResult (line 8972) | const TestPartResult& TestPartResultArray::GetTestPartResult(int index... type internal (line 8986) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 9043) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type testing (line 7489) | namespace testing { function ScopedFakeTestPartResultReporter (line 124) | class GTEST_API_ ScopedFakeTestPartResultReporter function AssertionResult (line 2510) | AssertionResult CmpHelperSTRCASENE(const char* s1_expression, type internal (line 6293) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 6334) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function SplitString (line 7294) | static void SplitString(const ::std::string& str, char delimiter, function GetStatusFileDescriptor (line 7315) | int GetStatusFileDescriptor(unsigned int parent_process_id, function InternalRunDeathTestFlag (line 7380) | InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { type internal (line 7490) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 7870) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function PrintByteSegmentInObjectTo (line 8612) | void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t... function PrintBytesInObjectToImpl (line 8631) | void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t c... type internal2 (line 8656) | namespace internal2 { function PrintBytesInObjectTo (line 8663) | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, type internal (line 8670) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function TestPartResult (line 8972) | const TestPartResult& TestPartResultArray::GetTestPartResult(int index... type internal (line 8986) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 9043) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type testing (line 7869) | namespace testing { function ScopedFakeTestPartResultReporter (line 124) | class GTEST_API_ ScopedFakeTestPartResultReporter function AssertionResult (line 2510) | AssertionResult CmpHelperSTRCASENE(const char* s1_expression, type internal (line 6293) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 6334) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function SplitString (line 7294) | static void SplitString(const ::std::string& str, char delimiter, function GetStatusFileDescriptor (line 7315) | int GetStatusFileDescriptor(unsigned int parent_process_id, function InternalRunDeathTestFlag (line 7380) | InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { type internal (line 7490) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 7870) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function PrintByteSegmentInObjectTo (line 8612) | void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t... function PrintBytesInObjectToImpl (line 8631) | void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t c... type internal2 (line 8656) | namespace internal2 { function PrintBytesInObjectTo (line 8663) | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, type internal (line 8670) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function TestPartResult (line 8972) | const TestPartResult& TestPartResultArray::GetTestPartResult(int index... type internal (line 8986) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 9043) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type testing (line 8597) | namespace testing { function ScopedFakeTestPartResultReporter (line 124) | class GTEST_API_ ScopedFakeTestPartResultReporter function AssertionResult (line 2510) | AssertionResult CmpHelperSTRCASENE(const char* s1_expression, type internal (line 6293) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 6334) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function SplitString (line 7294) | static void SplitString(const ::std::string& str, char delimiter, function GetStatusFileDescriptor (line 7315) | int GetStatusFileDescriptor(unsigned int parent_process_id, function InternalRunDeathTestFlag (line 7380) | InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { type internal (line 7490) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 7870) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function PrintByteSegmentInObjectTo (line 8612) | void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t... function PrintBytesInObjectToImpl (line 8631) | void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t c... type internal2 (line 8656) | namespace internal2 { function PrintBytesInObjectTo (line 8663) | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, type internal (line 8670) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function TestPartResult (line 8972) | const TestPartResult& TestPartResultArray::GetTestPartResult(int index... type internal (line 8986) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 9043) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type testing (line 8944) | namespace testing { function ScopedFakeTestPartResultReporter (line 124) | class GTEST_API_ ScopedFakeTestPartResultReporter function AssertionResult (line 2510) | AssertionResult CmpHelperSTRCASENE(const char* s1_expression, type internal (line 6293) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 6334) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function SplitString (line 7294) | static void SplitString(const ::std::string& str, char delimiter, function GetStatusFileDescriptor (line 7315) | int GetStatusFileDescriptor(unsigned int parent_process_id, function InternalRunDeathTestFlag (line 7380) | InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { type internal (line 7490) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 7870) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function PrintByteSegmentInObjectTo (line 8612) | void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t... function PrintBytesInObjectToImpl (line 8631) | void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t c... type internal2 (line 8656) | namespace internal2 { function PrintBytesInObjectTo (line 8663) | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, type internal (line 8670) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function TestPartResult (line 8972) | const TestPartResult& TestPartResultArray::GetTestPartResult(int index... type internal (line 8986) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 9043) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type testing (line 9042) | namespace testing { function ScopedFakeTestPartResultReporter (line 124) | class GTEST_API_ ScopedFakeTestPartResultReporter function AssertionResult (line 2510) | AssertionResult CmpHelperSTRCASENE(const char* s1_expression, type internal (line 6293) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 6334) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function SplitString (line 7294) | static void SplitString(const ::std::string& str, char delimiter, function GetStatusFileDescriptor (line 7315) | int GetStatusFileDescriptor(unsigned int parent_process_id, function InternalRunDeathTestFlag (line 7380) | InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { type internal (line 7490) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 7870) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function PrintByteSegmentInObjectTo (line 8612) | void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t... function PrintBytesInObjectToImpl (line 8631) | void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t c... type internal2 (line 8656) | namespace internal2 { function PrintBytesInObjectTo (line 8663) | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, type internal (line 8670) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { function TestPartResult (line 8972) | const TestPartResult& TestPartResultArray::GetTestPartResult(int index... type internal (line 8986) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { type internal (line 9043) | namespace internal { function String (line 6340) | static String ExitSummary(int exit_code) { function ExitedUnsuccessfully (line 6366) | bool ExitedUnsuccessfully(int exit_status) { function String (line 6375) | static String DeathTestThreadWarning(size_t thread_count) { type DeathTestOutcome (line 6402) | enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW } function DeathTestAbort (line 6409) | void DeathTestAbort(const String& message) { function String (line 6460) | String GetLastErrnoDescription() { function FailFromInternalError (line 6468) | static void FailFromInternalError(int fd) { class DeathTestImpl (line 6518) | class DeathTestImpl : public DeathTest { method DeathTestImpl (line 6520) | DeathTestImpl(const char* a_statement, const RE* a_regex) method RE (line 6536) | const RE* regex() const { return regex_; } method spawned (line 6537) | bool spawned() const { return spawned_; } method set_spawned (line 6538) | void set_spawned(bool is_spawned) { spawned_ = is_spawned; } method status (line 6539) | int status() const { return status_; } method set_status (line 6540) | void set_status(int a_status) { status_ = a_status; } method DeathTestOutcome (line 6541) | DeathTestOutcome outcome() const { return outcome_; } method set_outcome (line 6542) | void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outc... method read_fd (line 6543) | int read_fd() const { return read_fd_; } method set_read_fd (line 6544) | void set_read_fd(int fd) { read_fd_ = fd; } method write_fd (line 6545) | int write_fd() const { return write_fd_; } method set_write_fd (line 6546) | void set_write_fd(int fd) { write_fd_ = fd; } function FormatDeathTestOutput (line 6649) | static ::std::string FormatDeathTestOutput(const ::std::string& outp... class WindowsDeathTest (line 6764) | class WindowsDeathTest : public DeathTestImpl { method WindowsDeathTest (line 6766) | WindowsDeathTest(const char* a_statement, class ForkingDeathTest (line 6936) | class ForkingDeathTest : public DeathTestImpl { method set_child_pid (line 6944) | void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } class NoExecDeathTest (line 6973) | class NoExecDeathTest : public ForkingDeathTest { method NoExecDeathTest (line 6975) | NoExecDeathTest(const char* a_statement, const RE* a_regex) : class ExecDeathTest (line 7027) | class ExecDeathTest : public ForkingDeathTest { method ExecDeathTest (line 7029) | ExecDeathTest(const char* a_statement, const RE* a_regex, class Arguments (line 7041) | class Arguments { method Arguments (line 7043) | Arguments() { method AddArgument (line 7053) | void AddArgument(const char* argument) { method AddArguments (line 7058) | void AddArguments(const ::std::vector& arguments) { type ExecDeathTestArgs (line 7074) | struct ExecDeathTestArgs { function ExecDeathTestChildMain (line 7096) | static int ExecDeathTestChildMain(void* child_arg) { function StackLowerThanAddress (line 7136) | bool StackLowerThanAddress(const void* ptr) { function StackGrowsDown (line 7141) | bool StackGrowsDown() { function pid_t (line 7149) | static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { function IsPathSeparator (line 7518) | static bool IsPathSeparator(char c) { function FilePath (line 7527) | FilePath FilePath::GetCurrentDir() { function FilePath (line 7545) | FilePath FilePath::RemoveExtension(const char* extension) const { function FilePath (line 7575) | FilePath FilePath::RemoveDirectoryName() const { function FilePath (line 7586) | FilePath FilePath::RemoveFileName() const { function FilePath (line 7603) | FilePath FilePath::MakeFileName(const FilePath& directory, function FilePath (line 7618) | FilePath FilePath::ConcatPaths(const FilePath& directory, function FilePath (line 7706) | FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, function FilePath (line 7766) | FilePath FilePath::RemoveTrailingPathSeparator() const { function GetThreadCount (line 7885) | size_t GetThreadCount() { function GetThreadCount (line 7904) | size_t GetThreadCount() { function IsInSet (line 7979) | bool IsInSet(char ch, const char* str) { function IsAsciiDigit (line 7986) | bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function IsAsciiPunct (line 7987) | bool IsAsciiPunct(char ch) { function IsRepeat (line 7990) | bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } function IsAsciiWhiteSpace (line 7991) | bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function IsAsciiWordChar (line 7992) | bool IsAsciiWordChar(char ch) { function IsValidEscape (line 7998) | bool IsValidEscape(char c) { function AtomMatchesChar (line 8004) | bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { function String (line 8026) | String FormatRegexSyntaxError(const char* regex, int index) { function ValidateRegex (line 8033) | bool ValidateRegex(const char* regex) { function MatchRepetitionAndRegexAtHead (line 8096) | bool MatchRepetitionAndRegexAtHead( function MatchRegexAtHead (line 8123) | bool MatchRegexAtHead(const char* regex, const char* str) { function MatchRegexAnywhere (line 8159) | bool MatchRegexAnywhere(const char* regex, const char* str) { function FormatFileLocation (line 8232) | GTEST_API_ ::std::string FormatFileLocation(const char* file, int li... function FormatCompilerIndependentFileLocation (line 8250) | GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( class CapturedStream (line 8289) | class CapturedStream { method CapturedStream (line 8292) | CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { method String (line 8326) | String GetCapturedString() { function String (line 8363) | String CapturedStream::ReadEntireFile(FILE* file) { function CaptureStream (line 8393) | void CaptureStream(int fd, const char* stream_name, CapturedStream**... function String (line 8402) | String GetCapturedStream(CapturedStream** captured_stream) { function CaptureStdout (line 8412) | void CaptureStdout() { function CaptureStderr (line 8417) | void CaptureStderr() { function String (line 8422) | String GetCapturedStdout() { return GetCapturedStream(&g_captured_st... function String (line 8425) | String GetCapturedStderr() { return GetCapturedStream(&g_captured_st... type posix (line 8440) | namespace posix { function Abort (line 8441) | void Abort() { function String (line 8451) | static String FlagToEnvVar(const char* flag) { function ParseInt32 (line 8466) | bool ParseInt32(const Message& src_text, const char* str, Int32* val... function BoolFromGTestEnv (line 8508) | bool BoolFromGTestEnv(const char* flag, bool default_value) { function Int32 (line 8518) | Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { type CharFormat (line 8677) | enum CharFormat { function IsPrintableAscii (line 8686) | inline bool IsPrintableAscii(wchar_t c) { function CharFormat (line 8695) | static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { function CharFormat (line 8741) | static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) { function CharFormat (line 8756) | static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) { function PrintCharAndCodeTo (line 8765) | void PrintCharAndCodeTo(Char c, ostream* os) { function PrintTo (line 8790) | void PrintTo(unsigned char c, ::std::ostream* os) { function PrintTo (line 8793) | void PrintTo(signed char c, ::std::ostream* os) { function PrintTo (line 8799) | void PrintTo(wchar_t wc, ostream* os) { function PrintCharsAsStringTo (line 8806) | static void PrintCharsAsStringTo(const char* begin, size_t len, ostr... function UniversalPrintArray (line 8823) | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { function PrintWideCharsAsStringTo (line 8830) | static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, function PrintTo (line 8848) | void PrintTo(const char* s, ostream* os) { function PrintTo (line 8865) | void PrintTo(const wchar_t* s, ostream* os) { function PrintStringTo (line 8877) | void PrintStringTo(const ::string& s, ostream* os) { function PrintStringTo (line 8882) | void PrintStringTo(const ::std::string& s, ostream* os) { function PrintWideStringTo (line 8888) | void PrintWideStringTo(const ::wstring& s, ostream* os) { function PrintWideStringTo (line 8894) | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { FILE: src/gtest/gtest.h function namespace (line 663) | namespace std { function GTEST_1_TUPLE_ (line 744) | GTEST_1_TUPLE_(T) { function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 764) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 805) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 840) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 879) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 921) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 966) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1013) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1063) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1115) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1171) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function make_tuple (line 1214) | GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { function make_tuple (line 1219) | GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { function make_tuple (line 1224) | GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1230) | GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1236) | GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1242) | GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1248) | GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1254) | GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1261) | GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, type typename (line 1306) | typedef typename gtest_internal::TupleElement< function namespace (line 1314) | namespace gtest_internal { function namespace (line 1454) | namespace gtest_internal { function namespace (line 1734) | namespace testing { function LogToStderr (line 1989) | inline void LogToStderr() {} function FlushInfoLog (line 1990) | inline void FlushInfoLog() { fflush(NULL); } function To (line 2044) | To ImplicitCast_(To x) { return x; } function To (line 2068) | To DownCast_(From* f) { // so we only accept pointers function SleepMilliseconds (line 2133) | inline void SleepMilliseconds(int n) { function class (line 2147) | class Notification { function class (line 2174) | class ThreadWithParamBase { function Join (line 2222) | void Join() { function virtual (line 2229) | virtual void Run() { function class (line 2266) | class MutexBase { function class (line 2310) | class Mutex : public MutexBase { function class (line 2327) | class GTestMutexLock { type GTestMutexLock (line 2340) | typedef GTestMutexLock MutexLock; function class (line 2348) | class ThreadLocalValueHolderBase { function DeleteThreadLocalValue (line 2355) | inline void DeleteThreadLocalValue(void* value_holder) { function explicit (line 2393) | explicit ThreadLocal(const T& value) : key_(CreateKey()), function T (line 2405) | T* pointer() { return GetOrCreateValue(); } function T (line 2406) | const T* pointer() const { return GetOrCreateValue(); } function set (line 2408) | void set(const T& value) { *pointer() = value; } function T (line 2416) | T* pointer() { return &value_; } function pthread_key_t (line 2423) | static pthread_key_t CreateKey() { function T (line 2432) | T* GetOrCreateValue() const { function class (line 2461) | class Mutex { function class (line 2472) | class GTestMutexLock { type GTestMutexLock (line 2477) | typedef GTestMutexLock MutexLock; function explicit (line 2483) | explicit ThreadLocal(const T& value) : value_(value) {} function T (line 2484) | T* pointer() { return &value_; } function T (line 2485) | const T* pointer() const { return &value_; } function set (line 2487) | void set(const T& value) { value_ = value; } type bool_constant (line 2526) | typedef bool_constant type; type bool_constant (line 2531) | typedef bool_constant false_type; type bool_constant (line 2532) | typedef bool_constant true_type; type typename (line 2542) | typedef typename Iterator::value_type value_type; type T (line 2547) | typedef T value_type; type T (line 2552) | typedef T value_type; type __int64 (line 2559) | typedef __int64 BiggestInt; type BiggestInt (line 2563) | typedef long long BiggestInt; function IsAlpha (line 2573) | inline bool IsAlpha(char ch) { function IsAlNum (line 2576) | inline bool IsAlNum(char ch) { function IsDigit (line 2579) | inline bool IsDigit(char ch) { function IsLower (line 2582) | inline bool IsLower(char ch) { function IsSpace (line 2585) | inline bool IsSpace(char ch) { function IsUpper (line 2588) | inline bool IsUpper(char ch) { function IsXDigit (line 2591) | inline bool IsXDigit(char ch) { function ToLower (line 2595) | inline char ToLower(char ch) { function ToUpper (line 2598) | inline char ToUpper(char ch) { function namespace (line 2608) | namespace posix { type UInt (line 2776) | typedef unsigned int UInt; type __int64 (line 2785) | typedef __int64 Int; type UInt (line 2786) | typedef unsigned __int64 UInt; type Int (line 2788) | typedef long long Int; type UInt (line 2789) | typedef unsigned long long UInt; type TypeWithSize (line 2794) | typedef TypeWithSize<4>::Int Int32; type TypeWithSize (line 2795) | typedef TypeWithSize<4>::UInt UInt32; type TypeWithSize (line 2796) | typedef TypeWithSize<8>::Int Int64; type TypeWithSize (line 2797) | typedef TypeWithSize<8>::UInt UInt64; type TypeWithSize (line 2798) | typedef TypeWithSize<8>::Int TimeInMillis; function namespace (line 2904) | namespace testing { function operator (line 3104) | bool operator<(const String& rhs) const { return Compare(rhs) < 0; } function namespace (line 3244) | namespace testing { function namespace (line 3465) | namespace testing { type internal (line 4162) | typedef internal::Types50 type; type internal (line 4214) | typedef internal::Types2 type; type internal (line 4229) | typedef internal::Types3 type; type internal (line 4244) | typedef internal::Types4 type; type internal (line 4259) | typedef internal::Types5 type; type internal (line 4275) | typedef internal::Types6 type; type internal (line 4291) | typedef internal::Types7 type; type internal (line 4306) | typedef internal::Types8 type; type internal (line 4321) | typedef internal::Types9 type; function namespace (line 5028) | namespace internal { type Templates4 (line 5098) | typedef Templates4 Tail; type Templates5 (line 5105) | typedef Templates5 Tail; type Templates6 (line 5113) | typedef Templates6 Tail; type Templates7 (line 5121) | typedef Templates7 Tail; type Templates8 (line 5129) | typedef Templates8 Tail; type Templates9 (line 5138) | typedef Templates9 Tail; type Templates10 (line 5147) | typedef Templates10 Tail; type Templates11 (line 5156) | typedef Templates11 Tail; type Templates12 (line 5166) | typedef Templates12 ... type Templates13 (line 5176) | typedef Templates13 type; function GTestStreamToHelper (line 6776) | void GTestStreamToHelper(std::ostream* os, const T& val) { function namespace (line 6781) | namespace proto2 { class Message; } function namespace (line 6783) | namespace testing { type IsContainer (line 7607) | typedef int IsContainer; type IsNotContainer (line 7615) | typedef char IsNotContainer; function IsContainerTest (line 7617) | IsContainerTest(long /* dummy */) { return '\0'; } type EnableIf (line 7624) | struct EnableIf type type (line 7624) | typedef void type; function ArrayEq (line 7637) | bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function ArrayEq (line 7641) | bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) { function CopyArray (line 7677) | void CopyArray(const T& from, U* to) { *to = from; } function CopyArray (line 7681) | void CopyArray(const T(&from)[N], U(*to)[N]) { type RelationToSource (line 7697) | enum RelationToSource { type Element (line 7716) | typedef Element* iterator; type Element (line 7717) | typedef const Element* const_iterator; function namespace (line 7989) | namespace testing { function namespace (line 8255) | namespace testing { function namespace (line 8547) | namespace testing { function StreamHelper (line 8695) | void StreamHelper(internal::true_type /*dummy*/, T* pointer) { function StreamHelper (line 8703) | void StreamHelper(internal::false_type /*dummy*/, const T& value) { function class (line 8885) | class BaseTest : public ::testing::Test { function namespace (line 9030) | namespace testing { function T (line 9126) | T* get() const { return value_; } function depart (line 9148) | void depart() { function capture (line 9152) | void capture(T* ptr) { function namespace (line 9291) | namespace testing { function namespace (line 9398) | namespace testing_internal { function namespace (line 9435) | namespace testing { function PrintTo (line 9643) | inline void PrintTo(const ::string& s, ::std::ostream* os) { function PrintTo (line 9649) | inline void PrintTo(const ::std::string& s, ::std::ostream* os) { function PrintTo (line 9656) | inline void PrintTo(const ::wstring& s, ::std::ostream* os) { function PrintTo (line 9663) | inline void PrintTo(const ::std::wstring& s, ::std::ostream* os) { function PrintTo (line 9682) | inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) { function Print (line 9776) | static void Print(const T& value, ::std::ostream* os) { function Print (line 9844) | static void Print(const T& value, ::std::ostream* os) { function ostream (line 9862) | ostream* os) { function UniversalTersePrint (line 9865) | inline void UniversalTersePrint(const char* str, ::std::ostream* os) { function UniversalTersePrint (line 9872) | inline void UniversalTersePrint(char* str, ::std::ostream* os) { function ostream (line 9881) | ostream* os) { type std (line 9886) | typedef ::std::vector Strings; function PrintPrefixTo (line 9900) | void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { function TersePrintPrefixToStrings (line 9910) | void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { type TuplePrefixPrinter (line 9920) | struct TuplePrefixPrinter function PrintPrefixTo (line 9922) | void PrintPrefixTo(const Tuple&, ::std::ostream*) {} function TersePrintPrefixToStrings (line 9925) | void TersePrintPrefixToStrings(const Tuple&, Strings*) {} type TuplePrefixPrinter (line 9933) | struct TuplePrefixPrinter function PrintPrefixTo (line 9935) | void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { function TersePrintPrefixToStrings (line 9941) | void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { function ostream (line 9951) | ostream* os) { function string (line 9973) | string PrintToString(const T& value) { function namespace (line 9985) | namespace testing { function CalculateEndIndex (line 10176) | static int CalculateEndIndex(const T& begin, function virtual (line 10207) | virtual ~ValuesInIteratorRangeGenerator() {} function virtual (line 10209) | virtual ParamIteratorInterface* Begin() const { function virtual (line 10212) | virtual ParamIteratorInterface* End() const { function class (line 10219) | class Iterator : public ParamIteratorInterface { function explicit (line 10290) | explicit ParameterizedTestFactory(ParamType parameter) : function virtual (line 10292) | virtual Test* CreateTest() { function virtual (line 10331) | virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { function class (line 10349) | class ParameterizedTestCaseInfoBase { type ParamGenerator (line 10385) | typedef ParamGenerator(GeneratorCreationFunc)(); function explicit (line 10387) | explicit ParameterizedTestCaseInfo(const char* name) function AddTestPattern (line 10400) | void AddTestPattern(const char* test_case_name, function AddTestCaseInstantiation (line 10409) | int AddTestCaseInstantiation(const string& instantiation_name, function virtual (line 10421) | virtual void RegisterTests() { type TestInfo (line 10459) | struct TestInfo { type std (line 10471) | typedef ::std::vector > TestInfoContainer; type std (line 10474) | typedef ::std::vector > function class (line 10490) | class ParameterizedTestCaseRegistry { function namespace (line 10608) | namespace testing { function virtual (line 13397) | virtual ~CartesianProductGenerator2() {} function virtual (line 13399) | virtual ParamIteratorInterface* Begin() const { function virtual (line 13402) | virtual ParamIteratorInterface* End() const { function virtual (line 13419) | virtual ~Iterator() {} function virtual (line 13421) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 13426) | virtual void Advance() { function virtual (line 13435) | virtual ParamIteratorInterface* Clone() const { function virtual (line 13438) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 13439) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 13468) | void ComputeCurrentValue() { function virtual (line 13512) | virtual ~CartesianProductGenerator3() {} function virtual (line 13514) | virtual ParamIteratorInterface* Begin() const { function virtual (line 13518) | virtual ParamIteratorInterface* End() const { function virtual (line 13538) | virtual ~Iterator() {} function virtual (line 13540) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 13545) | virtual void Advance() { function virtual (line 13558) | virtual ParamIteratorInterface* Clone() const { function virtual (line 13561) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 13562) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 13595) | void ComputeCurrentValue() { function virtual (line 13645) | virtual ~CartesianProductGenerator4() {} function virtual (line 13647) | virtual ParamIteratorInterface* Begin() const { function virtual (line 13651) | virtual ParamIteratorInterface* End() const { function virtual (line 13675) | virtual ~Iterator() {} function virtual (line 13677) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 13682) | virtual void Advance() { function virtual (line 13699) | virtual ParamIteratorInterface* Clone() const { function virtual (line 13702) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 13703) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 13740) | void ComputeCurrentValue() { function virtual (line 13796) | virtual ~CartesianProductGenerator5() {} function virtual (line 13798) | virtual ParamIteratorInterface* Begin() const { function virtual (line 13802) | virtual ParamIteratorInterface* End() const { function virtual (line 13829) | virtual ~Iterator() {} function virtual (line 13831) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 13836) | virtual void Advance() { function virtual (line 13857) | virtual ParamIteratorInterface* Clone() const { function virtual (line 13860) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 13861) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 13902) | void ComputeCurrentValue() { type std (line 13959) | typedef ::std::tr1::tuple ParamType; function virtual (line 13966) | virtual ~CartesianProductGenerator6() {} function virtual (line 13968) | virtual ParamIteratorInterface* Begin() const { function virtual (line 13972) | virtual ParamIteratorInterface* End() const { function virtual (line 14002) | virtual ~Iterator() {} function virtual (line 14004) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14009) | virtual void Advance() { function virtual (line 14034) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14037) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14038) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14083) | void ComputeCurrentValue() { type std (line 14145) | typedef ::std::tr1::tuple ParamType; function virtual (line 14152) | virtual ~CartesianProductGenerator7() {} function virtual (line 14154) | virtual ParamIteratorInterface* Begin() const { function virtual (line 14159) | virtual ParamIteratorInterface* End() const { function virtual (line 14192) | virtual ~Iterator() {} function virtual (line 14194) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14199) | virtual void Advance() { function virtual (line 14228) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14231) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14232) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14281) | void ComputeCurrentValue() { type std (line 14348) | typedef ::std::tr1::tuple ParamType; function virtual (line 14364) | virtual ParamIteratorInterface* End() const { function virtual (line 14401) | virtual ~Iterator() {} function virtual (line 14403) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14408) | virtual void Advance() { function virtual (line 14441) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14444) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14445) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14498) | void ComputeCurrentValue() { type std (line 14570) | typedef ::std::tr1::tuple ParamType; function virtual (line 14586) | virtual ParamIteratorInterface* End() const { function virtual (line 14626) | virtual ~Iterator() {} function virtual (line 14628) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14633) | virtual void Advance() { function virtual (line 14670) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14673) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14674) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14731) | void ComputeCurrentValue() { type std (line 14809) | typedef ::std::tr1::tuple Param... function virtual (line 14826) | virtual ParamIteratorInterface* End() const { function virtual (line 14869) | virtual ~Iterator() {} function virtual (line 14871) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14876) | virtual void Advance() { function virtual (line 14917) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14920) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14921) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14982) | void ComputeCurrentValue() { function namespace (line 15377) | namespace testing { function internal (line 16400) | inline internal::ParamGenerator Bool() { function namespace (line 16698) | namespace testing { function class (line 16780) | class GTEST_API_ TestPartResultArray { function class (line 16800) | class TestPartResultReporterInterface { function namespace (line 16807) | namespace internal { type testing (line 16890) | typedef testing::Types MyTypes; type testing (line 16973) | typedef testing::Types MyTypes; function namespace (line 17107) | namespace testing { function namespace (line 18569) | namespace internal { function class (line 18616) | class GTEST_API_ AssertHelper { function virtual (line 18696) | virtual ~WithParamInterface() {} FILE: src/gtest/gtest_main.cc function GTEST_API_ (line 34) | GTEST_API_ int main(int argc, char **argv) { FILE: tools/caffe.cpp function BrewFunction (line 59) | static BrewFunction GetBrewFunction(const caffe::string& name) { function get_gpus (line 74) | static void get_gpus(vector* gpus) { function device_query (line 103) | int device_query() { function CopyLayers (line 117) | void CopyLayers(caffe::Solver* solver, const std::string& model_l... function train (line 130) | int train() { function test (line 191) | int test() { function time (line 259) | int time() { function main (line 347) | int main(int argc, char** argv) {