HomeSort by relevance Sort by last modified time
    Searched refs:tags (Results 51 - 75 of 553) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkFontStream.h 33 static int GetTableTags(SkStream*, int ttcIndex, SkFontTableTag tags[]);
  /system/core/liblog/
fake_log_device.c 83 /* tags and priorities */
178 * This can be used to reveal or conceal logs with specific tags.
200 const char* tags = getenv("ANDROID_LOG_TAGS"); local
201 TRACE("Found ANDROID_LOG_TAGS='%s'\n", tags);
202 if (tags != NULL) {
205 while (*tags != '\0') {
209 while (isspace(*tags))
210 tags++;
213 while (*tags != '\0' && !isspace(*tags) && *tags != ':' &
    [all...]
  /external/yaffs2/yaffs2/utils/
mkyaffsimage.c 142 static void yaffs_CalcTagsECC(yaffs_Tags *tags)
145 unsigned char *b = ((yaffs_TagsUnion *)tags)->asBytes;
153 tags->ecc = 0;
178 tags->ecc = ecc;
209 yaffs_TagsUnion * tags = (yaffs_TagsUnion* )tagsPtr; // Work in bytes. local
214 temp.asBytes[0] = ((tags->asBytes[2] & 0x0F) << 4) | ((tags->asBytes[1] & 0xF0) >> 4);
215 temp.asBytes[1] = ((tags->asBytes[1] & 0x0F) << 4) | ((tags->asBytes[0] & 0xF0) >> 4);
216 temp.asBytes[2] = ((tags->asBytes[0] & 0x0F) << 4) | ((tags->asBytes[2] & 0x30) >> 2) | ((tags->asBytes[3] & 0xC0) >> 6)
    [all...]
  /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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
parse_core.py 19 self.tags = {} # struct, union, enum tags
22 return "Symbols(%s,%s)"%(self.lookup,self.tags)
43 self.tags[key] = val
47 item = self.tags[key]
57 item = self.tags[key]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
imageinfo.js 21 var tags = readInfoFromData(http.binaryResponse);
24 tags["mimeType"] = mime;
25 tags["byteSize"] = http.fileSize;
27 files[url] = tags;
167 var tags = {};
170 tags[a] = files[url][a];
172 return tags;
  /external/yaffs2/yaffs2/direct/
yaffs_flashif.c 115 int yflash_WriteChunkWithTagsToNAND(yaffs_Device *dev,int chunkInNAND,const __u8 *data, yaffs_ExtendedTags *tags)
133 if(tags)
136 yaffs_PackTags(&pt,tags);
145 int yflash_ReadChunkWithTagsFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *data, yaffs_Tags *tags)
163 if(tags)
167 yaffs_UnpackTags(tags,&pt);
  /external/chromium_org/content/renderer/pepper/
pepper_truetype_font_host.cc 67 std::vector<uint32_t> tags;
69 reply_context.params.set_result(font_->GetTableTags(&tags));
71 PpapiPluginMsg_TrueTypeFont_GetTableTagsReply(tags));
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_element_type_helpers.py 65 'tags': self.in_file.name_dictionaries,
68 tags = self._template_context['tags']
70 for tag in tags:
74 for tag in tags:
make_element_lookup_trie.py 39 def _trie(tags, index):
40 """Make a trie from list of tags, starting at index.
52 tags: sorted list
74 char_subtags = ((k, g) for k, g in groupby(tags, char_at_index))
128 # Group tags by length
133 'length_tries': ((length, _trie(tags, 0))
134 for length, tags in length_tags),
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceVersionDetector.java 88 List<SystraceTag> tags = new ArrayList<SystraceTag>(categories.length); local
94 tags.add(new SystraceTag(m.group(1).trim(), m.group(2).trim()));
98 return tags;
  /art/runtime/base/
logging.cc 57 // This can be used to reveal or conceal logs with specific tags.
82 const char* tags = getenv("ANDROID_LOG_TAGS"); local
83 if (tags == NULL) {
88 Split(tags, ' ', specs);
118 LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags << ")"; local
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_service_helpers.h 26 // Returns an MD5 hash for printer tags in the given |printer_info|.
30 // Returns any post data for printer tags in the given |printer_info|.
35 // Returns true if tags indicate a dry run (test) job.
36 bool IsDryRunJob(const std::vector<std::string>& tags);
  /external/chromium_org/ui/app_list/
search_result.h 49 typedef std::vector<Tag> Tags;
82 const Tags& title_tags() const { return title_tags_; }
83 void set_title_tags(const Tags& tags) { title_tags_ = tags; }
88 const Tags& details_tags() const { return details_tags_; }
89 void set_details_tags(const Tags& tags) { details_tags_ = tags; }
130 Tags title_tags_
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionProfileLevelDescriptor.java 31 @Descriptor(tags = {0x13})
  /external/llvm/utils/TableGen/
tdtags 2 #===-- tdtags - TableGen tags wrapper ---------------------------*- sh -*-===#
28 -a Append the tags to an existing tags file.
29 -f <file> Write tags to the specified file (defaults to 'tags').
31 -x <recipe> Generate tags file(s) for a common use case:
46 - Generate a tags file for each specified LLVM code generator
61 With the '-x' option, $SELF produces one or more tags files for a
68 -a Append newly generated tags to those already in an existing
69 tags file. Without ths option, any and all existing tags ar
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 80 def insert(self, index, chars, tags=None):
81 self.addcmd(InsertCommand(index, chars, tags))
164 tags = None variable in class:Command
166 def __init__(self, index1, index2, chars, tags=None):
172 if tags:
173 self.tags = tags
177 t = (self.index1, self.index2, self.chars, self.tags)
178 if self.tags is None:
210 def __init__(self, index1, chars, tags=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 80 def insert(self, index, chars, tags=None):
81 self.addcmd(InsertCommand(index, chars, tags))
164 tags = None variable in class:Command
166 def __init__(self, index1, index2, chars, tags=None):
172 if tags:
173 self.tags = tags
177 t = (self.index1, self.index2, self.chars, self.tags)
178 if self.tags is None:
210 def __init__(self, index1, chars, tags=None)
    [all...]
  /external/doclava/src/com/google/doclava/
SeeTagInfo.java 73 public static void makeHDF(Data data, String base, SeeTagInfo[] tags) {
75 for (SeeTagInfo tag : tags) {
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
IfdData.java 23 * This class stores all the tags in an IFD.
102 * Gets the tags count in the IFD.
123 * Returns true if all tags in this two IFDs are equal. Note that tags of
137 ExifTag[] tags = data.getAllTags(); local
138 for (ExifTag tag : tags) {
  /packages/apps/Camera2/src/com/android/camera/exif/
IfdData.java 23 * This class stores all the tags in an IFD.
102 * Gets the tags count in the IFD.
123 * Returns true if all tags in this two IFDs are equal. Note that tags of
137 ExifTag[] tags = data.getAllTags(); local
138 for (ExifTag tag : tags) {
  /packages/apps/Camera2/tests/exiftool_parser/
parser.py 39 tags = p.findall(text) variable
44 for s in tags:
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
IfdData.java 23 * This class stores all the tags in an IFD.
102 * Gets the tags count in the IFD.
123 * Returns true if all tags in this two IFDs are equal. Note that tags of
137 ExifTag[] tags = data.getAllTags(); local
138 for (ExifTag tag : tags) {
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
IfdData.java 23 * This class stores all the tags in an IFD.
102 * Gets the tags count in the IFD.
123 * Returns true if all tags in this two IFDs are equal. Note that tags of
137 ExifTag[] tags = data.getAllTags(); local
138 for (ExifTag tag : tags) {
  /packages/apps/Mms/src/com/android/mms/exif/
IfdData.java 23 * This class stores all the tags in an IFD.
102 * Gets the tags count in the IFD.
123 * Returns true if all tags in this two IFDs are equal. Note that tags of
137 ExifTag[] tags = data.getAllTags(); local
138 for (ExifTag tag : tags) {

Completed in 605 milliseconds

1 23 4 5 6 7 8 91011>>