Searched defs:type_ (Results 1 - 25 of 43) sorted by relevance

12

/external/jdiff/src/jdiff/
H A DParamAPI.java21 public String type_; field in class:ParamAPI
25 type_ = type;
34 comp = type_.compareTo(oParamAPI.type_);
51 if (type_.compareTo("void") == 0)
53 return type_;
H A DConstructorAPI.java21 public String type_ = null; field in class:ConstructorAPI
37 type_ = type;
44 int comp = type_.compareTo(constructorAPI.type_);
62 if (type_.compareTo(((ConstructorAPI)o).type_) == 0)
H A DFieldAPI.java21 public String type_; field in class:FieldAPI
50 type_ = type;
60 type_ = f.type_;
75 comp = type_.compareTo(oFieldAPI.type_);
H A DHTMLIndexes.java394 details = currIndex.pkgName_ + "." + currIndex.name_ + " Constructor (" + currIndex.type_ + ")";
396 details = currIndex.pkgName_ + "." + currIndex.className_ + " " + "Method " + currIndex.name_ + "(" + currIndex.type_ + ")";
564 ctorNames.add(new Index(className, 0, pkgName, ctor.type_));
569 Index idx = new Index(className, 1, pkgName, ctor.type_);
592 String type = ctor.type_;
692 String type = meth.type_;
779 fieldNames.add(new Index(fld.name_, 0, pkgName, className, fld.type_, true));
784 Index idx = new Index(fld.name_, 1, pkgName, className, fld.type_, true);
808 String type = fld.type_;
1031 public String type_ field in class:Index
[all...]
/external/chromium/net/base/
H A Dstatic_cookie_policy.h30 : type_(StaticCookiePolicy::ALLOW_ALL_COOKIES) {
34 : type_(type) {
39 void set_type(Type type) { type_ = type; }
40 Type type() const { return type_; }
58 Type type_; member in class:net::StaticCookiePolicy
H A Dupload_data.h26 Element() : type_(TYPE_BYTES), file_range_offset_(0),
30 Type type() const { return type_; }
37 type_ = TYPE_BYTES;
47 type_ = TYPE_FILE;
58 Type type_; member in class:net::UploadData::Element
/external/chromium/base/
H A Dcpu.h23 int type() const { return type_; }
31 int type_; // process type member in class:base::CPU
H A Dobserver_list.h73 ObserverList() : notify_depth_(0), type_(NOTIFY_ALL) {}
74 ObserverList(NotificationType type) : notify_depth_(0), type_(type) {}
118 max_index_(list.type_ == NOTIFY_ALL ?
161 NotificationType type_; member in class:ObserverList
H A Dregistry.h167 DWORD Type() const { return type_; }
181 DWORD type_; member in class:RegistryValueIterator
H A Dvalues.h81 ValueType GetType() const { return type_; }
84 bool IsType(ValueType type) const { return type == type_; }
107 explicit Value(ValueType type) : type_(type) {}
112 ValueType type_; member in class:Value
H A Dmessage_loop.h196 Type type() const { return type_; }
391 Type type_; member in class:MessageLoop
/external/gtest/include/gtest/
H A Dgtest-spi.h105 const TestPartResultType type_; member in class:testing::internal::SingleFailureChecker
H A Dgtest-test-part.h63 : type_(type),
71 TestPartResultType type() const { return type_; }
88 bool passed() const { return type_ == TPRT_SUCCESS; }
91 bool failed() const { return type_ != TPRT_SUCCESS; }
94 bool nonfatally_failed() const { return type_ == TPRT_NONFATAL_FAILURE; }
97 bool fatally_failed() const { return type_ == TPRT_FATAL_FAILURE; }
99 TestPartResultType type_; member in class:testing::TestPartResult
/external/protobuf/gtest/include/gtest/
H A Dgtest-spi.h105 const TestPartResult::Type type_; member in class:testing::internal::SingleFailureChecker
H A Dgtest-test-part.h63 : type_(type),
71 Type type() const { return type_; }
88 bool passed() const { return type_ == kSuccess; }
91 bool failed() const { return type_ != kSuccess; }
94 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
97 bool fatally_failed() const { return type_ == kFatalFailure; }
99 Type type_; member in class:testing::TestPartResult
/external/v8/src/
H A Dmessages.h50 type_(type), args_(args), loc_(loc) { }
51 char* type() const { return type_; }
55 char* type_; member in class:V8Message
H A Dd8-debug.h129 : type_(type), data_(data), next_(NULL) {
137 int type() { return type_; }
144 int type_; member in class:v8::RemoteDebuggerEvent
H A Dd8.h215 Type type_; member in class:v8::LineEditor
H A Dstring-stream.h75 FmtElm(int value) : type_(INT) { // NOLINT
78 explicit FmtElm(double value) : type_(DOUBLE) {
81 FmtElm(const char* value) : type_(C_STR) { // NOLINT
84 FmtElm(const Vector<const uc16>& value) : type_(LC_STR) { // NOLINT
87 FmtElm(Object* value) : type_(OBJ) { // NOLINT
90 FmtElm(Handle<Object> value) : type_(HANDLE) { // NOLINT
93 FmtElm(void* value) : type_(POINTER) { // NOLINT
99 Type type_; member in class:v8::internal::FmtElm
H A Dflags.cc57 FlagType type_; // What type of flag, bool, int, or string. member in struct:v8::internal::__anon6366::Flag
64 FlagType type() const { return type_; }
71 ASSERT(type_ == TYPE_BOOL);
76 ASSERT(type_ == TYPE_INT);
81 ASSERT(type_ == TYPE_FLOAT);
86 ASSERT(type_ == TYPE_STRING);
91 ASSERT(type_ == TYPE_STRING);
99 ASSERT(type_ == TYPE_ARGS);
104 ASSERT(type_ == TYPE_BOOL);
109 ASSERT(type_
[all...]
H A Dscopes.h190 bool is_eval_scope() const { return type_ == EVAL_SCOPE; }
191 bool is_function_scope() const { return type_ == FUNCTION_SCOPE; }
192 bool is_global_scope() const { return type_ == GLOBAL_SCOPE; }
300 Type type_; member in class:v8::internal::Scope
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-spi.h55 : type_(type),
62 TestPartResultType type() const { return type_; }
76 bool passed() const { return type_ == TPRT_SUCCESS; }
79 bool failed() const { return type_ != TPRT_SUCCESS; }
82 bool nonfatally_failed() const { return type_ == TPRT_NONFATAL_FAILURE; }
85 bool fatally_failed() const { return type_ == TPRT_FATAL_FAILURE; }
87 TestPartResultType type_; member in class:testing::TestPartResult
183 const TestPartResultType type_; member in class:testing::internal::SingleFailureChecker
/external/chromium/net/http/
H A Dhttp_cache.h136 void set_type(CacheType type) { type_ = type; }
137 CacheType type() { return type_; }
283 CacheType type_; member in class:net::HttpCache
/external/chromium/net/flip/
H A Dflip_protocol.h138 uint16 type_; member in struct:flip::FlipFrameBlock::__anon996::__anon997
283 uint16 type = ntohs(block()->control_.type_);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dencode.h210 : ref_count_(1), flags_(flags), type_(type),
216 type_(mapper.type_),
223 type_(type),
231 if (type_ == ENCODE) { // labels and/or weights to single label
263 (type_ == ENCODE ? kAddSuperFinalProperties :
270 return (type_ == ENCODE && (flags_ & kEncodeWeights)) ?
275 const EncodeType type() const { return type_; }
309 EncodeType type_; member in class:fst::EncodeMapper
313 : ref_count_(1), flags_(flags), type_(typ
[all...]

Completed in 465 milliseconds

12