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

1 2 3 4 5 6 7 8

  /external/ipsec-tools/src/racoon/
throttle.c 75 struct throttle_entry *te; local
78 len = sizeof(*te)
82 if ((te = racoon_malloc(len)) == NULL)
85 te->penalty = time(NULL) + isakmp_cfg_config.auth_throttle;
86 memcpy(&te->host, addr, sysdep_sa_len(addr));
87 TAILQ_INSERT_HEAD(&throttle_list, te, next);
89 return te;
97 struct throttle_entry *te; local
107 RACOON_TAILQ_FOREACH_REVERSE(te, &throttle_list, throttle_list, next) {
111 if (te->penalty < now)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XBooleanStatic.java 64 catch(javax.xml.transform.TransformerException te)
66 throw new org.apache.xml.utils.WrappedRuntimeException(te);
XBoolean.java 162 catch(javax.xml.transform.TransformerException te)
164 throw new org.apache.xml.utils.WrappedRuntimeException(te);
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
AssistVisualizer.java 113 TextEntry te = mTextRects.get(i); local
114 Log.d(TAG, "View " + te.className + " " + te.bounds.toShortString()
115 + " in " + te.parentLeft + "," + te.parentTop
116 + " matrix=" + te.matrix.toShortString() + ": "
117 + te.text);
118 if (te.lineCharOffsets != null && te.lineBaselines != null) {
119 final int num = te.lineCharOffsets.length < te.lineBaselines.lengt
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.hh 112 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
120 te = 0;
167 {te = p+1;}
171 {te = p+1;{ found_syllable (non_sea_cluster); }}
175 {te = p;p--;{ found_syllable (consonant_syllable); }}
179 {te = p;p--;{ found_syllable (broken_cluster); }}
183 {te = p;p--;{ found_syllable (non_sea_cluster); }}
187 {{p = ((te))-1;}{ found_syllable (consonant_syllable); }}
191 {{p = ((te))-1;}{ found_syllable (broken_cluster); }}
hb-ot-shape-complex-myanmar-machine.hh 284 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
292 te = 0;
339 {te = p+1;{ found_syllable (consonant_syllable); }}
343 {te = p+1;{ found_syllable (non_myanmar_cluster); }}
347 {te = p+1;{ found_syllable (punctuation_cluster); }}
351 {te = p+1;{ found_syllable (broken_cluster); }}
355 {te = p+1;{ found_syllable (non_myanmar_cluster); }}
359 {te = p;p--;{ found_syllable (consonant_syllable); }}
363 {te = p;p--;{ found_syllable (broken_cluster); }}
367 {te = p;p--;{ found_syllable (non_myanmar_cluster); }
    [all...]
hb-ot-shape-complex-indic-machine.hh     [all...]
  /external/valgrind/coregrind/m_debuginfo/
tytypes.c 51 Bool ML_(TyEnt__is_type)( const TyEnt* te )
53 switch (te->tag) {
83 void ML_(pp_TyEnt)( const TyEnt* te )
85 VG_(printf)("0x%05lx ", te->cuOff);
86 switch (te->tag) {
91 VG_(printf)("INDIR(0x%05lx)", te->Te.INDIR.indR);
98 te->Te.Atom.valueKnown ? "" : "unknown:",
99 te->Te.Atom.value, te->Te.Atom.name)
368 TyEnt* te; local
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
typeexpr.py 100 te = type_expression(None)
105 te.expr.append(tn)
106 tt.add_type( te )
192 te = type_expression.built_in_types.find_type( type_name )
193 if not te:
194 te = extra_types.find_type( type_name )
196 if not te:
199 self.expr = copy.deepcopy(te.expr)
291 te = type_expression( t )
292 print 'Got "%s" (%u, %u).' % (te.string(), te.get_stack_size(), te.get_element_size()
    [all...]
  /external/mksh/src/
funcs.c 2802 Test_env te; local
    [all...]
  /external/opencv/ml/src/
mlestimate.cpp 167 double te, te1;
210 te = responses_result[*data];
213 sum_p += te;
215 sum_pp += te * te;
216 sum_cp += te1 * te;
217 te -= te1;
218 sq_err += te * te;
229 te = responses_result[*data]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPath.java 339 catch (TransformerException te)
341 te.setLocator(this.getLocator());
345 el.error(te);
348 throw te;
365 TransformerException te = new TransformerException(msg, local
368 // te.printStackTrace();
371 el.fatalError(te);
374 throw te;
414 catch (TransformerException te)
416 te.setLocator(this.getLocator())
441 TransformerException te = new TransformerException(msg, local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
TailoredSet.java 239 Entry te = null, be = null; local
243 te = prefixes.next();
244 tp = te.chars.toString();
246 te = null;
265 assert (te != null);
266 addPrefix(data, tp, c, te.value);
267 te = null;
277 assert (te != null && be != null);
278 compare(c, te.value, be.value);
280 te = be = null
296 Entry te = null, be = null; local
    [all...]
  /frameworks/base/services/print/java/com/android/server/print/
RemotePrintSpooler.java 119 } catch (TimeoutException te) {
120 Slog.e(LOG_TAG, "Error getting print jobs.", te);
143 } catch (TimeoutException te) {
144 Slog.e(LOG_TAG, "Error creating print job.", te);
166 } catch (TimeoutException te) {
167 Slog.e(LOG_TAG, "Error writing print job data.", te);
193 } catch (TimeoutException te) {
194 Slog.e(LOG_TAG, "Error getting print job info.", te);
218 } catch (TimeoutException te) {
219 Slog.e(LOG_TAG, "Error setting print job state.", te);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionCall.java 222 TransformerException te = new TransformerException(XSLMessages.createMessage( local
224 transformer.getErrorListener().fatalError(te);
244 TransformerException te = (TransformerException)e; local
245 if(null == te.getLocator())
246 te.setLocator(this);
248 transformer.getErrorListener().fatalError(te);
ElemValueOf.java 252 TransformerException te = new TransformerException(re); local
253 te.setLocator(this);
254 throw te;
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorAttributeSet.java 72 catch(TransformerException te)
74 throw new org.xml.sax.SAXException(te);
XSLTAttributeDef.java 524 catch (TransformerException te)
526 throw new org.xml.sax.SAXException(te);
554 catch (TransformerException te)
556 throw new org.xml.sax.SAXException(te);
593 catch (TransformerException te)
595 throw new org.xml.sax.SAXException(te);
636 catch (TransformerException te)
638 throw new org.xml.sax.SAXException(te);
686 catch (TransformerException te)
688 throw new org.xml.sax.SAXException(te);
    [all...]
ProcessorStylesheetElement.java 110 catch(TransformerException te)
112 throw new org.xml.sax.SAXException(te);
ProcessorTemplateElem.java 81 catch(TransformerException te)
83 throw new org.xml.sax.SAXException(te);
ProcessorInclude.java 168 catch(TransformerException te)
170 handler.error(te.getMessage(), te); local
325 catch(TransformerException te)
327 handler.error(te.getMessage(), te); local
ProcessorOutputElem.java 210 catch(TransformerException te)
212 handler.error(te.getMessage(), te); local
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.c 341 LLVMTypeRef te = LLVMGetElementType(t); local
342 LLVMTypeKind ke = LLVMGetTypeKind(te);
345 unsigned b = LLVMGetIntTypeWidth(te);
353 LLVMTypeRef te = LLVMGetElementType(t); local
354 LLVMTypeKind ke = LLVMGetTypeKind(te);
363 LLVMTypeRef te = LLVMGetElementType(t); local
365 lp_dump_llvmtype(te);
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathImpl.java 288 } catch ( javax.xml.transform.TransformerException te ) {
289 Throwable nestedException = te.getException();
295 throw new XPathExpressionException ( te );
407 } catch ( javax.xml.transform.TransformerException te ) {
408 throw new XPathExpressionException ( te ) ;
482 } catch ( javax.xml.transform.TransformerException te ) {
483 Throwable nestedException = te.getException();
487 throw new XPathExpressionException ( te );
  /device/lge/hammerhead/
BoardConfig.mk 120 device.te \
121 system_server.te \

Completed in 369 milliseconds

1 2 3 4 5 6 7 8