HomeSort by relevance Sort by last modified time
    Searched refs:ei (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.java 116 EncodingInfo ei; local
119 ei = (EncodingInfo) _encodingTableKeyJava.get(normalizedEncoding);
120 if (ei == null)
121 ei = (EncodingInfo) _encodingTableKeyMime.get(normalizedEncoding);
122 if (ei == null) {
124 ei = new EncodingInfo(null,null, '\u0000');
127 return ei;
139 EncodingInfo ei; local
142 ei = (EncodingInfo) _encodingTableKeyJava.get(normalizedEncoding);
143 if (ei == null
372 EncodingInfo ei = new EncodingInfo(mimeName, javaName, highChar); local
374 _encodingTableKeyMime.put(mimeName.toUpperCase(), ei); local
376 _encodingTableKeyJava.put(javaName.toUpperCase(), ei); local
481 EncodingInfo ei; local
    [all...]
  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 184 for (SmallVector<Edge, 8>::iterator ei = ExitEdges.begin(),
185 ee = ExitEdges.end(); ei != ee; ++ei) {
186 if (ProcessedExits.insert(*ei).second) {
187 double w = getEdgeWeight(*ei);
189 Edges.push_back(*ei);
192 if (MinimalWeight.find(*ei) != MinimalWeight.end()) {
193 incoming -= MinimalWeight[*ei];
194 DEBUG(dbgs() << "Reserving " << format("%.20g",MinimalWeight[*ei]) << " at " << (*ei) << "\n")
    [all...]
ProfileInfoLoaderPass.cpp 200 for (std::set<Edge>::iterator ei = SpanningTree.begin(),
201 ee = SpanningTree.end(); ei != ee; ++ei) {
202 BBisUnvisited.insert(ei->first);
203 BBisUnvisited.insert(ei->second);
211 for (std::set<Edge>::iterator ei = SpanningTree.begin(),
212 ee = SpanningTree.end(); ei != ee; ++ei) {
213 DEBUG(dbgs()<< *ei <<",");
  /external/clang/test/CodeGen/
inline.c 3 // RUN: grep "define available_externally i32 @ei()" %t
19 // RUN: grep "define i32 @ei()" %t
43 extern __inline int ei() { return 123; } function
46 return ei();
  /external/clang/tools/diagtool/
DiagTool.cpp 46 ei = getTools(tools)->end(); it != ei; ++it) {
55 ei = toolNames.end(); it != ei; ++it) {
ListWarnings.cpp 40 for (std::vector<Entry>::iterator it = entries.begin(), ei = entries.end();
41 it != ei; ++it) {
  /external/icu4c/common/unicode/
parsepos.h 143 void setErrorIndex(int32_t ei);
224 ParsePosition::setErrorIndex(int32_t ei)
226 this->errorIndex = ei;
  /external/tinyalsa/
mixer.c 128 struct snd_ctl_elem_info *ei = mixer->info + n; local
129 ei->id.numid = eid[n].numid;
130 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_INFO, ei) < 0)
132 mixer->ctl[n].info = ei;
134 if (ei->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) {
135 char **enames = calloc(ei->value.enumerated.items, sizeof(char*));
139 for (m = 0; m < ei->value.enumerated.items; m++) {
141 tmp.id.numid = ei->id.numid;
245 static int percent_to_int(struct snd_ctl_elem_info *ei, int percent)
254 range = (ei->value.integer.max - ei->value.integer.min)
    [all...]
  /external/yaffs2/yaffs2/
yaffs_mtdif.c 214 struct erase_info ei; local
217 ei.mtd = mtd;
218 ei.addr = addr;
219 ei.len = dev->nDataBytesPerChunk * dev->nChunksPerBlock;
220 ei.time = 1000;
221 ei.retries = 2;
222 ei.callback = NULL;
223 ei.priv = (u_long) dev;
225 /* Todo finish off the ei if required */
229 retval = mtd->erase(mtd, &ei);
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-linkage.cpp 70 E<int> ei; local
71 (void)ei;
  /external/icu4c/i18n/unicode/
fieldpos.h 224 * @param ei the new value of the end index
227 void setEndIndex(int32_t ei) { fEndIndex = ei; }
  /external/e2fsprogs/lib/ext2fs/
namei.c 34 struct ext2_inode ei; local
41 retval = ext2fs_read_inode (fs, inode, &ei);
43 if (!LINUX_S_ISLNK (ei.i_mode)) {
50 if (ext2fs_inode_data_blocks(fs,&ei)) {
54 retval = io_channel_read_blk(fs->io, ei.i_block[0], 1, buffer);
61 pathname = (char *)&(ei.i_block[0]);
62 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1,
  /external/llvm/utils/TableGen/
TableGen.cpp 176 for (unsigned ei = 0, ee = Elts->size(); ei != ee; ++ei)
177 OS << ' ' << (*Elts)[ei]->getName();
  /external/opencv/cv/src/
cvstereogc.cpp 169 int e0 = -1, ei = 0, ej = 0, min_weight, weight; local
179 for( ei = v->first; ei != 0; ei = edges[ei].next )
181 if( edges[ei^vt].weight == 0 )
183 u = edges[ei].dst;
187 u->parent = ei ^ 1;
200 e0 = ei ^ vt;
207 u->parent = ei ^ 1
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 329 final EditorInfo ei = getCurrentInputEditorInfo();
331 if (ei != null && ic != null) {
332 if (ei.actionId != 0) {
333 ic.performEditorAction(ei.actionId);
334 } else if ((ei.imeOptions&EditorInfo.IME_MASK_ACTION)
336 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
1923 EditorInfo ei = getCurrentInputEditorInfo(); local
2201 final EditorInfo ei = getCurrentInputEditorInfo(); local
    [all...]
  /external/clang/lib/Analysis/
LiveVariables.cpp 237 for (typename SET::iterator it = B.begin(), ei = B.end(); it != ei; ++it) {
387 for (Stmt::child_iterator it = S->child_begin(), ei = S->child_end();
388 it != ei; ++it) {
523 ei = block->rend(); it != ei; ++it) {
537 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it)
564 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it)
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 201 typename std::map<const FType*, EdgeWeights>::iterator ei = EdgeInformation.find(*FI); local
202 dbgs() << "Edges for Function " << ei->first << ":\n";
203 for (typename EdgeWeights::iterator ewi = ei->second.begin(), ewe = ei->second.end();
  /external/emma/lib/internal/
stamptool.jar 
  /system/core/init/
init_parser.c 584 struct svcenvinfo *ei; local
589 ei = calloc(1, sizeof(*ei));
590 if (!ei) {
594 ei->name = args[1];
595 ei->value = args[2];
596 ei->next = svc->envvars;
597 svc->envvars = ei;
init.c 195 struct svcenvinfo *ei; local
205 for (ei = svc->envvars; ei; ei = ei->next)
206 add_environment(ei->name, ei->value);
  /external/dnsmasq/src/
lease.c 26 unsigned long ei; local
76 &ei, daemon->dhcp_buff2, daemon->namebuff,
95 if (ei != 0)
96 lease->expires = (time_t)ei + now;
99 lease->length = ei;
103 lease->expires = (time_t)ei;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Delaunay.h 55 struct EDGE_INFO *ei; member in class:CDelaunay
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 236 for (CFG::iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it) {
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
basic-block.h 786 ei_cond (edge_iterator ei, edge *p)
788 if (!ei_end_p (ei))
790 *p = ei_edge (ei);
806 FOR (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
811 ei_next (&ei);
993 edge_iterator ei; local
1008 edge_iterator ei; local
    [all...]

Completed in 734 milliseconds

1 2 3