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

1 2

  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
ParserConfigurationExceptionTest.java 25 ParserConfigurationException pce = new ParserConfigurationException(); local
26 assertNull(pce.getMessage());
27 assertNull(pce.getLocalizedMessage());
28 assertNull(pce.getCause());
32 ParserConfigurationException pce = local
34 assertEquals("Oops!", pce.getMessage());
35 assertEquals("Oops!", pce.getLocalizedMessage());
36 assertNull(pce.getCause());
SAXParserFactoryTest.java 185 } catch (ParserConfigurationException pce) {
197 } catch (ParserConfigurationException pce) {
209 } catch (ParserConfigurationException pce) {
222 } catch (ParserConfigurationException pce) {
269 // } catch (javax.xml.parsers.ParserConfigurationException pce) {
284 // } catch (javax.xml.parsers.ParserConfigurationException pce) {
300 // } catch (javax.xml.parsers.ParserConfigurationException pce) {
315 // } catch (javax.xml.parsers.ParserConfigurationException pce) {
332 // } catch(javax.xml.parsers.ParserConfigurationException pce) {
348 // } catch(javax.xml.parsers.ParserConfigurationException pce) {
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
PreferenceChangeListener.java 38 * @param pce
42 void preferenceChange (PreferenceChangeEvent pce);
AbstractPreferences.java 811 PreferenceChangeEvent pce = new PreferenceChangeEvent(this, key, newValue); local
813 events.add(pce);
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldPreferenceChangeEventTest.java 34 public void preferenceChange(PreferenceChangeEvent pce) {
35 if (pce != null && pce.getKey().equals("key_int")) {
38 super.preferenceChange(pce);
59 public void preferenceChange(PreferenceChangeEvent pce) {
60 if (pce != null && pce.getNewValue().equals(Integer.toString(Integer.MAX_VALUE))) {
63 super.preferenceChange(pce);
89 public void preferenceChange(PreferenceChangeEvent pce) {
90 if (pce != null && "mock".equals(pce.getNode().name()))
    [all...]
OldPreferencesTest.java 930 public void preferenceChange(PreferenceChangeEvent pce) {
    [all...]
  /external/valgrind/main/exp-sgcheck/
h_main.c 554 Shadow IRTemps are therefore allocated on demand. pce.tmpMap is a
572 both the table in pce->sb and to our auxiliary mapping. Note that
573 newTemp may cause pce->tmpMap to resize, hence previous results
574 from VG_(indexXA)(pce->tmpMap) are invalidated. */
575 static IRTemp newTemp ( PCEnv* pce, IRType ty, TempKind kind )
579 IRTemp tmp = newIRTemp(pce->sb->tyenv, ty);
582 newIx = VG_(addToXA)( pce->qmpMap, &ent );
592 static /*inline*/ void stmt ( HChar cat, PCEnv* pce, IRStmt* st ) {
593 if (pce->trace) {
598 addStmtToIRSB(pce->sb, st)
603 PCEnv* pce = (PCEnv*)opaque; local
616 PCEnv pce; local
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
PreferenceChangeListenerTest.java 48 public void preferenceChange(PreferenceChangeEvent pce) {
AbstractPreferencesTest.java     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucoleitr.cpp 253 switch(elems->pce->strength) {
274 if ((elems->pce->toShift && elems->pce->variableTop > ce && primary != 0)
275 || (elems->pce->isShifted && primary == 0)) {
281 if (elems->pce->strength >= UCOL_QUATERNARY) {
286 elems->pce->isShifted = TRUE;
288 if (elems->pce->strength >= UCOL_QUATERNARY) {
292 elems->pce->isShifted = FALSE;
301 if (elems->pce != NULL) {
302 elems->pce->init(elems->iteratordata_.coll)
    [all...]
bmsearch.cpp 713 uint32_t pce = (*patCEs)[pIndex]; local
717 if (tcei->order != pce) {
ucol_imp.h 384 U_NAMESPACE_QUALIFIER UCollationPCE *pce; member in struct:UCollationElements
    [all...]
usearch.cpp 359 * Initializing the pce table for a pattern.
397 if (pattern->PCE != pcetable && pattern->PCE != NULL) {
398 uprv_free(pattern->PCE);
403 int64_t pce; local
410 while ((pce = ucol_nextProcessed(coleiter, NULL, NULL, status)) != UCOL_PROCESSED_NULLORDER &&
413 pce,
432 pattern->PCE = pcetable;
468 if (strsrch->pattern.PCE != NULL) {
469 if (strsrch->pattern.PCE != strsrch->pattern.PCEBuffer)
    [all...]
  /external/icu4c/i18n/
ucoleitr.cpp 253 switch(elems->pce->strength) {
274 if ((elems->pce->toShift && elems->pce->variableTop > ce && primary != 0)
275 || (elems->pce->isShifted && primary == 0)) {
281 if (elems->pce->strength >= UCOL_QUATERNARY) {
286 elems->pce->isShifted = TRUE;
288 if (elems->pce->strength >= UCOL_QUATERNARY) {
292 elems->pce->isShifted = FALSE;
301 if (elems->pce != NULL) {
302 elems->pce->init(elems->iteratordata_.coll)
    [all...]
usearch.cpp 359 * Initializing the pce table for a pattern.
397 if (pattern->PCE != pcetable && pattern->PCE != NULL) {
398 uprv_free(pattern->PCE);
403 int64_t pce; local
410 while ((pce = ucol_nextProcessed(coleiter, NULL, NULL, status)) != UCOL_PROCESSED_NULLORDER &&
413 pce,
432 pattern->PCE = pcetable;
468 if (strsrch->pattern.PCE != NULL) {
469 if (strsrch->pattern.PCE != strsrch->pattern.PCEBuffer)
    [all...]
ucol_imp.h 382 icu::UCollationPCE *pce; member in struct:UCollationElements
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLReaderManager.java 116 } catch (ParserConfigurationException pce) {
117 throw pce; // pass along pce
DOM2Helper.java 179 catch (ParserConfigurationException pce)
181 throw new TransformerException(pce);
DOMHelper.java 102 // catch (ParserConfigurationException pce) {}
111 catch (ParserConfigurationException pce)
    [all...]
  /external/aac/libAACdec/src/
aacdecoder.cpp 398 \pce Pointer to PCE buffer
402 \return PCE status (-1: fail, 0: no new PCE, 1: PCE updated, 2: PCE updated need re-config).
407 CProgramConfig *pce,
414 /* read PCE to temporal buffer first */
429 if ( !pce->isValid && (channelConfig > 0) ) {
430 /* Create a standard channel config PCE to compare with *
1094 CProgramConfig *pce; local
    [all...]
aacdecoder.h 191 CProgramConfig pce; member in struct:AAC_DECODER_INSTANCE
  /external/aac/libMpegTPDec/src/
tpdec_lib.cpp 415 /* CAUTION: The PCE (if available) is declared to be a part of the header! */
1053 CProgramConfig *pce; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerIdentityImpl.java 225 catch (ParserConfigurationException pce) {}
232 catch (ParserConfigurationException pce)
234 throw new TransformerException(pce);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
ssearch.cpp 1166 const PCE *pce = get(index); local
1177 const PCE *pce = get(index); local
1188 const PCE *pce = get(index); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help.base_3.5.2.v201011171123.jar 

Completed in 494 milliseconds

1 2