HomeSort by relevance Sort by last modified time
    Searched defs:type_ (Results 26 - 43 of 43) sorted by null

12

  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 892 TestPartResultType const type_; member in class:testing::internal::AssertHelper
    [all...]
  /external/gtest/include/gtest/
gtest.h 938 TestPartResultType const type_; member in class:testing::internal::AssertHelper
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.h 402 : properties_(0), type_("null"), isymbols_(0), osymbols_(0),
406 : properties_(impl.properties_), type_(impl.type_),
416 const string& Type() const { return type_; }
418 void SetType(const string &type) { type_ = type; }
464 if (hdr->FstType() != type_) {
466 << type_ << "\": " << opts.source;
477 << type_ << " Fst version: " << opts.source;
503 hdr->SetFstType(type_);
523 string type_; // Unique name of Fst clas member in class:fst::FstImpl
    [all...]
  /external/v8/src/arm/
codegen-arm.h 62 Type type() const { return type_; }
64 ASSERT_EQ(ILLEGAL, type_);
65 type_ = value;
69 ASSERT_NE(ILLEGAL, type_);
70 ASSERT_NE(UNLOADED, type_);
71 type_ = UNLOADED;
75 return (type_ < SLOT) ? 0 : type_;
78 bool is_illegal() const { return type_ == ILLEGAL; }
79 bool is_slot() const { return type_ == SLOT;
107 Type type_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/v8/src/
codegen.h 457 explicit ArgumentsAccessStub(Type type) : type_(type) { }
460 Type type_; member in class:v8::internal::ArgumentsAccessStub
463 int MinorKey() { return type_; }
474 PrintF("ArgumentsAccessStub (type %d)\n", type_);
bootstrapper.cc 51 explicit SourceCodeCache(Script::Type type): type_(type), cache_(NULL) { }
85 Script::cast(fun->shared()->script())->set_type(Smi::FromInt(type_));
89 Script::Type type_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
debug.h 130 BreakLocatorType type_; member in class:v8::internal::BreakLocationIterator
heap.h 1682 Type type_; member in class:v8::internal::TranscendentalCache
    [all...]
ast.h 212 StaticType* type() { return &type_; }
229 StaticType type_; member in class:v8::internal::Expression
269 bool is_target_for_anonymous() const { return type_ == TARGET_FOR_ANONYMOUS; }
273 : labels_(labels), type_(type) {
279 Type type_; member in class:v8::internal::BreakableStatement
1014 : var_(var), type_(type), index_(index) {
1027 Type type() const { return type_; }
1033 Type type_; member in class:v8::internal::Slot
1046 : obj_(obj), key_(key), pos_(pos), type_(type) { }
1058 bool is_synthetic() const { return type_ == SYNTHETIC;
1068 Type type_; member in class:v8::internal::Property
1564 Type type_; member in class:v8::internal::RegExpAssertion
1716 Type type_; member in class:v8::internal::RegExpQuantifier
    [all...]
jsregexp.h 753 Type type() { return type_; }
789 type_(type) { }
790 Type type_; member in class:v8::internal::ActionNode
889 AssertionNodeType type_; member in class:v8::internal::AssertionNode
1136 ActionNode::Type type_; member in class:v8::internal::Trace::DeferredAction
    [all...]
objects.h 3768 uint32_t type_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/chromium/base/
message_loop_unittest.cc 657 type_(ORDERERD),
662 type_(type),
667 TaskItem item(type_, cookie_, true);
672 TaskItem item(type_, cookie_, false);
693 TaskType type_; member in class:OrderedTasks
    [all...]
  /external/jdiff/src/jdiff/
HTMLIndexes.java 394 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_;
1031 public String type_ = null; field in class:Index
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.h 499 Type type_; member in class:google::protobuf::FieldDescriptor
662 const EnumDescriptor* type_; member in class:google::protobuf::EnumValueDescriptor
    [all...]
descriptor.pb.h 889 int type_; member in class:google::protobuf::FieldDescriptorProto
    [all...]
  /external/v8/src/ia32/
codegen-ia32.h 62 Type type() const { return type_; }
64 ASSERT_EQ(ILLEGAL, type_);
65 type_ = value;
69 ASSERT_NE(ILLEGAL, type_);
70 ASSERT_NE(UNLOADED, type_);
71 type_ = UNLOADED;
75 return (type_ < SLOT) ? 0 : type_;
78 bool is_illegal() const { return type_ == ILLEGAL; }
79 bool is_slot() const { return type_ == SLOT;
108 Type type_; member in class:v8::internal::BASE_EMBEDDED
670 TranscendentalCache::Type type_; member in class:v8::internal::TranscendentalCacheStub
    [all...]
  /external/v8/src/x64/
codegen-x64.h 63 Type type() const { return type_; }
65 ASSERT_EQ(ILLEGAL, type_);
66 type_ = value;
70 ASSERT_NE(ILLEGAL, type_);
71 ASSERT_NE(UNLOADED, type_);
72 type_ = UNLOADED;
76 return (type_ < SLOT) ? 0 : type_;
79 bool is_illegal() const { return type_ == ILLEGAL; }
80 bool is_slot() const { return type_ == SLOT;
109 Type type_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 254 ValueType type_; // how to interpret value_ member in class:google::__anon2836::FlagValue
268 if (strcmp(type, "bool") == 0) type_ = FV_BOOL;
269 else if (strcmp(type, "int32") == 0) type_ = FV_INT32;
270 else if (strcmp(type, "int64") == 0) type_ = FV_INT64;
271 else if (strcmp(type, "uint64") == 0) type_ = FV_UINT64;
272 else if (strcmp(type, "double") == 0) type_ = FV_DOUBLE;
273 else if (strcmp(type, "string") == 0) type_ = FV_STRING;
278 switch (type_) {
289 if (type_ == FV_BOOL) {
303 } else if (type_ == FV_STRING)
    [all...]

Completed in 403 milliseconds

12