HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 226 - 250 of 438) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/scripts/app_engine_server/gae_shell/
shell.py 40 import new namespace
68 # Unpicklable statements to seed new sessions with.
149 statement: string, the statement that created new unpicklable global(s).
170 """Creates a new session and renders the shell.html template.
179 # create a new session
226 statement_module = new.module('__main__')
274 # extract the new globals that this statement added
289 # new globals back into the datastore.
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 16 @template_library ||= ANTLR3::Template::Group.new
40 self.class.template_library or ANTLR3::Template::Group.new
49 @templates.new( source, values )
69 when TokenSource then TokenRewriteStream.new( input, options )
72 TokenRewriteStream.new( lexer_class.new( input, options ), options )
96 lexer = Lexer.new( source, options )
97 parser = Parser.new( lexer, options )
109 input = ANTLR3::FileStream.new( group_file, options )
110 lexer = Lexer.new( input, options
115 def self.new( &block ) singleton method in class:ANTLR3.Template.Group
122 def new( source, values = {} ) method in class:ANTLR3.Template.Group
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_manager.h 125 void* operator new(size_t size) { return (::operator new)(size); }
  /external/chromium_org/courgette/
memory_monitor.cc 116 void* operator new(size_t s) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
StdLibExtras.h 37 static type& name = *new type arguments
258 // This version of placement new omits a 0 check.
260 inline void* operator new(size_t, NotNullTag, void* location)
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_function_detect_recursion.cpp 143 /* Callers of this ralloc-based new need not call delete. It's
145 static void* operator new(size_t size, void *ctx)
192 f = new(mem_ctx) function(sig);
225 call_node *node = new(mem_ctx) call_node;
231 node = new(mem_ctx) call_node;
loop_analysis.h 144 static void* operator new(size_t size, void *ctx)
  /external/chromium_org/third_party/skia/include/core/
SkPostConfig.h 103 #define SkNEW(type_name) (new type_name)
104 #define SkNEW_ARGS(type_name, args) (new type_name args)
105 #define SkNEW_ARRAY(type_name, count) (new type_name[(count)])
106 #define SkNEW_PLACEMENT(buf, type_name) (new (buf) type_name)
108 (new (buf) type_name args)
301 void * operator new(
308 void * operator new[](
323 #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__, 0)
325 #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
327 #define new DEBUG_CLIENTBLOC macro
    [all...]
  /external/chromium_org/tools/emacs/
trybot.el 96 (defun trybot-get-new-buffer ()
97 "Get a new clean buffer for trybot output."
126 (buffer (trybot-get-new-buffer))
  /external/ipsec-tools/src/racoon/
policy.c 292 struct secpolicy *new; local
294 new = racoon_calloc(1, sizeof(*new));
295 if (new == NULL)
298 return new;
381 inssp(new)
382 struct secpolicy *new;
388 if (new->spidx.priority < p->spidx.priority) {
389 TAILQ_INSERT_BEFORE(p, new, chain);
395 TAILQ_INSERT_TAIL(&sptree, new, chain)
428 struct ipsecrequest *new; local
    [all...]
sainfo.c 166 struct sainfo *new; local
168 new = racoon_calloc(1, sizeof(*new));
169 if (new == NULL)
172 new->lifetime = IPSECDOI_ATTR_SA_LD_SEC_DEFAULT;
173 new->lifebyte = IPSECDOI_ATTR_SA_LD_KB_MAX;
175 return new;
201 inssainfo(new)
202 struct sainfo *new;
204 LIST_INSERT_HEAD(&sitree, new, chain)
235 struct sainfoalg *new; local
    [all...]
schedule.c 124 * add new schedule to schedule table.
133 struct sched *new; local
135 new = (struct sched *)racoon_malloc(sizeof(*new));
136 if (new == NULL)
139 memset(new, 0, sizeof(*new));
140 new->func = func;
141 new->param = param;
143 new->id = id++
232 caddr_t new; local
    [all...]
  /external/libsepol/src/
ebitmap.c 20 ebitmap_node_t *n1, *n2, *new, *prev; local
28 new = (ebitmap_node_t *) malloc(sizeof(ebitmap_node_t));
29 if (!new) {
33 memset(new, 0, sizeof(ebitmap_node_t));
35 new->startbit = n1->startbit;
36 new->map = n1->map | n2->map;
40 new->startbit = n1->startbit;
41 new->map = n1->map;
44 new->startbit = n2->startbit;
45 new->map = n2->map
173 ebitmap_node_t *n, *new, *prev; local
250 ebitmap_node_t *n, *prev, *new; local
    [all...]
users.c 122 int new = 0; local
148 /* Otherwise, create a new one */
154 new = 1;
226 /* If there are no errors, and this is a new user, add the user to policy */
227 if (new) {
280 if (new && usrdatum) {
  /external/libsepol/tests/
test-common.c 188 unsigned int i, j, new, found = 0; local
203 new = 0;
207 new = 1;
210 if (new == 0) {
213 CU_ASSERT(new == 1);
229 int j, new, found = 0; local
246 new = 0;
250 new = 1;
253 if (new == 0) {
256 CU_ASSERT(new == 1)
    [all...]
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
Toc.pm 63 #--- HTML::Toc::new() ---------------------------------------------------------
66 sub new { subroutine
88 } # new()
97 # returns: 0 if new level equals previous level, 1 if new level exceeds
98 # previous level, -1 if new level is smaller then previous level.
118 # Bias to new level being smaller than previous level;
236 # Yes, new level is greater than previous level;
244 # Make sure, new level is increased one step only
271 # Yes, new level is smaller than previous level
    [all...]
TocUpdator.pm 35 #--- HTML::TocUpdator::new() --------------------------------------------------
38 sub new { subroutine
41 my $self = $aType->SUPER::new;
54 } # new()
161 # note: Updating actually means: deleting the old ToC and inserting a new
186 my $tokenUpdateBeginParser = HTML::_TokenUpdateParser->new(
190 my $tokenUpdateEndParser = HTML::_TokenUpdateParser->new(
603 #--- HTML::_TokenUpdateParser::new() ------------------------------------------
606 sub new { subroutine
610 my $self = $aType->SUPER::new;
    [all...]
  /external/mesa3d/src/glsl/
ir_function_detect_recursion.cpp 143 /* Callers of this ralloc-based new need not call delete. It's
145 static void* operator new(size_t size, void *ctx)
192 f = new(mem_ctx) function(sig);
225 call_node *node = new(mem_ctx) call_node;
231 node = new(mem_ctx) call_node;
loop_analysis.h 144 static void* operator new(size_t size, void *ctx)
  /external/skia/tools/lua/
skia.lua 23 function Sk.Rect.new(l, t, r, b)
  /external/stlport/src/
cxa.c 72 struct exit_function *new = __new_exitfn (); local
74 if ( new == NULL )
77 new->flavor = ef_cxa;
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
  /external/valgrind/main/coregrind/m_gdbserver/
regcache.c 227 Bool new; local
228 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
230 if (new)
236 Bool new; local
239 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
241 if (new)
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 72 struct exit_function *new = __new_exitfn (); local
74 if ( new == NULL )
77 new->flavor = ef_cxa;
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
  /ndk/sources/host-tools/make-3.81/
strcache.c 45 struct strcache *new; local
46 new = (struct strcache *) xmalloc (sizeof (*new) + bufsize);
47 new->end = new->buffer;
48 new->count = 0;
49 new->bytesfree = bufsize;
51 new->next = strcache;
52 strcache = new;
54 return new;
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
arraynew.cpp 7 #include <new>
11 void* operator new[](size_t s) throw (std::bad_alloc)
21 void* a = new T[7];
30 void* a = new (p) T[13];
38 void* a = new T[11];
68 void* a = new (p) T[11];
112 struct V { void *operator new[] (size_t s, void *p)
125 // new.
142 // There should be a cookie when using a non-global placement new.

Completed in 878 milliseconds

1 2 3 4 5 6 7 8 91011>>