Searched refs:type (Results 626 - 650 of 19236) sorted by relevance

<<21222324252627282930>>

/external/pdfium/core/src/reflow/
H A Dlayoutprovider_taggedpdf.cpp128 CFX_ByteStringC CPDF_LayoutElement::ConvertLayoutType(LayoutType type) argument
131 if(type == LayoutArifact) {
133 } else if( type == LayoutDocument) {
135 } else if( type == LayoutPart) {
137 } else if( type == LayoutArt) {
139 } else if( type == LayoutSect) {
141 } else if( type == LayoutDiv) {
143 } else if( type == LayoutBlockQuote) {
145 } else if( type == LayoutCaption) {
147 } else if( type
572 IsInheritable(LayoutAttr type) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Dcopy_constant_to_storage_tests.cpp72 const unsigned red_zone_size = Elements(storage) - val->type->components();
74 val->type->components(),
79 val->type->base_type,
80 val->type->components());
91 const unsigned red_zone_size = Elements(storage) - val->type->components();
93 val->type->components(),
98 val->type->base_type,
99 val->type->components());
110 const unsigned red_zone_size = Elements(storage) - val->type->components();
112 val->type
[all...]
/external/clang/test/SemaTemplate/
H A Ddeduction.cpp39 typedef T type; typedef in struct:Replace
42 // Replacement of the whole type.
45 typedef Arg1 type; typedef in struct:Replace
50 typedef Arg2 type; typedef in struct:Replace
56 typedef typename Replace<T, Arg1, Arg2>::type const type; typedef in class:Replace::Replace
62 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type; typedef in struct:Replace
68 typedef TT<typename Replace<T1, Arg1, Arg2>::type,
69 typename Replace<T2, Arg1, Arg2>::type> typ typedef in struct:Replace
76 typedef TT<typename Replace<T1, Arg1, Arg2>::type, Arg2> type; typedef in struct:Replace
127 template<typename T> struct Const { typedef void const type; }; typedef in struct:test2::Const
[all...]
H A Ddependent-type-identity.cpp4 // canonical type system. This corresponds to C++ [temp.type], which
5 // specifies type equivalence within a template.
14 typedef U* type; typedef in struct:N::X2::apply
28 typedef T type; typedef in struct:X1
33 void f0(type); // expected-error{{redeclar}}
37 void f1(type*); // expected-error{{redeclar}}
41 void f2(X0<type>*); // expected-error{{redeclar}}
45 void f3(::X0<type>*); // expected-error{{redeclar}}
49 void f4(typename type
[all...]
/external/mesa3d/src/glsl/tests/
H A Dcopy_constant_to_storage_tests.cpp72 const unsigned red_zone_size = Elements(storage) - val->type->components();
74 val->type->components(),
79 val->type->base_type,
80 val->type->components());
91 const unsigned red_zone_size = Elements(storage) - val->type->components();
93 val->type->components(),
98 val->type->base_type,
99 val->type->components());
110 const unsigned red_zone_size = Elements(storage) - val->type->components();
112 val->type
[all...]
/external/valgrind/main/none/tests/x86/
H A Dgen_insn_test.pl214 my $type = $RegTypes{$1};
224 type => $type,
233 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
251 my $type = "st";
261 type => $type,
270 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
287 my $type = $1;
298 my $type
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
H A DTabModelOrderController.java28 * @param type The launch type of the new tab.
32 public int determineInsertionIndex(TabLaunchType type, int position, Tab newTab) { argument
33 if (linkClicked(type)) {
34 position = determineInsertionIndex(type, newTab);
37 if (willOpenInForeground(type, newTab.isIncognito())) {
49 * @param type The launch type of the new tab.
52 public int determineInsertionIndex(TabLaunchType type, Tab newTab) { argument
63 if (willOpenInForeground(type, newTa
119 linkClicked(TabLaunchType type) argument
132 willOpenInForeground(TabLaunchType type, boolean isNewTabIncognito) argument
[all...]
/external/chromium_org/content/public/test/
H A Dmock_storage_client.h31 StorageType type; member in struct:content::MockOriginData
46 const GURL& origin_url, StorageType type, int64 size);
48 const GURL& origin_url, StorageType type, int64 delta);
51 void AddOriginToErrorSet(const GURL& origin_url, StorageType type);
59 StorageType type,
61 virtual void GetOriginsForType(StorageType type,
63 virtual void GetOriginsForHost(StorageType type, const std::string& host,
66 StorageType type,
68 virtual bool DoesSupport(storage::StorageType type) const OVERRIDE;
72 StorageType type,
[all...]
H A Dmock_storage_client.cc37 origin_data_[make_pair(GURL(mock_data[i].origin), mock_data[i].type)] =
45 const GURL& origin_url, StorageType type, int64 size) {
46 DCHECK(origin_data_.find(make_pair(origin_url, type)) == origin_data_.end());
48 origin_data_[make_pair(origin_url, type)] = size;
50 id(), origin_url, type, size, IncrementMockTime()); local
54 const GURL& origin_url, StorageType type, int64 delta) {
55 OriginDataMap::iterator find = origin_data_.find(make_pair(origin_url, type));
62 id(), origin_url, type, delta, IncrementMockTime()); local
75 const GURL& origin_url, StorageType type) {
76 error_origins_.insert(make_pair(origin_url, type));
44 AddOriginAndNotify( const GURL& origin_url, StorageType type, int64 size) argument
53 ModifyOriginAndNotify( const GURL& origin_url, StorageType type, int64 delta) argument
74 AddOriginToErrorSet( const GURL& origin_url, StorageType type) argument
92 GetOriginUsage(const GURL& origin_url, StorageType type, const GetUsageCallback& callback) argument
101 GetOriginsForType( StorageType type, const GetOriginsCallback& callback) argument
109 GetOriginsForHost( StorageType type, const std::string& host, const GetOriginsCallback& callback) argument
118 DeleteOriginData( const GURL& origin, StorageType type, const DeletionCallback& callback) argument
131 RunGetOriginUsage( const GURL& origin_url, StorageType type, const GetUsageCallback& callback) argument
142 RunGetOriginsForType( StorageType type, const GetOriginsCallback& callback) argument
153 RunGetOriginsForHost( StorageType type, const std::string& host, const GetOriginsCallback& callback) argument
166 RunDeleteOriginData( const GURL& origin_url, StorageType type, const DeletionCallback& callback) argument
182 NotifyStorageModified(id(), origin_url, type, -delta); local
[all...]
/external/chromium_org/storage/browser/fileapi/
H A Disolated_file_system_backend.cc41 bool IsolatedFileSystemBackend::CanHandleType(FileSystemType type) const {
42 switch (type) {
74 FileSystemType type) {
75 switch (type) {
89 FileSystemType type) {
95 FileSystemType type, base::File::Error* error_code) {
115 storage::FileSystemType type) const {
116 DCHECK(type == kFileSystemTypeNativeLocal || type == kFileSystemTypeDragged ||
117 type
73 GetAsyncFileUtil( FileSystemType type) argument
88 GetWatcherManager( FileSystemType type) argument
94 GetCopyOrMoveFileValidatorFactory( FileSystemType type, base::File::Error* error_code) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.hpp27 uint64 EbmlMasterElementSize(uint64 type, uint64 value);
28 uint64 EbmlElementSize(uint64 type, int64 value);
29 uint64 EbmlElementSize(uint64 type, uint64 value);
30 uint64 EbmlElementSize(uint64 type, float value);
31 uint64 EbmlElementSize(uint64 type, const char* value);
32 uint64 EbmlElementSize(uint64 type, const uint8* value, uint64 size);
33 uint64 EbmlDateElementSize(uint64 type, int64 value);
50 int32 WriteID(IMkvWriter* writer, uint64 type);
53 bool WriteEbmlElement(IMkvWriter* writer, uint64 type, uint64 value);
54 bool WriteEbmlElement(IMkvWriter* writer, uint64 type, floa
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_model_unittest.cc89 item.type = TYPE_APP_LIST;
111 item.type = TYPE_APP_SHORTCUT;
118 item.type = TYPE_PLATFORM_APP;
122 EXPECT_EQ(TYPE_PLATFORM_APP, model_->items()[index].type);
130 item.type = TYPE_APP_SHORTCUT;
137 EXPECT_EQ(TYPE_APP_SHORTCUT, model_->items()[index].type);
140 item.type = TYPE_APP_SHORTCUT;
163 browser_shortcut.type = TYPE_BROWSER_SHORTCUT;
169 item.type = TYPE_PLATFORM_APP;
179 item.type
[all...]
/external/mockito/src/org/mockito/internal/util/reflection/
H A DGenericMetadataSupport.java23 * as a type context.
32 * <li>Then from this metadata, we can extract meta-data for a generic return type of a method, using
63 * Represents actual type variables resolved for current class.
84 // logger.log("For '" + parameterizedType + "' found type variable : { '" + typeParameter + "(" + System.identityHashCode(typeParameter) + ")" + "' : '" + actualTypeArgument + "(" + System.identityHashCode(typeParameter) + ")" + "' }");
91 // logger.log("For '" + typeParameter.getGenericDeclaration() + "' found type variable : { '" + typeParameter + "(" + System.identityHashCode(typeParameter) + ")" + "' : '" + boundsOf(typeParameter) + "' }");
108 * @param wildCard The WildCard type
130 * @return Raw type of the current instance.
153 * @return Actual type arguments matching the type variables of the raw type represente
217 inferFrom(Type type) argument
364 extractRawTypeOf(Type type) argument
416 extractActualBoundedTypeOf(Type type) argument
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmetafunctions.cpp62 typedef TT<int, int> type; typedef in struct:Replace::EverythingToInt
65 int check0[is_same<EverythingToInt<tuple<double, float>>::type,
72 typedef int_tuple<Values*2 ...> type; typedef in struct:Math::double_values
75 int check0[is_same<double_values<1, 2, -3>::type,
80 typedef int_tuple<(Values*Values)...> type; typedef in struct:Math::square
83 int check1[is_same<square<1, 2, -3>::type,
90 typedef int_tuple<(Values*Values)...> type; typedef in struct:Math::square_tuple
93 int check2[is_same<square_tuple<int_tuple<1, 2, -3> >::type,
160 typedef int_tuple<Indices...> type; typedef in struct:Indices::build_indices_impl
166 int check0[is_same<build_indices<5>::type,
173 typedef tuple<typename Meta<T>::type...> type; typedef in struct:TemplateTemplateApply::apply_each
178 typedef T& type; typedef in struct:TemplateTemplateApply::add_reference
183 typedef T* type; typedef in struct:TemplateTemplateApply::add_pointer
188 typedef const T type; typedef in struct:TemplateTemplateApply::add_const
197 typedef typename apply_each<T, Meta...>::type type; typedef in struct:TemplateTemplateApply::apply_each_indirect
206 typedef typename apply_each<T, Meta::template apply...>::type type; typedef in struct:TemplateTemplateApply::apply_each_nested
212 typedef T& type; typedef in struct:TemplateTemplateApply::add_reference_meta::apply
219 typedef T* type; typedef in struct:TemplateTemplateApply::add_pointer_meta::apply
226 typedef const T type; typedef in struct:TemplateTemplateApply::add_const_meta::apply
263 typedef int type; typedef in struct:SuperReplace::replace_with_int
268 typedef TT<typename replace_with_int<Types>::type...> type; typedef in struct:SuperReplace::replace_with_int
[all...]
/external/deqp/framework/opengl/
H A DgluVarTypeUtil.hpp23 * \brief Shader variable type utilities.
85 VarTypeComponent (Type type_, int index_) : type(type_), index(index_) {}
86 VarTypeComponent (void) : type(TYPE_LAST), index(0) {}
88 bool operator== (const VarTypeComponent& other) const { return type == other.type && index == other.index; }
89 bool operator!= (const VarTypeComponent& other) const { return type != other.type || index != other.index; }
91 Type type; member in struct:glu::VarTypeComponent
100 bool isValidTypePath (const VarType& type, Iterator begin, Iterator end);
103 VarType getVarType (const VarType& type, Iterato
105 isValidTypePath(const VarType& type, const TypeComponentVector& path) argument
106 getVarType(const VarType& type, const TypeComponentVector& path) argument
117 const VarType& type; member in struct:glu::TypeAccessFormat
163 begin(const VarType* type) argument
164 end(const VarType* type) argument
204 SubTypeIterator(const VarType* type) argument
313 isValidTypePath(const VarType& type, Iterator begin, Iterator end) argument
374 getVarType(const VarType& type, Iterator begin, Iterator end) argument
[all...]
/external/chromium_org/content/renderer/
H A Drenderer_clipboard_client.cc110 uint64 RendererClipboardClient::GetSequenceNumber(ui::ClipboardType type) { argument
113 new ClipboardHostMsg_GetSequenceNumber(type, &sequence_number));
118 ui::ClipboardType type) {
121 new ClipboardHostMsg_IsFormatAvailable(format, type, &result));
125 void RendererClipboardClient::Clear(ui::ClipboardType type) { argument
126 RenderThreadImpl::current()->Send(new ClipboardHostMsg_Clear(type));
130 ui::ClipboardType type,
134 type, types, contains_filenames));
137 void RendererClipboardClient::ReadText(ui::ClipboardType type, argument
140 new ClipboardHostMsg_ReadText(type, resul
117 IsFormatAvailable(content::ClipboardFormat format, ui::ClipboardType type) argument
129 ReadAvailableTypes( ui::ClipboardType type, std::vector<base::string16>* types, bool* contains_filenames) argument
143 ReadHTML(ui::ClipboardType type, base::string16* markup, GURL* url, uint32* fragment_start, uint32* fragment_end) argument
151 ReadRTF(ui::ClipboardType type, std::string* result) argument
156 ReadImage(ui::ClipboardType type, std::string* data) argument
169 ReadCustomData(ui::ClipboardType clipboard_type, const base::string16& type, base::string16* data) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlink_uniform_initializers.cpp82 const char *name, const glsl_type *type,
85 if (type->is_record()) {
90 for (unsigned int i = 0; i < type->length; i++) {
91 const glsl_type *field_type = type->fields.structure[i].type;
93 type->fields.structure[i].name);
99 } else if (type->is_array() && type->fields.array->is_record()) {
100 const glsl_type *const element_type = type->fields.array;
102 for (unsigned int i = 0; i < type
81 set_uniform_initializer(void *mem_ctx, gl_shader_program *prog, const char *name, const glsl_type *type, ir_constant *val) argument
[all...]
/external/chromium_org/tools/gn/
H A Doperators.cc26 if (source.type() == Value::STRING) {
32 if (source.type() != Value::LIST) {
64 if (value.type() == Value::NONE) {
80 switch (to_remove.type()) {
132 if (old_value->type() == Value::LIST &&
134 right.type() == Value::LIST &&
153 if (right.type() == Value::LIST && left.value() == kSourcesName) {
168 // allow_type_conversion indicates if we're allowed to change the type of the
185 switch (left->type()) {
188 switch (right.type()) {
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp15-cxx0x.cpp65 typedef places<X1...,X2...> type; typedef in struct:ParameterPackExpansions::append_places
69 struct make_places : append_places<typename make_places<N/2>::type,
70 typename make_places<N-N/2>::type> {};
71 template<> struct make_places<0> { typedef places<> type; }; typedef in struct:ParameterPackExpansions::make_places
72 template<> struct make_places<1> { typedef places<_> type; }; typedef in struct:ParameterPackExpansions::make_places
75 template<place> struct inner { typedef T type; }; typedef in struct:ParameterPackExpansions::wrap::inner
83 typedef types<typename Take<_>::type...> take;
84 typedef types<typename Drop<_>::type...> drop;
89 using type = typename takedrop_impl<typename make_places<N>::type>
[all...]
/external/elfutils/0.153/backends/
H A Dcommon-reloc.c33 #define R_NAME_1(prefix, type) R_NAME_2 (prefix, type)
34 #define R_NAME_2(prefix, type) #prefix #type
41 /* Provide a table of reloc type names, in a PIC-friendly fashion. */
46 #define RELOC_TYPE(type, uses) \
47 char name_##type[sizeof R_NAME (type)];
53 #define RELOC_TYPE(type, uses) R_NAME (type),
106 uint8_t type = ehdr->e_type; local
[all...]
/external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
H A Dresult_of.pass.cpp42 static_assert((std::is_same<typename std::result_of<T>::type, U>::value), "");
69 using type1 = std::result_of<decltype(&wat::foo)(wat)>::type;
77 static_assert((std::is_same<std::result_of<S(int)>::type, short>::value), "Error!");
78 static_assert((std::is_same<std::result_of<S&(unsigned char, int&)>::type, double>::value), "Error!");
79 static_assert((std::is_same<std::result_of<PF1()>::type, bool>::value), "Error!");
80 static_assert((std::is_same<std::result_of<PMS(std::unique_ptr<S>, int)>::type, void>::value), "Error!");
81 static_assert((std::is_same<std::result_of<PMS(S, int)>::type, void>::value), "Error!");
82 static_assert((std::is_same<std::result_of<PMS(const S&, int)>::type, void>::value), "Error!");
84 static_assert((std::is_same<std::result_of<PMD(S)>::type, char&&>::value), "Error!");
86 static_assert((std::is_same<std::result_of<PMD(const S*)>::type, cons
[all...]
/external/mesa3d/src/glsl/
H A Dlink_uniform_initializers.cpp82 const char *name, const glsl_type *type,
85 if (type->is_record()) {
90 for (unsigned int i = 0; i < type->length; i++) {
91 const glsl_type *field_type = type->fields.structure[i].type;
93 type->fields.structure[i].name);
99 } else if (type->is_array() && type->fields.array->is_record()) {
100 const glsl_type *const element_type = type->fields.array;
102 for (unsigned int i = 0; i < type
81 set_uniform_initializer(void *mem_ctx, gl_shader_program *prog, const char *name, const glsl_type *type, ir_constant *val) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
H A DAttributeTypeAndValue.java14 private ASN1ObjectIdentifier type; field in class:AttributeTypeAndValue
19 type = (ASN1ObjectIdentifier)seq.getObjectAt(0);
38 ASN1ObjectIdentifier type,
41 this.type = type;
47 return type;
58 * type OBJECT IDENTIFIER,
59 * value ANY DEFINED BY type }
67 v.add(type);
37 AttributeTypeAndValue( ASN1ObjectIdentifier type, ASN1Encodable value) argument
/external/chromium_org/athena/test/
H A Dtest_app_model_builder.cc27 static std::string GetTitle(Type type) { argument
28 switch (type) {
46 static std::string GetId(Type type) { argument
47 return std::string("id-") + GetTitle(type);
50 explicit DummyItem(Type type) argument
51 : app_list::AppListItem(GetId(type)),
52 type_(type) {
/external/chromium_org/chrome/browser/ui/webui/help/
H A Dhelp_utils_chromeos.cc40 LOG(WARNING) << "Can't parse connection type #" << i;
49 base::string16 GetConnectionTypeAsUTF16(const std::string& type) { argument
50 if (chromeos::NetworkTypePattern::Ethernet().MatchesType(type))
52 if (type == shill::kTypeWifi)
54 if (type == shill::kTypeWimax)
56 if (type == shill::kTypeBluetooth)
58 if (type == shill::kTypeCellular)
60 if (type == shill::kTypeVPN)

Completed in 838 milliseconds

<<21222324252627282930>>