Searched refs:type (Results 801 - 825 of 19236) sorted by relevance

<<31323334353637383940>>

/external/chromium_org/third_party/re2/util/
H A Dflags.h13 #define DEFINE_flag(type, name, deflt, desc) \
14 namespace re2 { type FLAGS_##name = deflt; }
16 #define DECLARE_flag(type, name) \
17 namespace re2 { extern type FLAGS_##name; }
/external/chromium_org/third_party/skia/include/core/
H A DSkFlattenableSerialization.h17 SkFlattenable::Type type);
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimatorScript2.h27 SkAnimatorScript2(SkAnimateMaker& , SkDisplayable* working, SkDisplayTypes type);
34 static const SkDisplayEnumMap& GetEnumValues(SkDisplayTypes type);
35 static SkDisplayTypes ToDisplayType(SkOperand2::OpType type);
36 static SkOperand2::OpType ToOpType(SkDisplayTypes type);
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLShaderStringBuilder.h18 GrGLenum type,
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
H A Dtype_profiler_map.h14 void InsertType(void* address, size_t size, const std::type_info& type);
/external/chromium_org/third_party/webrtc/base/
H A Dnullsocketserver.h34 virtual rtc::Socket* CreateSocket(int type) { argument
39 virtual rtc::Socket* CreateSocket(int family, int type) { argument
44 virtual rtc::AsyncSocket* CreateAsyncSocket(int type) { argument
49 virtual rtc::AsyncSocket* CreateAsyncSocket(int family, int type) { argument
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dtrace_after_dispatch.h18 A(Type type) : m_type(type) { } argument
42 Abstract(Type type) : A(type) { } argument
/external/chromium_org/tools/grit/grit/format/
H A Dc_format_unittest.py64 def __init__(self, type, language):
65 self.type = type
69 return self.type
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-postbuild.py30 type=test.STATIC_LIB, variable
33 type=test.STATIC_LIB, variable
36 type=test.STATIC_LIB, variable
48 type=test.SHARED_LIB, variable
/external/chromium_org/tools/gyp/test/ninja/action_dependencies/
H A Dgyptest-action-dependencies.py38 test.built_file_must_not_exist('a', type=test.STATIC_LIB, chdir=chdir)
39 test.built_file_must_not_exist('b', type=test.STATIC_LIB, chdir=chdir)
48 test.built_file_must_exist('a', type=test.STATIC_LIB, chdir=chdir)
49 test.built_file_must_exist('b', type=test.EXECUTABLE, chdir=chdir)
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
H A Dmetadata_cache.js9 * Properties are divided by types, and all properties of one type are accessed
69 * type - metadata type;
85 * @type {Date}
94 * Observer type: it will be notified if the changed Entry is exactly the same
100 * Observer type: it will be notified if the changed Entry is an immediate child
106 * Observer type: it will be notified if the changed Entry is a descendant of
199 * @param {string} type The metadata type.
203 MetadataCache.prototype.get = function(entries, type, callbac
[all...]
/external/chromium_org/ui/gfx/
H A Dgpu_memory_buffer.cc10 : type(EMPTY_BUFFER),
/external/chromium_org/v8/include/
H A Dv8-testing.h23 * Set the type of stressing to do. The default if not set is kStressTypeOpt.
25 static void SetStressRunType(StressType type);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1853.js50 type: "request",
53 type: "script",
63 type: "request",
66 type: "scriptRegExp",
/external/chromium_org/win8/metro_driver/ime/
H A Dime_popup_observer.h22 virtual void OnImePopupChanged(EventType type) = 0;
/external/clang/test/Modules/Inputs/
H A Dcxx-templates-b-impl.h11 extern TemplateInstantiationVisibility<char[4]>::type
/external/clang/test/SemaCXX/
H A Doverload-0x.cpp5 struct A { // expected-note {{candidate function (the implicit copy assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
7 // expected-note@-2 {{candidate function (the implicit move assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
9 A &operator=(void*); // expected-note {{candidate function not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
25 // expected-error@-3 {{non-const lvalue reference to type 'int' cannot bind to a temporary of type 'void'}}
54 // expected-error@-3 {{cannot initialize a variable of type 'double' with an rvalue of type 'void *'}}
63 struct S { typedef int type; }; typedef in struct:sfinae_test::S
66 struct S<sizeof(int)> { typedef void type; }; typedef in struct:sfinae_test::S
70 template<typename T> int cxx11_ignored(T, typename S<sizeof(f(T(), "foo"))>::type *);
[all...]
H A Dunderlying_type.cpp19 "f has the wrong underlying type");
23 "g has the wrong underlying type");
27 "h has the wrong type");
31 typedef __underlying_type(T) type; // expected-error {{only enumeration types}} typedef in struct:f::underlying_type
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
35 "f has the wrong underlying type in the template");
37 underlying_type<int>::type e; // expected-note {{requested here}}
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,
43 "foo has the wrong underlying type");
48 // expected-error@-2 {{variable has incomplete type}}
[all...]
/external/clang/test/SemaTemplate/
H A Dtypename-specifier-4.cpp15 typedef typename inner::type type; typedef in struct:metafun_apply2
23 typedef pair<T1, T2> type; typedef in struct:make_pair::apply
27 int a0[is_same<metafun_apply2<make_pair, int, float>::type,
40 typedef typename new_metafun::type type; typedef in struct:swap_and_apply2::apply
44 int a2[is_same<swap_and_apply2<make_pair>::apply<int, float>::type,
51 typedef typename MetaFun::template apply<T2, T1>::type type; typedef in struct:swap_and_apply2b::apply
55 int a3[is_same<swap_and_apply2b<make_pair>::apply<int, float>::type,
105 struct B { typedef int type; }; // expected-note 2{{member found by ambiguous name lookup}} typedef in struct:PR6463::B
106 struct C { typedef int type; }; // expected-note 2{{member found by ambiguous name lookup}} typedef in struct:PR6463::C
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceUtils.hpp38 rr::VertexAttribType mapGLPureIntegerVertexAttributeType (deUint32 type);
39 rr::VertexAttribType mapGLFloatVertexAttributeType (deUint32 type, bool normalizedInteger, int size, glu::ContextType ctxType);
41 rr::PrimitiveType mapGLPrimitiveType (deUint32 type);
42 rr::IndexType mapGLIndexType (deUint32 type);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DZeroes.java19 import com.android.dx.rop.type.Type;
33 * Gets the "zero" (or {@code null}) value for the given type.
35 * @param type {@code non-null;} the type in question
38 public static Constant zeroFor(Type type) { argument
39 switch (type.getBasicType()) {
50 throw new UnsupportedOperationException("no zero for type: " +
51 type.toHuman());
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DTypeBearer.java17 package com.android.dx.rop.type;
22 * Object which has an associated type, possibly itself.
27 * Gets the type associated with this instance.
29 * @return {@code non-null;} the type
34 * Gets the frame type corresponding to this type. This method returns
36 * type returns {@code true} but the underlying type is not in
38 * whose underlying type <i>is</i> {@code INT}.
40 * @return {@code non-null;} the frame type fo
[all...]
/external/doclava/res/assets/templates/
H A Djd_lists.cs6 tags:[<?cs var:page.tags ?>], type:"<?cs var:page.type ?>" }<?cs if:!last(page) ?>,<?cs /if ?><?cs
H A Dlists.cs3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
/external/e2fsprogs/lib/blkid/
H A Dblkid_types.h32 ?==error: undefined 16 bit type
46 ?==error: undefined 16 bit type
64 ?== error: undefined 32 bit type
82 ?== error: undefined 32 bit type

Completed in 8690 milliseconds

<<31323334353637383940>>