HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 151 - 175 of 413) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hashlib.py 9 new(name, string='') - returns a new hash object implementing the
14 than using new():
57 # This tuple and __get_builtin_constructor() must be modified if a new
63 __all__ = __always_supported + ('new', 'algorithms')
70 return _sha.new
73 return _md5.new
107 """new(name, string='') - Return a new hashing object using the named algorithm;
114 """new(name, string='') - Return a new hashing object using the named algorithm
132 new = __py_new variable
    [all...]
hmac.py 28 """Create a new HMAC object.
33 A hashlib constructor returning a new hash object.
47 self.digest_cons = lambda d='': digestmod.new(d)
122 def new(key, msg = None, digestmod = None): function
123 """Create a new hashing object and return it.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 43 def new(self, filename=None): member in class:FileList
119 flist.new()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hashlib.py 9 new(name, string='') - returns a new hash object implementing the
14 than using new():
57 # This tuple and __get_builtin_constructor() must be modified if a new
63 __all__ = __always_supported + ('new', 'algorithms')
70 return _sha.new
73 return _md5.new
107 """new(name, string='') - Return a new hashing object using the named algorithm;
114 """new(name, string='') - Return a new hashing object using the named algorithm
132 new = __py_new variable
    [all...]
hmac.py 28 """Create a new HMAC object.
33 A hashlib constructor returning a new hash object.
47 self.digest_cons = lambda d='': digestmod.new(d)
122 def new(key, msg = None, digestmod = None): function
123 """Create a new hashing object and return it.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 43 def new(self, filename=None): member in class:FileList
119 flist.new()
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_streams.c 71 evStream *new; local
74 OKNEW(new);
75 new->func = func;
76 new->uap = uap;
77 new->fd = fd;
78 new->flags = 0;
79 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0)
81 if (copyvec(new, iov, iocnt) < 0)
83 new->prevDone = NULL
105 evStream *new; local
    [all...]
  /external/google-breakpad/src/testing/gtest/samples/
sample10_unittest.cc 55 // operator new and operator delete help us control water allocation.
56 void* operator new(size_t allocation_size) {
99 Water* water = new Water;
106 Water* water = new Water;
139 // We don't need to worry about deleting the new listener later, as
141 listeners.Append(new LeakChecker);
  /external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
F.pass.cpp 21 #include <new>
27 void* operator new(std::size_t s) throw(std::bad_alloc)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_cfg.h 42 static void* operator new(size_t size, void *ctx)
71 static void* operator new(size_t size, void *ctx)
  /external/protobuf/gtest/samples/
sample10_unittest.cc 55 // operator new and operator delete help us control water allocation.
56 void* operator new(size_t allocation_size) {
100 Water* water = new Water;
107 Water* water = new Water;
140 // We don't need to worry about deleting the new listener later, as
142 listeners.Append(new LeakChecker);
  /external/regex-re2/util/
arena.h 6 // objects. Doing this the usual way (malloc, new) is slow,
14 // The global operator new that can be used as follows:
19 // Foo* foo = new (AllocateInArena, &arena) Foo;
38 // default alignment of 8, but ::operator new() uses alignment of 4,
90 // Syntax: new (AllocateInArena, arena) MyClass;
96 inline void* operator new(size_t size,
  /external/skia/include/core/
SkData.h 79 * Create a new dataref by copying the specified data
84 * Create a new data with uninitialized contents. The caller should call writable_data()
90 * Create a new dataref by copying the specified c-string
98 * Create a new dataref, taking the data ptr as is, and using the
112 * Create a new dataref from a pointer allocated by malloc. The Data object
118 * Create a new dataref the file with the specified path.
124 * Create a new dataref from a SkFILE.
133 * Create a new dataref from a file descriptor.
149 * Create a new dataref using a subset of the data in the specified
155 * Returns a new empty dataref (or a reference to a shared empty dataref)
    [all...]
  /external/toybox/lib/
llist.c 67 void dlist_add_nomalloc(struct double_list **list, struct double_list *new)
70 new->next = *list;
71 new->prev = (*list)->prev;
72 (*list)->prev->next = new;
73 (*list)->prev = new;
74 } else *list = new->next = new->prev = new;
81 struct double_list *new = xmalloc(sizeof(struct double_list)); local
83 new->data = data
    [all...]
  /external/toybox/toys/posix/
du.c 88 } *new; local
90 for (new = *list; new; new = new->next)
91 if(new->ino == st->st_ino && new->dev == st->st_dev)
94 new = xzalloc(sizeof(*new));
95 new->ino = st->st_ino
    [all...]
  /external/v8/src/
allocation.cc 20 void* Malloced::New(size_t size) {
23 v8::internal::FatalProcessOutOfMemory("Malloced operator new");
43 void* Embedded::operator new(size_t size) {
54 void* AllStatic::operator new(size_t size) {
  /external/valgrind/drd/tests/
annotate_sem.c 40 unsigned old, new; local
46 new = old - 1;
49 } while (!old || !__sync_bool_compare_and_swap(&p->value, old, new));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
F.pass.cpp 17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
swap.pass.cpp 18 #include <new>
24 void* operator new(std::size_t s) throw(std::bad_alloc)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.pass.cpp 17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
  /ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.h 70 * will use overwritten operators new/delete for the DWARF objects that use
107 * protection from mistakenly using "traditional" operator 'new' for object
120 /* Main operator new.
129 void* operator new(size_t size, const ElfFile* elf);
134 * operator in order to compliment overwritten operator 'new'.
142 * operator in order to compliment overwritten operator 'new'.
148 /* Default operator new.
151 * of operator 'new'.
153 void* operator new(size_t size) throw() {
  /ndk/sources/third_party/googletest/googletest/samples/
sample10_unittest.cc 55 // operator new and operator delete help us control water allocation.
56 void* operator new(size_t allocation_size) {
99 Water* water = new Water;
106 Water* water = new Water;
139 // We don't need to worry about deleting the new listener later, as
141 listeners.Append(new LeakChecker);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_new.py 4 new = test_support.import_module('new', deprecated=True) variable
12 m = new.module('Spam')
20 # new.classobj()
21 C = new.classobj('Spam', (Spam.Eggs,), {'get_more_yolks': get_more_yolks})
23 # new.instance()
24 c = new.instance(C, {'yolks': 3})
26 o = new.instance(C)
27 self.assertEqual(o.__dict__, {}, "new __dict__ should be empty")
29 o = new.instance(C, None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_new.py 4 new = test_support.import_module('new', deprecated=True) variable
12 m = new.module('Spam')
20 # new.classobj()
21 C = new.classobj('Spam', (Spam.Eggs,), {'get_more_yolks': get_more_yolks})
23 # new.instance()
24 c = new.instance(C, {'yolks': 3})
26 o = new.instance(C)
27 self.assertEqual(o.__dict__, {}, "new __dict__ should be empty")
29 o = new.instance(C, None
    [all...]

Completed in 3962 milliseconds

1 2 3 4 5 67 8 91011>>