/external/dbus/test/data/invalid-messages/ |
array-of-nil.message | 1 # Message with an array of NIL (not allowed) 20 TYPE NIL 23 ## we want it to fail because of type nil, not because the length is no good
|
/external/webkit/WebKit/mac/WebView/ |
WebResource.mm | 82 return nil; 113 return nil; 120 return [self _initWithData:data URL:URL MIMEType:MIMEType textEncodingName:textEncodingName frameName:frameName response:nil copyData:YES]; 129 return nil; 131 NSData *data = nil; 132 NSURL *url = nil; 133 NSString *mimeType = nil, *textEncoding = nil, *frameName = nil; 134 NSURLResponse *response = nil; [all...] |
WebDataSource.mm | 134 ASSERT(enumerator != nil); 135 NSString *mime = nil; 136 while ((mime = [enumerator nextObject]) != nil) { 138 if ([allTypes objectForKey:mime] == nil) 146 return [WebView _viewClass:nil andRepresentationClass:&repClass forMIMEType:MIMEType allowingPlugins:allowPlugins] ? repClass : nil; 165 while ((archive = [enumerator nextObject]) != nil) 187 return nil; 242 [self _setRepresentation:nil]; 247 static NSMutableDictionary *repTypes = nil; [all...] |
WebPDFRepresentation.mm | 49 nil]; 58 nil]]; 63 static Class PDFDocumentClass = nil; 64 if (PDFDocumentClass == nil) { 66 if (PDFDocumentClass == nil) { 131 doc = nil; 157 return nil; 163 return nil;
|
WebArchive.mm | 78 return nil; 88 return nil; 128 return nil; 156 return nil; 163 return nil; 170 return nil; 177 return nil; 185 while ((subresource = [enumerator nextObject]) != nil) 191 while ((subframeArchive = [enumerator nextObject]) != nil) 197 return nil; [all...] |
WebDelegateImplementationCaching.mm | 85 return nil; 93 return nil; 99 return nil; 107 return nil; 113 return nil; 121 return nil; 127 return nil; 135 return nil; 141 return nil; 149 return nil; [all...] |
WebScriptDebugDelegate.mm | 119 return nil; 127 return nil; 131 return nil; 199 // Returns nil for anonymous functions and for the global frame. 204 return nil; 207 return functionName ? toNSString(*functionName) : nil; 210 // Returns the pending exception for this frame (nil if none). 215 return nil; 218 return exception ? [self _convertValueToObjcValue:exception] : nil; 230 return nil; [all...] |
WebSerializedJSValue.mm | 50 return nil; 55 return nil; 62 return nil; 78 _private = nil;
|
/external/webkit/WebCore/accessibility/mac/ |
AccessibilityObjectWrapper.mm | 212 return nil; 221 return nil; 248 return nil; 263 nil]; 275 if (rgbColor == nil) 297 CGColorRef existingColor = (CGColorRef) [attrString attribute:attribute atIndex:range.location effectiveRange:nil]; 500 return nil; 506 return nil; 516 return nil; 521 return nil; [all...] |
/external/bluetooth/bluez/test/ |
service-record.dtd | 3 <!ELEMENT attribute (sequence|alternate|text|url|uuid|boolean|uint8|uint16|uint32|uint64|nil)+> 6 <!ELEMENT sequence (sequence|alternate|text|url|uuid|boolean|uint8|uint16|uint32|uint64|uint128|int8|int16|int32|int64|int128|nil)+> 8 <!ELEMENT alternate (sequence|alternate|text|url|uuid|boolean|uint8|uint16|uint32|uint64|uint128|int8|int16|int32|int64|int128|nil)+> 66 <!ELEMENT nil EMPTY>
|
/external/dbus/test/data/valid-messages/ |
opposite-endian.message | 28 TYPE NIL
|
/external/webkit/WebKit/mac/History/ |
WebURLsWithTitles.m | 39 static NSArray *cannedArray = nil; 41 if (cannedArray == nil) { 59 if ([pasteboard availableTypeFromArray:[self arrayWithIFURLsWithTitlesPboardType]] == nil) { 64 titles = nil; 71 [titlesOrEmptyStrings addObject:(titles == nil) ? @"" : [[titles objectAtIndex:index] _webkit_stringByTrimmingWhitespace]]; 74 [pasteboard setPropertyList:[NSArray arrayWithObjects:URLStrings, titlesOrEmptyStrings, nil] 80 if ([pasteboard availableTypeFromArray:[self arrayWithIFURLsWithTitlesPboardType]] == nil) { 81 return nil; 93 if ([pasteboard availableTypeFromArray:[self arrayWithIFURLsWithTitlesPboardType]] == nil) { 94 return nil; [all...] |
/sdk/files/ |
android.el | 11 (defvar android-jdb-history nil 22 (defgroup android nil 26 (defcustom android-project-root nil 31 (defcustom android-apk nil 36 (defcustom android-activity-class nil 46 nil 48 nil 53 nil 55 nil))) 67 nil [all...] |
/external/webkit/WebKit/mac/Plugins/ |
WebPluginPackage.m | 46 return nil; 48 if (bundle == nil) { 50 return nil; 58 return nil; 67 return nil; 72 return nil;
|
WebPluginContainerCheck.mm | 54 return nil; 116 nil]; 134 if (targetFrame == nil) { 168 _request = nil; 171 _target = nil; 175 _listener = nil; 178 _resultObject = nil; 180 _controller = nil; 183 _contextInfo = nil;
|
WebPluginController.mm | 81 static NSMutableSet *pluginViews = nil; 90 NSView *view = nil; 100 if (view == nil) { 101 return nil; 104 if (pluginViews == nil) { 277 _checksInProgress = nil; 306 _views = nil; 308 _documentView = nil; 313 WebPluginContainerCheck *check = [WebPluginContainerCheck checkWithRequest:request target:target resultObject:obj selector:selector controller:self contextInfo:nil]; 323 LOG_ERROR("nil URL passed") [all...] |
/external/e2fsprogs/e2fsck/ |
dict.c | 94 the sentinel nil node, and root->parent->left points back to root */ 138 static void free_nodes(dict_t *dict, dnode_t *node, dnode_t *nil) 140 if (node == nil) 142 free_nodes(dict, node->left, nil); 143 free_nodes(dict, node->right, nil); 185 * mismatches. It does not check for every nil node being black, because there 186 * is only one sentinel nil node. The return value of this function is the 191 static unsigned int verify_redblack(dnode_t *nil, dnode_t *root) 195 if (root != nil) { 196 height_left = verify_redblack(nil, root->left) 311 dnode_t *nil = dict_nil(dict), *root = dict_root(dict); local 397 dnode_t *nil = dict_nil(dict), *root = dict_root(dict); local 457 dnode_t *nil = dict_nil(dict); local 496 dnode_t *nil = dict_nil(dict); local 528 dnode_t *nil = dict_nil(dict); local 563 dnode_t *where = dict_root(dict), *nil = dict_nil(dict); local 661 dnode_t *nil = dict_nil(dict), *child, *delparent = delete->parent; local 861 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *left; local 877 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *right; local 895 dnode_t *nil = dict_nil(dict), *parent, *left; local 921 dnode_t *nil = dict_nil(dict), *parent, *right; local 1060 dnode_t *nil = &load->nilnode; local [all...] |
/external/webkit/WebKitTools/android/flex-2.5.4a/ |
ecs.c | 89 if ( bck[i] == NIL ) 92 for ( j = fwd[i]; j != NIL; j = fwd[j] ) 141 for ( i = fwd[cclm]; i != NIL && i <= llsiz; i = fwd[i] ) 181 if ( oldec != NIL ) 189 if ( bck[cclm] != NIL || oldec != bck[cclm] ) 191 bck[cclm] = NIL; 192 fwd[oldec] = NIL; 195 fwd[newec] = NIL; 217 if ( fwd[tch] != NIL ) 220 if ( bck[tch] != NIL ) [all...] |
/external/webkit/WebKit/mac/Plugins/Hosted/ |
WebTextInputWindowController.m | 58 return nil; 79 object:nil]; 87 [self orderOut:nil]; 94 *string = nil; 102 [self orderFront:nil]; 108 [self orderOut:nil]; 141 return nil;
|
/external/webkit/WebKit/mac/Misc/ |
WebNSViewExtras.m | 81 nextEvent = nil; 82 firstEvent = nil; 83 dragEvent = nil; 84 mouseUp = nil; 90 dequeue:YES]) != nil) { 91 if (firstEvent == nil) { 118 if (mouseUp != nil) { 121 if (dragEvent != nil) { 161 NSPoint mouseDownPoint = [self convertPoint:[event locationInWindow] fromView:nil]; 166 if (image != nil && [image size].height * [image size].width <= WebMaxOriginalImageArea) [all...] |
/external/webkit/WebKit/mac/DefaultDelegates/ |
WebDefaultContextMenuDelegate.mm | 59 [menuItem setTarget:target]; // can be nil 62 NSString *title = nil; 104 return nil; 117 ASSERT_ARG(menuItems, menuItems != nil); 125 while ((item = [e nextObject]) != nil) { 135 // one case that has non-nil default items here. 144 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagSearchInSpotlight target:nil representedObject:element]]; 145 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagSearchWeb target:nil representedObject:element]]; 153 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagLookUpInDictionary target:nil representedObject:element]]; 155 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagCopy target:nil representedObject:element]] [all...] |
/external/webkit/WebKit/mac/Panels/ |
WebPanelAuthenticationHandler.m | 44 if (sharedHandler == nil) 52 if (self != nil) { 71 if (queue == nil) { 82 if (queue == nil) { 100 [self startAuthentication:challenge window:(window == WebModalDialogPretendWindow ? nil : window)]; 109 if ([windowToPanel objectForKey:window] != nil) { 119 if ([w attachedSheet] != nil) { 139 if (window != nil) { 149 if (window != nil) { 154 if (credential == nil) { [all...] |
/external/webkit/WebCore/platform/mac/ |
PasteboardMac.mm | 69 return [NSArray arrayWithObjects:WebSmartPastePboardType, WebArchivePboardType, NSRTFDPboardType, NSRTFPboardType, NSStringPboardType, nil]; 71 return [NSArray arrayWithObjects:WebArchivePboardType, NSRTFDPboardType, NSRTFPboardType, NSStringPboardType, nil]; 74 return [NSArray arrayWithObjects:WebSmartPastePboardType, WebArchivePboardType, NSRTFPboardType, NSStringPboardType, nil]; 76 return [NSArray arrayWithObjects:WebArchivePboardType, NSRTFPboardType, NSStringPboardType, nil]; 89 nil])); 95 NSMutableArray *types = [[NSMutableArray alloc] initWithObjects:NSTIFFPboardType, nil]; 120 [m_pasteboard.get() declareTypes:[NSArray array] owner:nil]; 151 NSMutableArray *mutableTypes = nil; 157 [pasteboard declareTypes:types owner:nil]; 160 [pasteboard declareTypes:types owner:nil]; [all...] |
/external/webkit/JavaScriptCore/wtf/mac/ |
MainThreadMac.mm | 51 static WTFMainThreadCaller* staticMainThreadCaller = nil; 53 static NSThread* webThread = nil; 70 [staticMainThreadCaller performSelector:@selector(call) onThread:webThread withObject:nil waitUntilDone:NO]; 72 [staticMainThreadCaller performSelectorOnMainThread:@selector(call) withObject:nil waitUntilDone:NO];
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebPasteboardHelper.mm | 58 NSAttributedString *attributedString = nil; 62 attributedString = [[NSAttributedString alloc] initWithRTFD:[pasteboard dataForType:NSRTFDPboardType] documentAttributes:nil]; 64 attributedString = [[NSAttributedString alloc] initWithRTF:[pasteboard dataForType:NSRTFPboardType] documentAttributes:nil]; 99 NSURLPboardType, NSRTFDPboardType, NSRTFPboardType, NSStringPboardType, NSColorPboardType, nil]));
|