/external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/ |
cells.js | 23 var tags = [ variable 36 for (i = 0; i < tags.length; ++i) 37 shouldBe('checkCellNesting("' + tags[i] + '")', '0'); 46 for (i = 0; i < tags.length; ++i) 47 shouldBe('checkHeaderCellNesting("' + tags[i] + '")', '0');
|
/external/webkit/Tools/mangleme/ |
tags.h | 15 static char* tags[MAXTAGS][MAXPARS] = { variable
|
/bootable/bootloader/legacy/libboot/ |
tags.c | 29 #include <boot/tags.h> 37 unsigned *tags = _tags; local 39 DBG("tags_parse %p\n", tags); 42 if(tags[0] != 2) return; 43 if(tags[1] != 0x54410001) return; 46 unsigned size = tags[0]; 47 unsigned type = tags[1]; 56 h->func(type, (void*) &tags[2], (size - 2) * 4, h->cookie); 61 tags += size;
|
/external/doclava/src/com/google/doclava/ |
InheritedTags.java | 20 TagInfo[] tags(); method in interface:InheritedTags
|
DocFile.java | 107 TagInfo[] tags = comment.tags(); local 109 TagInfo.makeHDF(hdf, "root.descr", tags);
|
/external/llvm/lib/VMCore/ |
Use.cpp | 93 static const PrevPtrTag tags[20] = { fullStopTag, oneDigitTag, stopTag, local 101 new(Stop) Use(tags[Done++]);
|
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/ |
SDL_cgxgl.c | 119 struct TagItem tags[2]; local 124 tags[0].ti_Tag = AMA_Window; 125 tags[0].ti_Data = (unsigned long)win; 126 tags[1].ti_Tag = TAG_DONE; 127 AmigaMesaSetRast(glcont, tags);
|
/external/valgrind/main/cachegrind/ |
cg_sim.c | 50 UWord* tags; member in struct:__anon12080 75 c->tags = VG_(malloc)("cg.sim.ci.1", 79 c->tags[i] = 0; 112 set = &(L.tags[set1 * L.assoc]); \ 143 set = &(L.tags[set1 * L.assoc]); \ 162 set = &(L.tags[set2 * L.assoc]); \
|
/cts/libs/vogar-expect/src/vogar/ |
Expectation.java | 58 private final Set<String> tags; field in class:Expectation 66 public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug) { 75 this.tags = new LinkedHashSet<String>(tags); 92 return tags;
|
ExpectationStore.java | 147 Set<String> tags = new LinkedHashSet<String>(); local 168 } else if (name.equals("tags")) { 169 readStrings(reader, tags); 191 Expectation expectation = new Expectation(result, pattern, tags, description, buganizerBug);
|
/external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/ |
SDL_systimer.c | 167 struct TagItem tags[]= local 174 if(MyTimer=PPCCreateTimerObject(tags))
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
BaseRenderer.cpp | 94 const String* tags = getPerformanceTags(tagCount); local 98 float tagDuration = m_perfMon.getAverageDuration(tags[i]); 100 snprintf(str, 256, "%s: %.2f", tags[i].utf8().data(), tagDuration);
|
/external/yaffs2/yaffs2/ |
yaffs_checkptrw.c | 98 yaffs_ExtendedTags tags; local 104 dev->readChunkWithTagsFromNAND(dev,chunk,NULL,&tags); 106 if(tags.sequenceNumber == YAFFS_SEQUENCE_CHECKPOINT_DATA){ 108 dev->checkpointNextBlock = tags.objectId; 180 yaffs_ExtendedTags tags; local 190 tags.chunkDeleted = 0; 191 tags.objectId = dev->checkpointNextBlock; /* Hint to next place to look */ 192 tags.chunkId = dev->checkpointPageSequence + 1; 193 tags.sequenceNumber = YAFFS_SEQUENCE_CHECKPOINT_DATA; 194 tags.byteCount = dev->nDataBytesPerChunk 256 yaffs_ExtendedTags tags; local [all...] |
/ndk/toolchains/x86-4.4.3/ |
setup.mk | 54 # a C or Assembler source file, based on its tags. 56 TARGET-process-src-files-tags = \
|
/ndk/toolchains/arm-linux-androideabi-4.4.3/ |
setup.mk | 85 # a C or Assembler source file, based on its tags. 87 TARGET-process-src-files-tags = \
|
/bootable/bootloader/legacy/usbloader/ |
main.c | 31 #include <boot/tags.h> 47 unsigned *tags = (unsigned *) taddr; local 50 tags[n++] = 2; 51 tags[n++] = 0x54410001; 55 tags[n++] = 4; 56 tags[n++] = 0x54420005; 57 tags[n++] = raddr; 58 tags[n++] = rsize; 68 memcpy(tags + m, ptn, sizeof(ptentry)); 72 tags[n + 0] = m - n 210 unsigned *tags = (unsigned*) taddr; local [all...] |
usbloader.c | 35 #include <boot/tags.h> 83 static void fixup_tags(unsigned *tags, unsigned *out, const char *cmdline) 96 if(tags != 0) { 97 while(*tags) { 98 if(tags[1] == 0x54410001) { 100 tags += tags[0]; 101 } else if((tags[1] == 0x54420005) && (ramdisk_size != 0)) { 103 tags += tags[0] 171 unsigned *tags = (unsigned*) 0x10000100; local [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLCollection.cpp | 402 PassRefPtr<NodeList> HTMLCollection::tags(const String& name) function in class:WebCore::HTMLCollection
|
HTMLObjectElement.cpp | 190 // in a PARAM tag. See <http://java.sun.com/products/plugin/1.2/docs/tags.html>. This means 229 // Ignore whitespace-only text, and <param> tags, any other content is fallback content. 402 QualifiedName** tags = HTMLNames::getHTMLTags(&tagCount); local 404 if (*tags[i] == bgsoundTag 405 || *tags[i] == commandTag 406 || *tags[i] == detailsTag 407 || *tags[i] == figcaptionTag 408 || *tags[i] == figureTag 409 || *tags[i] == summaryTag 410 || *tags[i] == trackTag) [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
ImageLoader.java | 83 // Clear the queue. Returns an array of tags that were in the queue. 87 int[] tags = new int[n]; local 89 tags[i] = mQueue.get(i).mTag; 92 return tags;
|
/external/chromium/chrome/browser/ |
keychain_mock_mac.cc | 14 UInt32 tags[] = { kSecAccountItemAttr, local 31 keychain_attr_list_[i].count = arraysize(tags); 35 keychain_attr_list_[i].attr[j].tag = tags[j]; 37 switch (tags[j]) {
|
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/ |
SDL_gsyuv.c | 80 unsigned long long *tags; local 213 /* Set up the tags to send the image to the screen */ 214 tags = (unsigned long long *)hwdata->dma_tags; 224 packet[pnum].ptr = &tags[0]; 225 packet[pnum].len = 10 * sizeof(*tags); 227 tags[0] = 4 | (1LL << 60); /* GIFtag */ 228 tags[1] = 0x0e; /* A+D */ 229 tags[2] = ((unsigned long long)fbp << 32) | 232 tags[3] = PS2_GS_BITBLTBUF; 233 tags[4] = ((unsigned long long)x << 32) [all...] |
/external/webkit/Source/WebCore/platform/graphics/mac/ |
ComplexTextControllerATSUI.cpp | 212 ATSUAttributeTag tags[] = { kATSULineLayoutOptionsTag, kATSULineDirectionTag, kATSULayoutOperationOverrideTag }; local 216 status = ATSUSetLayoutControls(atsuTextLayout, 3, tags, sizes, values);
|
/external/yaffs2/yaffs2/direct/ |
yaffs_fileem2k.c | 142 int yflash_WriteChunkWithTagsToNAND(yaffs_Device *dev,int chunkInNAND,const __u8 *data, yaffs_ExtendedTags *tags) 168 if(tags) 177 written = write(h,tags,sizeof(yaffs_ExtendedTags)); 183 yaffs_PackTags2(&pt,tags); 210 int yflash_ReadChunkWithTagsFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *data, yaffs_ExtendedTags *tags) 231 if(tags) 239 nread= read(h,tags,sizeof(yaffs_ExtendedTags)); 241 if(yaffs_CheckAllFF((__u8 *)tags,sizeof(yaffs_ExtendedTags))) 243 yaffs_InitialiseTags(tags); 247 tags->chunkUsed = 1 350 yaffs_ExtendedTags tags; local [all...] |
yaffs_ramem2k.c | 192 int nandemul2k_WriteChunkWithTagsToNAND(yaffs_Device *dev,int chunkInNAND,const __u8 *data, yaffs_ExtendedTags *tags) 218 if(tags) 222 yaffs_PackTags2((yaffs_PackedTags2 *)x,tags); 226 if(tags || data) 235 int nandemul2k_ReadChunkWithTagsFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *data, yaffs_ExtendedTags *tags) 254 if(tags) 258 yaffs_UnpackTags2(tags,(yaffs_PackedTags2 *)x); 331 yaffs_ExtendedTags tags; local 338 nandemul2k_ReadChunkWithTagsFromNAND(dev,chunkNo,NULL,&tags); 339 if(tags.blockBad [all...] |