HomeSort by relevance Sort by last modified time
    Searched full:ctypes (Results 1 - 25 of 27) sorted by null

1 2

  /external/v8/tools/
grokdump.py 30 import ctypes namespace
76 self.size = ctypes.sizeof(self.ctype)
99 class Raw(ctypes.Structure):
113 ("signature", ctypes.c_uint32),
114 ("version", ctypes.c_uint32),
115 ("stream_count", ctypes.c_uint32),
116 ("stream_directories_rva", ctypes.c_uint32),
117 ("checksum", ctypes.c_uint32),
118 ("time_date_stampt", ctypes.c_uint32),
119 ("flags", ctypes.c_uint64
    [all...]
ll_prof.py 32 import ctypes namespace
335 "ia32": ctypes.c_uint32,
336 "arm": ctypes.c_uint32,
337 "mips": ctypes.c_uint32,
338 "x64": ctypes.c_uint64
362 ("name_size", ctypes.c_int32),
364 ("code_size", ctypes.c_int32)])
375 ("position", ctypes.c_int32)])
388 self.log_pos += ctypes.sizeof(event)
418 self.log_pos += ctypes.sizeof(event
    [all...]
test.py 464 import ctypes namespace
465 prev_error_mode = ctypes.windll.kernel32.SetErrorMode(mode)
    [all...]
  /external/llvm/bindings/python/llvm/
disassembler.py 10 from ctypes import CFUNCTYPE
11 from ctypes import POINTER
12 from ctypes import addressof
13 from ctypes import byref
14 from ctypes import c_byte
15 from ctypes import c_char_p
16 from ctypes import c_int
17 from ctypes import c_size_t
18 from ctypes import c_ubyte
19 from ctypes import c_uint6
    [all...]
common.py 10 from ctypes import POINTER
11 from ctypes import c_void_p
12 from ctypes import cdll
14 import ctypes.util namespace
57 """ctypes function that converts this object to a function parameter."""
94 result = ctypes.util.find_library(lib)
core.py 16 from ctypes import POINTER
17 from ctypes import byref
18 from ctypes import c_char_p
object.py 80 from ctypes import c_char_p
81 from ctypes import c_uint64
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py 36 import ctypes namespace
231 class PROCESSENTRY32(ctypes.Structure):
232 _fields_ = [("dwSize", ctypes.c_ulong),
233 ("cntUsage", ctypes.c_ulong),
234 ("th32ProcessID", ctypes.c_ulong),
235 ("th32DefaultHeapID", ctypes.c_ulong),
236 ("th32ModuleID", ctypes.c_ulong),
237 ("cntThreads", ctypes.c_ulong),
238 ("th32ParentProcessID", ctypes.c_ulong),
239 ("pcPriClassBase", ctypes.c_ulong)
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHTMLRepresentation.idl 49 HRESULT supportedMIMETypes([in, out] BSTR* types, [in, out] int* cTypes);
54 HRESULT supportedNonImageMIMETypes([in, out] BSTR* types, [in, out] int* cTypes);
59 HRESULT supportedImageMIMETypes([in, out] BSTR* types, [in, out] int* cTypes);
IWebView.idl 621 HRESULT writeSelectionWithPasteboardTypes([in, size_is(cTypes)] BSTR* types, [in] int cTypes, [in] IDataObject* pasteboard);
    [all...]
  /external/webkit/Source/WebKit/win/
WebHTMLRepresentation.h 50 /* [out][in] */ int* cTypes);
54 /* [out][in] */ int* cTypes);
58 /* [out][in] */ int* cTypes);
WebHTMLRepresentation.cpp 108 /* [out][in] */ int* /*cTypes*/)
116 /* [out][in] */ int* /*cTypes*/)
124 /* [out][in] */ int* /*cTypes*/)
WebView.h 274 /* [in] */ int cTypes,
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
uniq.good 17 ((md->ctypes[*eptr] & ctype_word) != 0);
18 ((md->ctypes[eptr[-1]] & ctype_word) != 0);
21 (md->ctypes[*eptr++] & ctype_digit) != 0)
22 (md->ctypes[*eptr++] & ctype_digit) == 0)
23 (md->ctypes[*eptr++] & ctype_space) != 0)
24 (md->ctypes[*eptr++] & ctype_space) == 0)
25 (md->ctypes[*eptr++] & ctype_word) != 0)
26 (md->ctypes[*eptr++] & ctype_word) == 0)
427 if ((md->ctypes[*eptr++] & ctype_digit) != 0)
428 if ((md->ctypes[*eptr++] & ctype_digit) == 0
    [all...]
uniq.inp 373 ((md->ctypes[*eptr] & ctype_word) != 0);
374 ((md->ctypes[*eptr] & ctype_word) != 0);
375 ((md->ctypes[eptr[-1]] & ctype_word) != 0);
376 ((md->ctypes[eptr[-1]] & ctype_word) != 0);
380 (md->ctypes[*eptr++] & ctype_digit) != 0)
381 (md->ctypes[*eptr++] & ctype_digit) == 0)
382 (md->ctypes[*eptr++] & ctype_space) != 0)
383 (md->ctypes[*eptr++] & ctype_space) == 0)
384 (md->ctypes[*eptr++] & ctype_word) != 0)
385 (md->ctypes[*eptr++] & ctype_word) == 0
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 100 default: // RepeatedStringFieldGenerator handles unknown ctypes.
115 default: // StringFieldGenerator handles unknown ctypes.
cpp_string_field.cc 280 // See comment above about unknown ctypes.
  /external/libffi/
ChangeLog.libffi 77 Thomas Heller <theller@ctypes.org>
83 Thomas Heller <theller@ctypes.org>
88 Thomas Heller <theller@ctypes.org>
124 2008-02-22 Thomas Heller <theller@ctypes.org>
129 2008-02-21 Thomas Heller <theller@ctypes.org>
  /external/webkit/Tools/Scripts/
run-qtwebkit-tests 138 import ctypes
140 handle = ctypes.windll.kernel32.OpenProcess(PROCESS_TERMINATE, False, tst.pid)
141 ctypes.windll.kernel32.TerminateProcess(handle, -1)
142 ctypes.windll.kernel32.CloseHandle(handle)
  /ndk/sources/host-tools/nawk-20071023/
awk.h 146 /* ctypes */
  /external/clang/bindings/python/clang/
cindex.py 60 # o cleanup ctypes wrapping, would be nice to separate the ctypes details more
65 from ctypes import *
81 # ctypes doesn't implicitly convert c_void_p to the appropriate wrapper
174 # FIXME: Eliminate this and make normal constructor? Requires hiding ctypes
    [all...]
  /external/tcpdump/
print-lmp.c 311 * the ctypes are not globally unique so for
  /external/freetype/include/freetype/internal/
ftobjs.h 95 * font files, we must not use those in <ctypes.h> which are
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
  /external/sonivox/jet_tools/JetCreator/
eas.py 7 from ctypes import *
    [all...]

Completed in 1067 milliseconds

1 2