Searched defs:model (Results 1 - 25 of 561) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java32 import org.antlr.gunit.swingui.model.Rule;
49 import org.antlr.gunit.swingui.model.TestSuite;
60 private ListModel model = null; field in class:RuleListController
73 model = new RuleListModel();
74 list.setModel(model);
79 if(model.getSize() > 0) list.setSelectedIndex(0);
105 return model;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DITestCaseInput.java28 package org.antlr.gunit.swingui.model;
H A DITestCaseOutput.java33 package org.antlr.gunit.swingui.model;
H A DRule.java30 package org.antlr.gunit.swingui.model;
H A DTestCase.java28 package org.antlr.gunit.swingui.model;
H A DTestCaseInputFile.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseInputMultiString.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseInputString.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputAST.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputResult.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputReturn.java28 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputStdOut.java28 package org.antlr.gunit.swingui.model;
H A DTestSuite.java28 package org.antlr.gunit.swingui.model;
H A DTestSuiteFactory.java28 package org.antlr.gunit.swingui.model;
144 * From textual script to program model.
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java30 import org.antlr.gunit.swingui.model.*;
38 private TestSuite model ; field in class:TestSuiteAdapter
42 model = testSuite;
46 model.setGrammarName(name);
54 model.addRule(currentRule);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java925 * <p>The content model will consist of the string "EMPTY", the
927 * by an occurrence indicator. The model will be normalized so
932 * @param model The content model as a normalized string.
935 public void elementDecl(String name, String model) throws SAXException argument
940 + model);
944 m_declHandler.elementDecl(name, model);
H A DTransformerIdentityImpl.java1332 * <p>The content model will consist of the string "EMPTY", the
1334 * by an occurrence indicator. The model will be normalized so
1339 * @param model The content model as a normalized string.
1342 public void elementDecl (String name, String model) argument
1346 m_resultDeclHandler.elementDecl(name, model);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java56 * If we're building the model incrementally on demand, we need to
394 * DTM model.
398 * @return null if this model doesn't respond to SAX events,
417 * @return null if this model doesn't respond to lexical SAX events,
434 * @return null if this model doesn't respond to SAX entity ref events.
444 * @return null if this model doesn't respond to SAX dtd events.
454 * @return null if this model doesn't respond to SAX error events.
464 * @return null if this model doesn't respond to SAX Decl events.
472 * @return true iff we're building this model incrementally (eg
485 * string-value of the given node (see http://www.w3.org/TR/xpath#data-model
2247 elementDecl(String name, String model) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToHTMLStream.java1896 public void elementDecl(String name, String model) throws SAXException argument
H A DToStream.java290 * <p>The content model will consist of the string "EMPTY", the
292 * by an occurrence indicator. The model will be normalized so
297 * @param model The content model as a normalized string.
300 public void elementDecl(String name, String model) throws SAXException argument
313 writer.write(model);
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_act.c775 ** association model to use for the authentication.
780 tSMP_ASSO_MODEL model = SMP_MODEL_MAX; local
790 /* OOB data present on both devices, use OOB association model */
793 model = SMP_MODEL_OOB;
799 model = SMP_MODEL_ENC_ONLY;
801 else/* use IO capability to decide assiciation model */
806 model = smp_association_table[p_cb->role][p_cb->peer_io_caps][p_cb->loc_io_caps];
808 model = smp_association_table[p_cb->role][p_cb->loc_io_caps][p_cb->peer_io_caps];
812 SMP_TRACE_DEBUG("Association Model = %d", model);
814 if (model
[all...]
/external/chromium_org/ash/shelf/
H A Dapp_list_shelf_item_delegate.cc32 ShelfModel* model = Shell::GetInstance()->shelf_model(); local
33 DCHECK(model);
34 return model->status() == ShelfModel::STATUS_LOADING ?
H A Dshelf_item_delegate_manager.cc15 ShelfItemDelegateManager::ShelfItemDelegateManager(ShelfModel* model) argument
16 : model_(model) {

Completed in 1842 milliseconds

1234567891011>>