Searched refs:type (Results 101 - 125 of 7554) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/rendering/style/
H A DStyleDashboardRegion.h39 int type; member in struct:WebCore::StyleDashboardRegion
49 return type == o.type && offset == o.offset && label == o.label;
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKType.h35 WK_EXPORT WKTypeID WKGetTypeID(WKTypeRef type);
37 WK_EXPORT WKTypeRef WKRetain(WKTypeRef type);
38 WK_EXPORT void WKRelease(WKTypeRef type);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DBlockCipherFactory.java21 String type; field in class:BlockCipherFactory.CipherEntry
26 public CipherEntry(String type, int blockSize, int keySize, String cipherClass) argument
28 this.type = type;
59 list.add(ce.type);
73 public static BlockCipher createCipher(String type, boolean encrypt, byte[] key, byte[] iv) argument
77 CipherEntry ce = getEntry(type);
81 if (type.endsWith("-cbc"))
86 else if (type.endsWith("-ctr"))
91 throw new IllegalArgumentException("Cannot instantiate " + type);
107 getEntry(String type) argument
119 getBlockSize(String type) argument
125 getKeySize(String type) argument
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DConstantUnion.h16 void setIConst(int i) {iConst = i; type = EbtInt; }
17 void setFConst(float f) {fConst = f; type = EbtFloat; }
18 void setBConst(bool b) {bConst = b; type = EbtBool; }
53 if (constant.type != type)
56 switch (type) {
99 assert(type == constant.type);
100 switch (type) {
121 assert(type
285 TBasicType type; member in class:ConstantUnion
[all...]
/external/openssl/crypto/asn1/
H A Da_type.c66 if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
67 return(a->type);
72 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) argument
79 a->type=type;
80 if (type == V_ASN1_BOOLEAN)
86 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value) argument
88 if (!value || (type == V_ASN1_BOOLEAN))
91 ASN1_TYPE_set(a, type, p);
93 else if (type
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_type.py37 assert not fields[0].type.is_const_qualified()
38 assert fields[0].type.kind == TypeKind.INT
39 assert fields[0].type.get_canonical().kind == TypeKind.INT
42 assert not fields[1].type.is_const_qualified()
43 assert fields[1].type.kind == TypeKind.TYPEDEF
44 assert fields[1].type.get_canonical().kind == TypeKind.INT
45 assert fields[1].type.get_declaration().spelling == 'I'
48 assert not fields[2].type.is_const_qualified()
49 assert fields[2].type.kind == TypeKind.LONG
50 assert fields[2].type
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSAbsentContent.java16 private final ASN1ObjectIdentifier type; field in class:CMSAbsentContent
24 ASN1ObjectIdentifier type)
26 this.type = type;
47 return type;
23 CMSAbsentContent( ASN1ObjectIdentifier type) argument
/external/chromium/net/base/
H A Dstatic_cookie_policy.h43 explicit StaticCookiePolicy(Type type) argument
44 : type_(type) {
49 void set_type(Type type) { type_ = type; } argument
50 Type type() const { return type_; } function in class:net::StaticCookiePolicy
/external/icu4c/tools/toolutil/
H A Dudbgutil.h40 * @param type the type of enum
41 * Print how many enums are contained for this type.
44 U_CAPI int32_t U_EXPORT2 udbg_enumCount(UDebugEnumType type);
48 * @param type type of enum
52 U_CAPI const char * U_EXPORT2 udbg_enumName(UDebugEnumType type, int32_t field);
56 * @param type the type of enum
57 * Print how many enums should be contained for this type
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
H A DDisconnectMessage.java51 private String type; field in class:DisconnectMessage
62 return type;
65 public void setType(String type) { argument
66 this.type = type;
/external/kernel-headers/original/asm-arm/
H A Ddomain.h50 #define domain_val(dom,type) ((type) << (2*(dom)))
62 #define modify_domain(dom,type) \
67 thread->cpu_domain = domain | domain_val(dom, type); \
73 #define modify_domain(dom,type) do { } while (0)
/external/webkit/Source/WebCore/svg/
H A DSVGRect.h33 static String toString(const FloatRect& type) argument
36 builder.append(String::number(type.x()));
38 builder.append(String::number(type.y()));
40 builder.append(String::number(type.width()));
42 builder.append(String::number(type.height()));
/external/mesa3d/src/glsl/
H A Dir_validate.cpp106 if (ir->condition->type != glsl_type::bool_type) {
107 printf("ir_if condition %s type instead of bool.\n",
108 ir->condition->type->name);
211 assert(ir->operands[0]->type == ir->type);
214 assert(ir->type->base_type == GLSL_TYPE_BOOL);
215 assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL);
224 assert(ir->type == ir->operands[0]->type);
231 assert(ir->operands[0]->type
[all...]
/external/clang/test/SemaTemplate/
H A Dexample-typelist.cpp49 typedef typename reverse<typename T::tail>::type reversed_tail;
51 typedef typename reverse<typename reversed_tail::tail>::type most_of_tail;
55 typename reverse<cons<typename T::head, most_of_tail> >::type> type; typedef in class:reverse
61 typedef cons<Head> type; typedef in class:reverse
67 typedef nil type; typedef in class:reverse
70 int reverse0[is_same<reverse<unsigned_inttypes>::type,
76 // metaprogram that finds a type within a list
86 typedef cons<T, Tail> type; typedef in struct:find
91 typedef nil type; typedef in struct:find
[all...]
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DScaleTransformOperation.h34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type) argument
36 return adoptRef(new ScaleTransformOperation(sx, sy, 1, type));
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) argument
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) argument
74 , m_type(type)
76 ASSERT(type == SCALE_X || type == SCALE_Y || type == SCALE_Z || type
[all...]
/external/webkit/Source/WebCore/platform/wx/
H A DMouseEventWx.cpp44 wxEventType type = event.GetEventType(); local
47 if (type == wxEVT_LEFT_DOWN || type == wxEVT_MIDDLE_DOWN || type == wxEVT_RIGHT_DOWN)
50 else if (type == wxEVT_LEFT_UP || type == wxEVT_MIDDLE_UP || type == wxEVT_RIGHT_UP ||
51 type == wxEVT_LEFT_DCLICK || type == wxEVT_MIDDLE_DCLICK || type
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemObject.java12 private String type; field in class:PemObject
19 * @param type pem object type.
22 public PemObject(String type, byte[] content) argument
24 this(type, EMPTY_LIST, content);
30 * @param type pem object type.
34 public PemObject(String type, List headers, byte[] content) argument
36 this.type = type;
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dsessiondescription.cc46 const ContentInfos& contents, const std::string& type) {
49 if (content->type == type) {
62 const std::string& type) const {
63 return FindContentInfoByType(contents_, type);
67 const std::string& type,
69 contents_.push_back(ContentInfo(name, type, description));
45 FindContentInfoByType( const ContentInfos& contents, const std::string& type) argument
66 AddContent(const std::string& name, const std::string& type, const ContentDescription* description) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js3 var type=formSelect.selectedIndex;
6 window.open(document.URL+"?fp_type="+type, "_self");
8 window.open(document.URL.substring(0,idx)+"php?fp_type="+type, "_self");
14 var type=0;
22 type=1;
25 type=2;
31 formSelect.selectedIndex=type;
/external/elfutils/libebl/
H A Deblobjnotetypename.c1 /* Return note type name.
61 ebl_object_note_type_name (ebl, type, buf, len)
63 uint32_t type;
67 const char *res = ebl->object_note_type_name (type, buf, len);
80 if (type < sizeof (knowntypes) / sizeof (knowntypes[0])
81 && knowntypes[type] != NULL)
82 res = knowntypes[type];
85 snprintf (buf, len, "%s: %" PRIu32, gettext ("<unknown>"), type);
/external/qemu/
H A Dmodule.c20 module_init_type type; member in struct:ModuleEntry
46 static ModuleTypeList *find_type(module_init_type type) argument
52 l = &init_type_list[type];
57 void register_module_init(void (*fn)(void), module_init_type type) argument
65 l = find_type(type);
70 void module_call_init(module_init_type type) argument
75 l = find_type(type);
/external/proguard/src/proguard/evaluation/value/
H A DValueFactory.java45 * Creates a new Value of the given type.
46 * The type must be a fully specified internal type for primitives, classes,
49 public Value createValue(String type, Clazz referencedClass, boolean mayBeNull) argument
51 switch (type.charAt(0))
62 default: return createReferenceValue(ClassUtil.isInternalArrayType(type) ?
63 type :
64 ClassUtil.internalClassNameFromClassType(type),
148 * Creates a new ReferenceValue of the given type. The type mus
152 createReferenceValue(String type, Clazz referencedClass, boolean mayBeNull) argument
168 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength) argument
184 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength, Value elementValue) argument
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDashboardRegion.mm34 - initWithRect:(NSRect)r clip:(NSRect)c type:(WebDashboardRegionType)t
39 type = t;
62 return type;
65 static const char* typeName(WebDashboardRegionType type)
67 switch (type) {
82 return [NSString stringWithFormat:@"rect:%@ clip:%@ type:%s", NSStringFromRect(rect), NSStringFromRect(clip), typeName(type)];
88 return NSEqualRects(rect, [other dashboardRegionRect]) && NSEqualRects(clip, [other dashboardRegionClip]) && type == [other dashboardRegionType];
/external/clang/test/SemaCXX/
H A Dnested-name-spec-locations.cpp18 typedef T& type; typedef in struct:add_reference
26 typename add_reference<T>::type
27 * // expected-error{{declared as a pointer to a reference of type}}
36 typename add_reference<T>::type
37 * // expected-error{{declared as a pointer to a reference of type}}
47 t->T::template Inner<typename add_reference<U>::type
48 * // expected-error{{as a pointer to a reference of type}}
68 outer_alias::inner::X0<typename add_reference<T>::type
69 * // expected-error{{as a pointer to a reference of type}}
82 typename add_reference<T>::type
84 >::type type; typedef in struct:TypenameTypeTester
93 >::type type; typedef in struct:DependentTemplateSpecializationTypeTester
99 typedef T type; typedef in struct:HasApply::apply
109 > type; typedef in struct:DependentTemplateSpecializationTypeTester2
127 > type; typedef in struct:DependentTemplateSpecializationTypeTester4
145 type; typedef in struct:DependentTemplateTemplateArgumentTester
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DTypeIdsSection.java21 import com.android.dx.rop.type.Type;
63 Type type = ((CstType) cst).getClassType();
64 IndexedItem result = typeIds.get(type);
85 throw new UnsupportedOperationException("too many type ids");
100 * @param type {@code non-null;} the type to intern
103 public TypeIdItem intern(Type type) { argument
104 if (type == null) {
105 throw new NullPointerException("type == null");
110 TypeIdItem result = typeIds.get(type);
126 intern(CstType type) argument
151 indexOf(Type type) argument
174 indexOf(CstType type) argument
[all...]

Completed in 711 milliseconds

1234567891011>>