HomeSort by relevance Sort by last modified time
    Searched defs:NULL (Results 326 - 350 of 1005) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
gcmodule.c 58 static PyObject *garbage = NULL;
61 static PyObject *gc_str = NULL;
64 static PyObject *delstr = NULL;
168 static PyObject *tmod = NULL;
252 node->gc.gc_next = NULL; /* object is not currently tracked */
359 assert(op != NULL);
387 NULL);
507 assert(delstr != NULL);
508 return _PyInstance_Lookup(op, delstr) != NULL;
511 return op->ob_type->tp_del != NULL;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gcmodule.c 58 static PyObject *garbage = NULL;
61 static PyObject *gc_str = NULL;
64 static PyObject *delstr = NULL;
128 static PyObject *tmod = NULL;
212 node->gc.gc_next = NULL; /* object is not currently tracked */
319 assert(op != NULL);
347 NULL);
470 assert(delstr != NULL);
471 return _PyInstance_Lookup(op, delstr) != NULL;
474 return op->ob_type->tp_del != NULL;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
BaseTypes.h 62 #ifndef NULL
63 #define NULL ((VOID *) 0)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/
EfiTypes.h 100 #ifndef NULL
101 #define NULL ((VOID *) 0)
  /external/ImageMagick/coders/
svg.c 266 if (svg_info == (SVGInfo *) NULL)
267 return((SVGInfo *) NULL);
271 if (svg_info->scale == (double *) NULL)
280 if (svg_info->text != (char *) NULL)
282 if (svg_info->scale != (double *) NULL)
284 if (svg_info->title != (char *) NULL)
286 if (svg_info->comment != (char *) NULL)
305 assert(string != (const char *) NULL);
309 if (strchr(token,'%') != (char *) NULL)
360 assert(message != (char *) NULL);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
BcKeyStoreSpi.java 78 static final int NULL = 0;
121 this.certChain = null;
218 if (password == null || password.length == 0)
262 Key k = null;
289 if (k != null)
504 return (table.get(alias) != null);
513 if (entry == null)
526 if (entry != null)
536 if (chain != null)
543 return null;
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
BytecodeTypeInference.java 99 push(InferredType.NULL);
766 InferredType lastPopped = null;
872 } else if (typeInStackMapFrame == Opcodes.NULL) {
873 return InferredType.NULL;
929 new AutoValue_BytecodeTypeInference_InferredType("Z", /*uninitializationLabel=*/ null);
931 new AutoValue_BytecodeTypeInference_InferredType("B", /*uninitializationLabel=*/ null);
933 new AutoValue_BytecodeTypeInference_InferredType("I", /*uninitializationLabel=*/ null);
935 new AutoValue_BytecodeTypeInference_InferredType("F", /*uninitializationLabel=*/ null);
937 new AutoValue_BytecodeTypeInference_InferredType("J", /*uninitializationLabel=*/ null);
939 new AutoValue_BytecodeTypeInference_InferredType("D", /*uninitializationLabel=*/ null);
    [all...]
  /external/fio/
gclient.c 26 ge->results_window = NULL;
27 ge->results_notebook = NULL;
46 { "FileMenuAction", GTK_STOCK_FILE, "File", NULL, NULL, NULL},
47 { "GraphMenuAction", GTK_STOCK_FILE, "Graph", NULL, NULL, NULL},
48 { "PrintFile", GTK_STOCK_PRINT, "Print", "<Control>P", NULL, G_CALLBACK(results_print) },
49 { "CloseFile", GTK_STOCK_CLOSE, "Close", "<Control>W", NULL, G_CALLBACK(results_close) }
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
ASTParserConstants.java 96 int NULL = 69;
348 "\"null\"",
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ASTParserConstants.java 96 int NULL = 44;
323 "\"null\"",
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 96 public static final JavaExpression NULL = symbol("null");
159 if (macroMap.get(name) != null) {
332 String methodName = null;
342 Type.DATA, "null")));
732 if (macroInfo == null) {
    [all...]
  /external/libevent/test/
regress_bufferevent.c 96 assert(evbuf != NULL);
128 struct bufferevent *bev1 = NULL, *bev2 = NULL;
135 tt_assert(0 == bufferevent_pair_new(NULL, 0, pair));
139 bufferevent_setcb(bev2, readcb, writecb, errorcb, NULL);
141 tt_ptr_op(bufferevent_get_underlying(bev1), ==, NULL);
145 bev1 = bufferevent_new(pair[0], readcb, writecb, errorcb, NULL);
146 bev2 = bufferevent_new(pair[1], readcb, writecb, errorcb, NULL);
148 tt_ptr_op(bufferevent_get_underlying(bev1), ==, NULL);
149 tt_ptr_op(bufferevent_pair_get_partner(bev1), ==, NULL);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_nir.cpp 309 assert(src.ssa != NULL);
920 NULL, NULL /* before_block/inst */);
926 surf_index, offset_reg, NULL, NULL);
932 surf_index, offset_reg, NULL, NULL);
    [all...]
  /external/mesa3d/src/mesa/main/
shaderapi.c 106 static const char *path = NULL;
162 NULL);
164 _mesa_reference_program(ctx, &ctx->Shader._CurrentFragmentProgram, NULL);
165 _mesa_reference_shader_program(ctx, &ctx->Shader.ActiveProgram, NULL);
168 _mesa_reference_pipeline_object(ctx, &ctx->_Shader, NULL);
209 * invoked with ctx == NULL. In that case, we can only validate that it's
217 return ctx == NULL || ctx->Extensions.ARB_fragment_shader;
219 return ctx == NULL || ctx->Extensions.ARB_vertex_shader;
221 return ctx == NULL || _mesa_has_geometry_shaders(ctx);
224 return ctx == NULL || _mesa_has_tessellation(ctx)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 188 public static final int NULL = LexerCore.NULL;
  /external/python/cpython2/Modules/
gcmodule.c 58 static PyObject *garbage = NULL;
61 static PyObject *gc_str = NULL;
64 static PyObject *delstr = NULL;
168 static PyObject *tmod = NULL;
252 node->gc.gc_next = NULL; /* object is not currently tracked */
359 assert(op != NULL);
387 NULL);
507 assert(delstr != NULL);
508 return _PyInstance_Lookup(op, delstr) != NULL;
511 return op->ob_type->tp_del != NULL;
    [all...]
  /external/python/cpython3/Modules/
gcmodule.c 65 static PyObject *garbage = NULL;
68 static PyObject *gc_str = NULL;
71 static PyObject *callbacks = NULL;
266 node->gc.gc_next = NULL; /* object is not currently tracked */
373 assert(op != NULL);
401 NULL);
528 return op->ob_type->tp_del != NULL;
637 for (wr = *wrlist; wr != NULL; wr = *wrlist) {
647 if (wr->wr_callback == NULL)
709 assert(callback != NULL);
    [all...]
  /external/scapy/scapy/asn1/
asn1.py 156 NULL = 5
345 tag = ASN1_Class_UNIVERSAL.NULL
  /external/sonivox/arm-wt-22k/host_src/
eas_types.h 180 /* define NULL value */
181 #ifndef NULL
182 #define NULL 0
  /external/speex/libspeex/
preprocess.c 87 #ifndef NULL
88 #define NULL 0
442 st->echo_state = NULL;
    [all...]
resample.c 94 #ifndef NULL
95 #define NULL 0
740 return NULL;
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/efi/
Base.h 70 #define NULL ((VOID *) 0)
  /external/turbine/java/com/google/turbine/parse/
Token.java 34 NULL("null"),
  /external/v8/src/
code-stubs.cc 40 deoptimization_handler_(NULL),
51 deoptimization_handler_(NULL),
129 MacroAssembler masm(isolate(), NULL, 256, CodeObjectRequired::kYes);
212 return NULL;
214 return NULL;
424 DCHECK(*known_map_ != NULL);
    [all...]
  /frameworks/base/core/java/android/widget/
Magnifier.java 170 if (mWindow == null) {
189 if (mWindow != null) {
192 mWindow = null;
206 if (mWindow != null) {
244 if (mWindow == null) {
245 return null;
261 SurfaceInfo validMainWindowSurface = SurfaceInfo.NULL;
262 if (mView.getViewRootImpl() != null) {
265 if (mainWindowSurface != null && mainWindowSurface.isValid()) {
276 SurfaceInfo validSurfaceViewSurface = SurfaceInfo.NULL;
    [all...]

Completed in 528 milliseconds

<<11121314151617181920>>