/external/chromium_org/third_party/skia/include/views/ |
SkViewInflate.h | 24 /** Return the tree of inflated views. If root is null, create the root element 25 as a view, otherwise assume root is that view, and just "inflate" it. 29 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL); 30 SkView* inflate(const char xml[], size_t len, SkView* root = NULL);
|
/external/chromium_org/tools/grit/grit/format/ |
chrome_messages_json.py | 16 def Format(root, lang='en', output_dir='.'): 25 for child in root.ActiveDescendants():
|
/external/chromium_org/tools/ |
remove_stale_pyc_files.py | 16 root, ext = os.path.splitext(filename) 21 py_path = os.path.join(dirname, root + '.py')
|
/external/chromium_org/ui/aura/ |
window_targeter.h | 22 virtual ui::EventTarget* FindTargetForEvent(ui::EventTarget* root, 25 ui::EventTarget* root,
|
/external/deqp/modules/gles2/functional/ |
es2fAttribLocationTests.cpp | 61 TestCaseGroup* const root = new TestCaseGroup (context, "attribute_location", "Attribute location tests"); local 67 root->addChild(bindAttributeGroup); 80 root->addChild(bindMaxAttributeGroup); 93 root->addChild(aliasingGroup); 118 root->addChild(holeGroup); 133 root->addChild(bindTimeGroup); 146 root->addChild(relinkHoleGroup); 156 return root;
|
/external/eigen/scripts/ |
relicense.py | 52 for root, sub_folders, files in os.walk(rootdir): 57 filename = os.path.join(root, basename)
|
/external/iproute2/testsuite/tests/ |
cls-testbed.t | 15 ts_tc "cls-testbed" "cbq root qdisc creation" \ 16 qdisc add dev $DEV root handle 10:0 \ 18 ts_tc "cls-testbed" "cbq root class creation" \ 29 ts_tc "cls-testbed" "htb root qdisc creation" \ 30 qdisc add dev $DEV root handle 10:0 htb 31 ts_tc "cls-testbed" "htb root class creation" \ 41 ts_tc "cls-testbed" "dsmark root qdisc creation" \ 42 qdisc add dev $DEV root handle 20:0 \ 64 qdisc del dev $DEV root
|
/external/llvm/utils/lit/lit/ |
TestingConfig.py | 147 def root(self): member in class:TestingConfig 148 """root attribute - The root configuration for the test suite.""" 152 return self.parent.root
|
/external/openfst/src/script/ |
replace.cc | 25 MutableFstClass *ofst, const int64 &root, 35 ReplaceArgs args(tuples, ofst, root, epsilon_on_replace);
|
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/ |
UnixFileTest.java | 33 private boolean root = false; field in class:UnixFileTest 146 if (root) { 216 if (root) { 227 if (root) { 233 if (root) { 261 if (root) { 276 // However, canRead() always returns true when the user is 'root'. 279 if (root) { 285 if (root) { 294 if (root) { [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
ReverseAxesWalker.java | 46 * Set the root node of the TreeWalker. 49 * @param root The context node of this step. 51 public void setRoot(int root) 53 super.setRoot(root); 54 m_iterator = getDTM(root).getAxisIterator(m_axis); 55 m_iterator.setStartNode(root); 102 // * Set the root node of the TreeWalker. 104 // * @param root The context node of this step. 106 // public void setRoot(int root) 108 // super.setRoot(root); [all...] |
/external/chromium_org/ash/wm/ |
stacking_controller.h | 33 aura::Window* GetSystemModalContainer(aura::Window* root,
|
system_background_controller.h | 24 // the root layer that aren't covered by any other layers (e.g. before the 36 virtual void OnWindowBoundsChanged(aura::Window* root,
|
/external/chromium_org/chrome/browser/profile_resetter/ |
brandcoded_default_settings.cc | 21 scoped_ptr<base::Value> root(json.Deserialize(NULL, &error)); 22 if (!root.get()) { 26 if (!root->IsType(base::Value::TYPE_DICTIONARY)) { 28 << "Root item must be a dictionary."; 32 static_cast<base::DictionaryValue*>(root.release()));
|
/external/chromium_org/content/test/ |
accessibility_browser_test_utils.cc | 95 const ui::AXNodeData& root = GetAXTree().GetRoot()->data(); local 96 for (size_t i = 0; i < root.string_attributes.size(); ++i) { 97 if (root.string_attributes[i].first != ui::AX_ATTR_DOC_URL) 99 const std::string& doc_url = root.string_attributes[i].second;
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
RetainedDOMInfo.h | 44 explicit RetainedDOMInfo(Node* root);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
NodeIteratorBase.h | 40 Node* root() const { return m_root.get(); } function in class:blink::NodeIteratorBase
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/ |
CompositingRequirementsUpdater.h | 54 void update(RenderLayer* root);
|
/external/chromium_org/third_party/icu/source/common/ |
locutil.h | 29 static UBool isFallbackOf(const UnicodeString& root, const UnicodeString& child);
|
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/jni/ |
Application.mk | 4 # that can be found in the LICENSE file in the root of the source 7 # be found in the AUTHORS file in the root of the source tree.
|
/external/chromium_org/tools/json_schema_compiler/ |
features_compiler.py | 8 features_compiler.py --destdir gen --root /home/Work/src _permissions.json 20 def _GenerateSchema(filename, root, destdir, namespace): 25 schema_loader = SchemaLoader(os.path.dirname(os.path.relpath(schema, root)), 36 relpath = os.path.relpath(os.path.normpath(source_file_dir), root) 60 parser.add_option('-r', '--root', default='.', 61 help='logical include root directory. Path to schema files from ' 64 help='root directory to output generated files.') 73 result = _GenerateSchema(filenames[0], opts.root, opts.destdir,
|
/external/chromium_org/ui/events/test/ |
test_event_processor.h | 23 void SetRoot(scoped_ptr<EventTarget> root);
|
/external/chromium_org/ui/views/widget/ |
root_view_targeter.h | 33 View* root,
|
/external/chromium_org/v8/src/ |
snapshot-common.cc | 61 Object* root; local 70 deserializer.DeserializePartial(isolate, &root); 71 CHECK(root->IsContext()); 72 return Handle<Context>(Context::cast(root));
|
/external/elfutils/0.153/libdw/ |
libdw_visit_scopes.c | 99 __libdw_visit_scopes (depth, root, previsit, postvisit, arg) 101 struct Dwarf_Die_Chain *root; 108 child.parent = root; 109 if (INTUSE(dwarf_child) (&root->die, &child.die) != 0)
|