HomeSort by relevance Sort by last modified time
    Searched refs:type (Results 26 - 50 of 18379) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/quic/congestion_control/
receive_algorithm_interface.cc 13 CongestionFeedbackType type) {
14 switch (type) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCounters.cpp 38 int InspectorCounters::counterValue(CounterType type)
40 return s_counters[type];
  /external/clang/test/Analysis/
elementtype.c 4 int type; member in struct:added_obj_st
7 // Test if we are using the canonical type for ElementRegion.
11 ao[0]->type=0;
  /external/clang/test/SemaTemplate/
metafun-apply.cpp 6 typedef T* type; typedef in struct:add_pointer::apply
13 typedef T& type; // expected-error{{cannot form a reference to 'void'}} typedef in struct:add_reference::apply
19 typedef int type; typedef in struct:bogus::apply
25 typedef typename MetaFun::template apply<T>::type type; // expected-note{{in instantiation of template class 'add_reference::apply<void>' requested here}} \ typedef in struct:apply1
30 apply1<add_pointer, int>::type ip = &i;
31 apply1<add_reference, int>::type ir = i;
32 apply1<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'int'}
    [all...]
  /external/llvm/test/MC/ELF/ARM/
gnu-type-hash.s 5 .type TYPE #STT_FUNC
6 // CHECK: .type TYPE,%function
8 .type type #function
9 // CHECK: .type type,%function
11 .type comma_TYPE, #STT_FUNC
12 // CHECK: .type comma_TYPE,%functio
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IdItem.java 26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) {
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
IdItem.java 26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) {
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
IdItem.java 26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) {
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
    [all...]
  /external/chromium_org/ui/base/
page_transition_types.cc 20 PageTransition PageTransitionStripQualifier(PageTransition type) {
21 return static_cast<PageTransition>(type & ~PAGE_TRANSITION_QUALIFIER_MASK);
24 bool PageTransitionIsValidType(int32 type) {
26 static_cast<PageTransition>(type));
30 PageTransition PageTransitionFromInt(int32 type) {
31 if (!PageTransitionIsValidType(type)) {
32 NOTREACHED() << "Invalid transition type " << type;
37 return static_cast<PageTransition>(type);
40 bool PageTransitionIsMainFrame(PageTransition type) {
    [all...]
  /external/llvm/test/MC/ELF/
type.s 5 .type foo,%function
9 .type bar,@object
13 .type zed,@gnu_unique_object
17 .type obj,@object
18 .type obj,@notype
22 .type func,@function
23 .type func,@object
27 .type ifunc,@gnu_indirect_function
31 .type tls,@tls_object
32 .type tls,@gnu_indirect_functio
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLNameCollection.cpp 30 HTMLNameCollection::HTMLNameCollection(ContainerNode& document, CollectionType type, const AtomicString& name)
31 : HTMLCollection(document, type, DoesNotOverrideItemAfter)
38 ASSERT(type() == WindowNamedItems || type() == DocumentNamedItems);
41 ownerNode().nodeLists()->removeCache(this, type(), m_name);
  /external/chromium_org/third_party/WebKit/public/web/
WebMediaPlayerAction.h 37 enum Type {
46 Type type; member in struct:blink::WebMediaPlayerAction
50 : type(Unknown), enable(false) { }
51 WebMediaPlayerAction(Type type, bool enable)
52 : type(type), enable(enable) { }
WebPluginAction.h 37 enum Type {
44 Type type; member in struct:blink::WebPluginAction
48 : type(Unknown), enable(false) { }
49 WebPluginAction(Type type, bool enable)
50 : type(type), enable(enable) { }
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Local.java 18 import org.mockito.asm.Type;
22 private Type type; field in class:Local
25 public Local(int index, Type type) {
26 this.type = type;
34 public Type getType() {
35 return type;
  /external/objenesis/main/src/org/objenesis/instantiator/basic/
NewInstanceInstantiator.java 30 private final Class type; field in class:NewInstanceInstantiator
32 public NewInstanceInstantiator(Class type) {
33 this.type = type;
38 return type.newInstance();
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_const.c 48 lp_mantissa(struct lp_type type)
50 assert(type.floating);
52 if(type.floating) {
53 switch(type.width) {
66 if(type.sign)
67 return type.width - 1;
69 return type.width;
80 lp_const_shift(struct lp_type type)
82 if(type.floating)
84 else if(type.fixed
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.c 48 lp_mantissa(struct lp_type type)
50 assert(type.floating);
52 if(type.floating) {
53 switch(type.width) {
66 if(type.sign)
67 return type.width - 1;
69 return type.width;
80 lp_const_shift(struct lp_type type)
82 if(type.floating)
84 else if(type.fixed
    [all...]
  /development/ndk/platforms/android-3/arch-arm/include/asm/
domain.h 24 #define domain_val(dom,type) ((type) << (2*(dom)))
29 #define modify_domain(dom,type) do { } while (0)
  /external/chromium_org/content/public/browser/
desktop_media_id.h 21 // Type used to identify desktop media sources. It's converted to string and
25 enum Type {
35 // type TYPE_AURA_WINDOW that corresponds to that |window|.
38 // For DesktopMediaID of type TYPE_AURA_WINDOW returns the |window| that was
46 : type(TYPE_NONE),
49 DesktopMediaID(Type type, Id id)
50 : type(type),
56 return type < other.type || (type == other.type && id < other.id)
66 Type type; member in struct:content::DesktopMediaID
    [all...]
  /external/chromium_org/ppapi/shared_impl/
file_system_util.h 16 PPAPI_SHARED_EXPORT bool FileSystemTypeIsValid(PP_FileSystemType type);
18 PPAPI_SHARED_EXPORT bool FileSystemTypeHasQuota(PP_FileSystemType type);
21 PP_IsolatedFileSystemType_Private type);
  /external/chromium_org/sync/engine/
nudge_handler.h 19 virtual void NudgeForInitialDownload(syncer::ModelType type) = 0;
20 virtual void NudgeForCommit(syncer::ModelType type) = 0;
21 virtual void NudgeForRefresh(syncer::ModelType type) = 0;
  /external/android-clat/
icmp.h 27 // Determines whether an ICMP type is an error message.
28 int is_icmp_error(uint8_t type);
30 // Determines whether an ICMPv6 type is an error message.
31 int is_icmp6_error(uint8_t type);
34 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code);
37 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code);
40 uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code);
43 uint8_t icmp6_to_icmp_code(uint8_t type, uint8_t code);
  /external/bluetooth/bluedroid/stack/avct/
avct_defs.h 32 /* packet type */
51 #define AVCT_BLD_HDR(p, label, type, cr_ipid) \
52 *(p)++ = ((label) << 4) | ((type) << 2) | (cr_ipid);
54 #define AVCT_PRS_HDR(p, label, type, cr_ipid) \
56 type = (*(p) >> 2) & 3; \
59 #define AVCT_PRS_PKT_TYPE(p, type) \
60 type = (*(p) >> 2) & 3;
  /external/iptables/libiptc/
linux_stddef.h 12 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
19 * @type: the type of the container struct this is embedded in.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
28 * Check at compile time that something is of a particular type.
31 #define typecheck(type,x)
    [all...]
  /bionic/libc/bionic/
socket.cpp 21 int socket(int domain, int type, int protocol) {
22 return __netdClientDispatch.socket(domain, type, protocol);

Completed in 1240 milliseconds

12 3 4 5 6 7 8 91011>>