/external/chromium_org/ui/views/ |
accessible_pane_view_unittest.cc | 81 View* root = widget->GetRootView(); local 82 root->AddChildView(test_view); 156 View* root = widget->GetRootView(); local 157 root->AddChildView(test_view); 158 root->AddChildView(test_view_2); 186 View* root = widget->GetRootView(); local 187 root->AddChildView(original_test_view); 188 root->AddChildView(test_view);
|
/external/chromium_org/v8/src/ |
hydrogen-flow-engine.h | 92 void AnalyzeDominatedBlocks(HBasicBlock* root, State* initial) { 94 SetStateAt(root, initial); 97 for (int i = root->block_id(); i < graph_->blocks()->length(); i++) { 100 // Skip blocks not dominated by the root node. 101 if (SkipNonDominatedBlock(root, block)) continue; 174 inline bool SkipNonDominatedBlock(HBasicBlock* root, HBasicBlock* other) { 175 if (root->block_id() == 0) return false; // Visit the whole graph. 176 if (root == other) return false; // Always visit the root. 177 return !root->Dominates(other); // Only visit dominated blocks [all...] |
/external/deqp/framework/delibs/scripts/ |
update-copyright-year.py | 21 for root, dirs, files in os.walk(dir): 24 srcFiles.append(os.path.join(root, file))
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/ |
helpbase-ant.jar | |
/external/fio/lib/ |
rbtree.h | 135 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
|
/external/freetype/include/ |
ftglyph.h | 96 /* The root glyph structure contains a given glyph image plus its */ 140 /* root :: The root @FT_Glyph fields. */ 162 FT_GlyphRec root; member in struct:FT_BitmapGlyphRec_ 192 /* root :: The root @FT_Glyph fields. */ 210 FT_GlyphRec root; member in struct:FT_OutlineGlyphRec_ [all...] |
/external/freetype/src/pshinter/ |
pshmod.c | 29 FT_ModuleRec root; member in struct:PS_Hinter_Module_Rec_ 54 FT_Memory memory = module->root.memory;
|
/external/icu/icu4c/source/extra/uconv/ |
resfiles.mk | 9 RESSRC = $(RESOURCESDIR)$(FILESEPCHAR)root.txt $(RESOURCESDIR)$(FILESEPCHAR)fr.txt
|
/external/jsoncpp/src/jsontestrunner/ |
main.cpp | 122 Json::Value &root, 127 bool parsingSuccessful = reader.parse( input, root ); 144 printValueTree( factual, root ); 153 const Json::Value &root, 159 rewrite = writer.write( root ); 271 Json::Value root; local 272 exitCode = parseAndSaveValueTree( input, actualPath, "input", root, features, parseOnly ); 276 exitCode = rewriteValueTree( rewritePath, root, rewrite );
|
/external/libmtp/ |
libmtp.sh | 6 DEVICEOWNER=root
|
libmtp.sh.in | 6 DEVICEOWNER=root
|
/external/libvorbis/doc/ |
10-tables.tex | 2 %!TEX root = Vorbis_I_spec.tex
|
a2-encapsulation-rtp.tex | 2 %!TEX root = Vorbis_I_spec.tex
|
/external/llvm/utils/ |
llvmdo | 22 # The -topdir option allows you to specify the llvm source root directly. If it 49 TOPDIR=`llvm-config --src-root`
|
/bootable/recovery/edify/ |
main.c | 24 extern int yyparse(Expr** root, int* error_count); 192 Expr* root; local 194 int error = parse_string(buffer, &root, &error_count); 198 ExprDump(0, root, buffer); 205 char* result = Evaluate(&state, root);
|
/dalvik/hit/src/com/android/hit/ |
Heap.java | 31 // Root objects such as interned strings, jni locals, etc 78 public final void addRoot(RootObj root) { 79 root.mIndex = mRoots.size(); 80 mRoots.add(root); 181 for (RootObj root: mRoots) { 182 root.resolveReferences(state);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreePatternParser.cs | 67 object root = ParseNode(); 68 if (root == null) { 77 adaptor.AddChild(root, subtree); 83 adaptor.AddChild(root, child); 91 return root;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreePatternParser.cs | 76 object root = ParseNode(); 77 if ( root == null ) 89 adaptor.AddChild( root, subtree ); 98 adaptor.AddChild( root, child ); 106 return root;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreePatternParser.java | 65 Object root = parseNode(); local 66 if ( root==null ) { 76 adaptor.addChild(root, subtree); 83 adaptor.addChild(root, child); 90 return root;
|
/external/chromium_org/chrome/browser/task_profiler/ |
task_profiler_data_serializer.cc | 118 scoped_ptr<base::DictionaryValue> root(new base::DictionaryValue()); 124 root->SetInteger("version", 1); 125 root->SetString("userAgent", GetUserAgent()); 144 root->Set("snapshots", snapshot_list); 146 serializer.Serialize(*root);
|
/external/chromium_org/content/browser/accessibility/ |
accessibility_ipc_error_browsertest.cc | 104 const ui::AXNode* root = tree->GetRoot(); local 109 EXPECT_EQ(ui::AX_ROLE_ROOT_WEB_AREA, root->data().role); 110 ASSERT_EQ(2, root->child_count()); 112 const ui::AXNode* live_region = root->ChildAtIndex(0); 119 const ui::AXNode* button_container = root->ChildAtIndex(1);
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorLayerTreeAgent.cpp | 228 void InspectorLayerTreeAgent::buildLayerIdToNodeIdMap(RenderLayer* root, LayerIdToNodeIdMap& layerIdToNodeIdMap) 230 if (root->hasCompositedLayerMapping()) { 231 if (Node* node = root->renderer()->generatingNode()) { 232 GraphicsLayer* graphicsLayer = root->compositedLayerMapping()->childForSuperlayers(); 236 for (RenderLayer* child = root->firstChild(); child; child = child->nextSibling()) 238 if (!root->renderer()->isRenderIFrame()) 240 FrameView* childFrameView = toFrameView(toRenderWidget(root->renderer())->widget()); 247 void InspectorLayerTreeAgent::gatherGraphicsLayers(GraphicsLayer* root, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) 249 int layerId = root->platformLayer()->id(); 252 layers->addItem(buildObjectForLayer(root, layerIdToNodeIdMap.get(layerId))) [all...] |
/external/chromium_org/ui/wm/core/ |
window_util.cc | 83 scoped_ptr<ui::LayerTreeOwner> RecreateLayers(ui::LayerOwner* root) { 85 new ui::LayerTreeOwner(root->RecreateLayer().release())); 86 if (old_layer->root()) 87 CloneChildren(root->layer(), old_layer->root());
|
/external/eigen/Eigen/src/SparseCore/ |
SparseColEtree.h | 38 /** Find the root of the tree/set containing the vertex i : Use Path halving */ 67 IndexVector root(nc); // root of subtree of etree 68 root.setZero(); 98 root(cset) = col; 113 rroot = root(rset); 119 root(cset) = col; 197 // Depth-first search from dummy root vertex #n
|
/device/asus/deb/self-extractors/ |
generate-packages.sh | 267 cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles 277 (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz) 282 (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script)
|