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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
socketpair.c 10 int socketpair(int domain, int type, int protocol, int* sv) {
11 return ki_socketpair(domain, type, protocol, sv);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
SVGTestInterface.idl 37 [Reflect] attribute DOMString type; // Test SVGNames namespace
  /external/chromium_org/third_party/WebKit/Source/web/
WebNetworkStateNotifier.cpp 43 void WebNetworkStateNotifier::setWebConnectionType(WebConnectionType type)
45 networkStateNotifier().setWebConnectionType(type);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
gas-instlabel.asm 2 .type SUB, @function
  /external/clang/test/CodeGen/
2002-07-31-BadAssert.c 5 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */ member in struct:__anon23138
10 dest->type=0;
  /external/clang/test/Modules/Inputs/submodules/
type_traits.h 3 typedef T type; typedef in struct:remove_reference
8 typedef T type; typedef in struct:remove_reference
  /external/clang/test/SemaTemplate/
typename-specifier-2.cpp 5 typedef typename MetaFun::template apply<T> type; typedef in struct:bind_metafun
11 typedef T* type; typedef in struct:add_pointer::apply
20 bind_metafun<add_pointer, int>::type::type ip = &i;
21 bind_metafun<add_pointer, float>::type::type fp = &i; // expected-error{{cannot initialize a variable of type 'bind_metafun<add_pointer, float>::type::type' (aka 'float *') with an rvalue of type 'int *'}
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
AbstractMediaHeaderBox.java 26 protected AbstractMediaHeaderBox(String type) {
27 super(type);
  /external/objenesis/main/src/org/objenesis/instantiator/basic/
AccessibleInstantiator.java 28 public AccessibleInstantiator(Class type) {
29 super(type);
  /external/chromium_org/third_party/cython/src/Cython/Utility/
CommonTypes.c 3 static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type);
7 static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type) {
15 cached_type = (PyTypeObject*) PyObject_GetAttrString(fake_module, type->tp_name);
19 "Shared Cython type %.200s is not a type object",
20 type->tp_name);
23 if (cached_type->tp_basicsize != type->tp_basicsize) {
25 "Shared Cython type %.200s has the wrong size, try recompiling",
26 type->tp_name);
32 if (PyType_Ready(type) < 0) goto bad
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription.cpp 40 static bool verifyType(const String& type)
42 return type == "offer" || type == "pranswer" || type == "answer";
45 static String constructIllegalTypeExceptionMessage(const String& type)
47 return "Illegal value of attribute 'type' : " + type;
52 String type; local
53 bool ok = DictionaryHelper::get(descriptionInitDict, "type", type);
75 String RTCSessionDescription::type() function in class:blink::RTCSessionDescription
    [all...]
  /external/chromium_org/third_party/speex/libspeex/
stack_alloc.h 60 * @def PUSH(stack, size, type)
62 * Allocates 'size' elements of type 'type' on the stack
66 * @param type Type of element
78 * @def ALLOC(var, size, type)
80 * Allocate 'size' elements of 'type' on stack
84 * @param type Type of element
93 #define PUSH(stack, size, type) (VALGRIND_MAKE_NOACCESS(stack, 1000),ALIGN((stack),sizeof(type)),VALGRIND_MAKE_WRITABLE(stack, (( (…)
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
BasicValue.java 32 import org.mockito.asm.Type;
35 * A {@link Value} that is represented by its type in a seven types type system.
36 * This type system distinguishes the UNINITIALZED, INT, FLOAT, LONG, DOUBLE,
45 public static final Value INT_VALUE = new BasicValue(Type.INT_TYPE);
47 public static final Value FLOAT_VALUE = new BasicValue(Type.FLOAT_TYPE);
49 public static final Value LONG_VALUE = new BasicValue(Type.LONG_TYPE);
51 public static final Value DOUBLE_VALUE = new BasicValue(Type.DOUBLE_TYPE);
53 public static final Value REFERENCE_VALUE = new BasicValue(Type.getObjectType("java/lang/Object"));
57 private final Type type; field in class:BasicValue
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
themeWin.css 35 input:not([type]),
36 input[type="email" i],
37 input[type="number" i],
38 input[type="password" i],
39 input[type="tel" i],
40 input[type="url" i],
41 input[type="text" i] {
45 input[type="search" i] {
49 input[type="checkbox" i] {
53 input[type="radio" i]
    [all...]
  /external/chromium_org/base/allocator/
type_profiler_map_unittest.cc 25 const std::type_info* type; local
27 type = LookupType(dummy.get());
28 EXPECT_EQ(g_const_null, type);
31 type = LookupType(dummy.get());
32 ASSERT_NE(g_const_null, type);
33 EXPECT_STREQ(typeid(int).name(), type->name());
36 type = LookupType(dummy.get());
37 EXPECT_EQ(g_const_null, type);
42 const std::type_info* type; local
46 type = LookupType(dummy.get())
53 const std::type_info* type; local
69 const std::type_info* type; local
    [all...]
  /art/runtime/
primitive.cc 33 std::ostream& operator<<(std::ostream& os, const Primitive::Type& type) {
34 int32_t int_type = static_cast<int32_t>(type);
35 if (type >= Primitive::kPrimNot && type <= Primitive::kPrimVoid) {
38 os << "Type[" << int_type << "]";
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fdim.c 32 #define DECL(type, fn) \
33 type \
34 fn(type x, type y) \
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ClassicToken.java 39 protected int type; field in class:ClassicToken
47 public ClassicToken(int type) {
48 this.type = type;
53 type = oldToken.getType();
59 public ClassicToken(int type, String text) {
60 this.type = type;
64 public ClassicToken(int type, String text, int channel) {
65 this.type = type
    [all...]
  /external/chromium_org/android_webview/common/
aw_hit_test_data.cc 9 AwHitTestData::AwHitTestData() : type(UNKNOWN_TYPE) {}
  /external/chromium_org/ash/wm/
wm_event.cc 10 WMEvent::WMEvent(WMEventType type)
11 : type_(type) {
17 SetBoundsEvent::SetBoundsEvent(WMEventType type, const gfx::Rect& bounds)
18 : WMEvent(type),
  /external/chromium_org/chrome/utility/importer/
importer_creator.h 14 // Creates an Importer of the specified |type|.
15 Importer* CreateImporterByType(ImporterType type);
  /external/chromium_org/components/bookmarks/browser/
bookmark_node_data_mac.cc 16 void BookmarkNodeData::WriteToClipboard(ui::ClipboardType type) {
17 WriteBookmarksToPasteboard(type, elements, profile_path_);
20 bool BookmarkNodeData::ReadFromClipboard(ui::ClipboardType type) {
22 if (ReadBookmarksFromPasteboard(type, elements, &file_path)) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCounters.h 51 static inline void incrementCounter(CounterType type)
54 ++s_counters[type];
57 static inline void decrementCounter(CounterType type)
60 --s_counters[type];
  /external/chromium_org/third_party/WebKit/public/platform/
WebSelectionBound.h 14 enum Type {
20 explicit WebSelectionBound(Type type)
21 : type(type)
26 // The logical type of the endpoint. Note that this is dependent not only on
28 Type type; member in struct:blink::WebSelectionBound
  /external/chromium_org/third_party/angle/src/compiler/translator/
CodeGen.cpp 17 sh::GLenum type, ShShaderSpec spec, ShShaderOutput output)
21 return new TranslatorESSL(type, spec);
23 return new TranslatorGLSL(type, spec);
26 return new TranslatorHLSL(type, spec, output);

Completed in 695 milliseconds

1 23 4 5 6 7 8 91011>>