HomeSort by relevance Sort by last modified time
    Searched refs:Types (Results 101 - 125 of 274) sorted by null

1 2 3 45 6 7 8 91011

  /external/v8/src/
code-stubs.cc 359 void ToBooleanStub::Types::Print(StringStream* stream) const {
371 void ToBooleanStub::Types::TraceTransition(Types to) const {
386 bool ToBooleanStub::Types::Record(Handle<Object> object) {
419 bool ToBooleanStub::Types::NeedsMap() const {
426 bool ToBooleanStub::Types::CanBeUndetectable() const {
code-stubs.h 1039 // At most 8 different types can be distinguished, because the Code object
1040 // only has room for a single byte to hold a set of these types. :-P
1043 class Types {
1045 Types() {}
1046 explicit Types(byte bits) : set_(bits) {}
1053 void TraceTransition(Types to) const;
1062 static Types no_types() { return Types(); }
1063 static Types all_types() { return Types((1 << NUMBER_OF_TYPES) - 1);
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 44 # include <sys/types.h>
73 // This allows a user to use his own types in Google Test assertions by
86 // To allow STL containers (and other types that has a << operator
483 // returned for different types. Calling the function twice with the
539 // Types of SetUpTestCase() and TearDownTestCase() functions.
626 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
633 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
636 // 'index' is the index of the test in the type list 'Types'
638 // Types). Valid values for 'index' are [0, N - 1] where N is the
639 // length of Types
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-internal.h 44 # include <sys/types.h>
73 // This allows a user to use his own types in Google Test assertions by
86 // To allow STL containers (and other types that has a << operator
428 // returned for different types. Calling the function twice with the
484 // Types of SetUpTestCase() and TearDownTestCase() functions.
571 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
578 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
581 // 'index' is the index of the test in the type list 'Types'
583 // Types). Valid values for 'index' are [0, N - 1] where N is the
584 // length of Types
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-internal.h 44 # include <sys/types.h>
73 // This allows a user to use his own types in Google Test assertions by
86 // To allow STL containers (and other types that has a << operator
489 // returned for different types. Calling the function twice with the
545 // Types of SetUpTestCase() and TearDownTestCase() functions.
632 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
639 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
642 // 'index' is the index of the test in the type list 'Types'
644 // Types). Valid values for 'index' are [0, N - 1] where N is the
645 // length of Types
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 44 # include <sys/types.h>
73 // This allows a user to use his own types in Google Test assertions by
86 // To allow STL containers (and other types that has a << operator
489 // returned for different types. Calling the function twice with the
545 // Types of SetUpTestCase() and TearDownTestCase() functions.
632 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
639 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
642 // 'index' is the index of the test in the type list 'Types'
644 // Types). Valid values for 'index' are [0, N - 1] where N is the
645 // length of Types
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
46 TypeList Types;
131 const TypeList &getTypes() const { return Types; }
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 44 # include <sys/types.h>
77 // This allows a user to use his own types in Google Test assertions by
90 // To allow STL containers (and other types that has a << operator
517 // returned for different types. Calling the function twice with the
573 // Types of SetUpTestCase() and TearDownTestCase() functions.
660 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
667 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
670 // 'index' is the index of the test in the type list 'Types'
672 // Types). Valid values for 'index' are [0, N - 1] where N is the
673 // length of Types
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 44 # include <sys/types.h>
73 // This allows a user to use his own types in Google Test assertions by
86 // To allow STL containers (and other types that has a << operator
489 // returned for different types. Calling the function twice with the
545 // Types of SetUpTestCase() and TearDownTestCase() functions.
632 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
639 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
642 // 'index' is the index of the test in the type list 'Types'
644 // Types). Valid values for 'index' are [0, N - 1] where N is the
645 // length of Types
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
  /libcore/luni/src/main/java/libcore/reflect/
Types.java 27 public final class Types {
28 private Types() {
46 public static Type[] getTypeArray(ListOfTypes types, boolean clone) {
47 if (types.length() == 0) {
50 Type[] result = types.getResolvedTypes();
77 * Returns the names of {@code types} separated by commas.
79 public static String toString(Class<?>[] types) {
80 if (types.length == 0) {
84 appendTypeName(result, types[0]);
85 for (int i = 1; i < types.length; i++)
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 44 # include <sys/types.h>
403 // returned for different types. Calling the function twice with the
459 // Types of SetUpTestCase() and TearDownTestCase() functions.
547 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
554 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
557 // 'index' is the index of the test in the type list 'Types'
559 // Types). Valid values for 'index' are [0, N - 1] where N is the
560 // length of Types.
563 typedef typename Types::Head Type;
581 return TypeParameterizedTest<Fixture, TestSel, typename Types::Tail
    [all...]
  /external/llvm/unittests/Support/
ErrorOrTest.cpp 42 TEST(ErrorOr, Types) {
52 // Move only types.
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
SDL_MPWtimer.c 26 #include <Types.h>
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 38 import java.sql.Types;
    [all...]
OldResultSetMetaDataTest.java 23 import java.sql.Types;
176 int[] types = { Types.SMALLINT, Types.VARCHAR, Types.VARCHAR}; local
180 assertEquals(types[i], type);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NavigatorView.js 73 if (type === WebInspector.NavigatorTreeOutline.Types.Domain)
75 if (type === WebInspector.NavigatorTreeOutline.Types.FileSystem)
119 var type = project.type() === WebInspector.projectTypes.FileSystem ? WebInspector.NavigatorTreeOutline.Types.FileSystem : WebInspector.NavigatorTreeOutline.Types.Domain;
152 folderNode = new WebInspector.NavigatorFolderTreeNode(this, null, name, WebInspector.NavigatorTreeOutline.Types.Folder, folderPath, name);
361 WebInspector.NavigatorTreeOutline.Types = {
375 if (type === WebInspector.NavigatorTreeOutline.Types.Domain) {
380 if (type === WebInspector.NavigatorTreeOutline.Types.FileSystem)
382 if (type === WebInspector.NavigatorTreeOutline.Types.Folder)
566 WebInspector.BaseNavigatorTreeElement.call(this, WebInspector.NavigatorTreeOutline.Types.UISourceCode, title, ["navigator-" + uiSourceCode.contentType().name() + "-tree-item"], false)
    [all...]
  /external/chromium_org/v8/src/
hydrogen-osr.cc 66 HBranch* test = new(zone) HBranch(true_value, ToBooleanStub::Types(),
  /external/clang/lib/CodeGen/
CGRecordLayout.h 98 static CGBitFieldInfo MakeInfo(class CodeGenTypes &Types,
106 /// lowering AST types to LLVM types.
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
fixed-expansion.cpp 4 template<typename ...Types> struct tuple { };
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteProgram.java 45 actualDBstatement.setNull(index,java.sql.Types.NULL);
  /frameworks/av/media/libmedia/
Metadata.cpp 21 #include <sys/types.h>
39 // Types
40 enum Types {
  /dalvik/hit/src/com/android/hit/
HprofParser.java 108 Types.setIdSize(mIdSize);
471 int fieldSize = Types.getTypeSize(fieldType);
485 int[] types = new int[numEntries]; local
492 types[i] = type;
505 theClass.setFieldTypes(types);
542 ArrayInstance array = new ArrayInstance(id, stack, Types.OBJECT,
558 int size = Types.getTypeSize(type);
591 int size = Types.getTypeSize(type);

Completed in 845 milliseconds

1 2 3 45 6 7 8 91011