HomeSort by relevance Sort by last modified time
    Searched refs:sizeHint (Results 1 - 22 of 22) sorted by null

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3parser.c 44 antlr3ParserNewStreamDbg (ANTLR3_UINT32 sizeHint, pANTLR3_TOKEN_STREAM tstream, pANTLR3_DEBUG_EVENT_LISTENER dbg, pANTLR3_RECOGNIZER_SHARED_STATE state)
48 parser = antlr3ParserNewStream(sizeHint, tstream, state);
61 antlr3ParserNew (ANTLR3_UINT32 sizeHint, pANTLR3_RECOGNIZER_SHARED_STATE state)
76 parser->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_PARSER, sizeHint, state);
102 antlr3ParserNewStream (ANTLR3_UINT32 sizeHint, pANTLR3_TOKEN_STREAM tstream, pANTLR3_RECOGNIZER_SHARED_STATE state)
106 parser = antlr3ParserNew(sizeHint, state);
antlr3treeparser.c 52 antlr3TreeParserNewStream(ANTLR3_UINT32 sizeHint, pANTLR3_COMMON_TREE_NODE_STREAM ctnstream, pANTLR3_RECOGNIZER_SHARED_STATE state)
67 parser->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_PARSER, sizeHint, state);
antlr3collections.c 126 antlr3HashTableNew(ANTLR3_UINT32 sizeHint)
145 table->buckets = (pANTLR3_HASH_BUCKET) ANTLR3_MALLOC((size_t) (sizeof(ANTLR3_HASH_BUCKET) * sizeHint));
155 table->modulo = sizeHint;
161 for (bucket = 0; bucket < sizeHint; bucket++)
863 antlr3ListNew (ANTLR3_UINT32 sizeHint)
878 list->table = antlr3HashTableNew(sizeHint);
964 antlr3StackNew (ANTLR3_UINT32 sizeHint)
979 stack->vector = antlr3VectorNew(sizeHint);
1054 antlr3VectorNew (ANTLR3_UINT32 sizeHint)
1070 antlr3SetVectorApi(vector, sizeHint);
    [all...]
antlr3lexer.c 72 antlr3LexerNew(ANTLR3_UINT32 sizeHint, pANTLR3_RECOGNIZER_SHARED_STATE state)
88 lexer->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_LEXER, sizeHint, state);
384 antlr3LexerNewStream(ANTLR3_UINT32 sizeHint, pANTLR3_INPUT_STREAM input, pANTLR3_RECOGNIZER_SHARED_STATE state)
390 lexer = antlr3LexerNew(sizeHint, state);
antlr3baserecognizer.c 84 antlr3BaseRecognizerNew(ANTLR3_UINT32 type, ANTLR3_UINT32 sizeHint, pANTLR3_RECOGNIZER_SHARED_STATE state)
123 recognizer->state->sizeHint = sizeHint;
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebinspector.h 39 QSize sizeHint() const;
qwebinspector.cpp 141 QSize QWebInspector::sizeHint() const
qgraphicswebview.h 101 virtual QSizeF sizeHint(Qt::SizeHint which, const QSizeF& constraint) const;
qwebview.h 97 QSize sizeHint() const;
qgraphicswebview.cpp 350 QSizeF QGraphicsWebView::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const
354 return QGraphicsWidget::sizeHint(which, constraint);
qwebview.cpp 688 QSize QWebView::sizeHint() const
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 75 ANTLR3_UINT32 sizeHint;
antlr3defs.h 541 ANTLR3_API pANTLR3_BASE_RECOGNIZER antlr3BaseRecognizerNew (ANTLR3_UINT32 type, ANTLR3_UINT32 sizeHint, pANTLR3_RECOGNIZER_SHARED_STATE state);
545 ANTLR3_API pANTLR3_HASH_TABLE antlr3HashTableNew (ANTLR3_UINT32 sizeHint);
548 ANTLR3_API pANTLR3_LIST antlr3ListNew (ANTLR3_UINT32 sizeHint);
549 ANTLR3_API pANTLR3_VECTOR_FACTORY antlr3VectorFactoryNew (ANTLR3_UINT32 sizeHint);
550 ANTLR3_API pANTLR3_VECTOR antlr3VectorNew (ANTLR3_UINT32 sizeHint);
551 ANTLR3_API pANTLR3_STACK antlr3StackNew (ANTLR3_UINT32 sizeHint);
552 ANTLR3_API void antlr3SetVectorApi (pANTLR3_VECTOR vector, ANTLR3_UINT32 sizeHint);
570 ANTLR3_API pANTLR3_LEXER antlr3LexerNewStream (ANTLR3_UINT32 sizeHint, pANTLR3_INPUT_STREAM input, pANTLR3_RECOGNIZER_SHARED_STATE state);
571 ANTLR3_API pANTLR3_LEXER antlr3LexerNew (ANTLR3_UINT32 sizeHint, pANTLR3_RECOGNIZER_SHARED_STATE state);
572 ANTLR3_API pANTLR3_PARSER antlr3ParserNewStreamDbg (ANTLR3_UINT32 sizeHint, pANTLR3_TOKEN_STREAM tstream, pANTLR3_DEBUG_EVENT_LISTENER dbg, pANTLR3_RECOGNIZER_SHARED_STATE s (…)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.h 46 virtual QSizeF sizeHint(Qt::SizeHint, const QSizeF&) const;
qgraphicswkview.cpp 241 QSizeF QGraphicsWKView::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const
245 return QGraphicsWidget::sizeHint(which, constraint);
  /external/webkit/Tools/QtTestBrowser/
locationedit.cpp 96 margins.setLeft(m_pageIconLabel->sizeHint().width() + spacing);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.cpp 146 rect.width(), m_combo->sizeHint().height()));
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 451 QSize videoSize = m_videoWidget->sizeHint();
  /external/oprofile/gui/
oprof_start.cpp 816 unit_mask_group->setMinimumSize(unit_mask_group->sizeHint());
817 setup_config_tab->setMinimumSize(setup_config_tab->sizeHint());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 2526 milliseconds