/external/icu/icu4c/source/test/cintltst/ |
cgendtst.c | 25 void addGendInfoForTest(TestNode** root); 28 #define TESTCASE(x) addTest(root, &x, "tsformat/cgendtst/" #x) 30 void addGendInfoForTest(TestNode** root)
|
/development/ndk/tools/ |
headers-diff-bionic-vs-ndk.py | 16 sysincludes[arch] -- dict with includes root as key 17 sysincludes[arch][root] -- dict with header name as key 18 sysincludes[arch][root][header] -- list [last_platform, ..., first_platform] 36 self.root = platforms_root 40 def scan_dir(self, root): 43 for filename in os.listdir(root): 44 if os.path.isfile(os.path.join(root, filename)): 48 def scan_includes(self, root): 49 """Recursive includes scan in given root""" 51 includes_root = os.path.join(root, 'include' [all...] |
/build/target/product/ |
emulator.mk | 48 device/generic/goldfish/fstab.goldfish:root/fstab.goldfish \ 49 device/generic/goldfish/init.goldfish.rc:root/init.goldfish.rc \ 51 device/generic/goldfish/ueventd.goldfish.rc:root/ueventd.goldfish.rc
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
upload_chromevox_to_webstore.py | 41 def MakeManifestEdits(root, old, new_file): 45 root: The directory containing file. 54 with open(os.path.join(root, old)) as old_file: 98 for root, dirs, files in os.walk(extension_path): 99 rel_path = os.path.join(os.path.relpath(root, extension_path), '') 108 MakeManifestEdits(root, extension_file, new_file) 113 zip.write(os.path.join(root, extension_file),
|
find_js_files.py | 29 for root in args: 30 print '\n'.join(treescan.ScanTreeForJsFiles(root))
|
/bootable/recovery/edify/ |
parser.y | 29 void yyerror(Expr** root, int* error_count, const char* s); 30 int yyparse(Expr** root, int* error_count); 54 %parse-param {Expr** root} 69 input: expr { *root = $1; } 99 yyerror(root, error_count, buffer); 128 void yyerror(Expr** root, int* error_count, const char* s) { 136 int parse_string(const char* str, Expr** root, int* error_count) { 138 return yyparse(root, error_count);
|
/development/tools/line_endings/ |
line_endings.c | 62 Node* root = malloc(sizeof(Node)); local 63 Node* node = root; 93 while (root) { 94 ssize_t amt2 = strlen(root->buf); 96 ssize_t amt = write(fd, root->buf, amt2); 102 node = root; 103 root = root->next;
|
/device/asus/flo/ |
device.mk | 26 device/asus/flo/fstab.flo:root/fstab.flo \ 27 device/asus/flo/init.flo.rc:root/init.flo.rc
|
/device/asus/grouper/ |
device.mk | 21 device/asus/grouper/fstab.grouper:root/fstab.grouper \ 22 device/asus/grouper/init.grouper.rc:root/init.grouper.rc
|
/external/chromium_org/build/android/gyp/ |
find.py | 22 for root, _, filenames in os.walk(d): 24 print os.path.join(root, f)
|
/external/chromium_org/chrome/common/extensions/manifest_handlers/ |
ui_overrides_handler_unittest.cc | 56 scoped_ptr<base::Value> root(json.Deserialize(NULL, &error)); 57 ASSERT_TRUE(root); 58 ASSERT_TRUE(root->IsType(base::Value::TYPE_DICTIONARY)); 62 *static_cast<base::DictionaryValue*>(root.get()), 85 scoped_ptr<base::Value> root(json.Deserialize(NULL, &error)); 86 ASSERT_TRUE(root); 87 ASSERT_TRUE(root->IsType(base::Value::TYPE_DICTIONARY)); 91 *static_cast<base::DictionaryValue*>(root.get()),
|
/external/chromium_org/content/renderer/accessibility/ |
renderer_accessibility_focus_only.cc | 22 // The root node will always have id 1. Let each child node have a new 92 // Set the id that the event applies to: the root node if nothing 97 ui::AXNodeData& root = event.update.nodes[0]; local 100 // Always include the root of the tree, the document. It always has id 1. 101 root.id = 1; 102 root.role = ui::AX_ROLE_ROOT_WEB_AREA; 103 root.state = 107 root.state |= (1 << ui::AX_STATE_FOCUSED); 108 root.location = gfx::Rect(render_frame_->render_view()->size()); 109 root.child_ids.push_back(next_id_) [all...] |
/external/chromium_org/sandbox/win/src/ |
registry_dispatcher.h | 27 HANDLE root, DWORD desired_access, 32 HANDLE root, DWORD desired_access);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
ClipRectsCache.h | 17 // Relative to the ancestor treated as the root (e.g. transformed layer). Used for hit testing. 36 : root(0) 43 const RenderLayer* root; member in struct:blink::ClipRectsCache::Entry
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DOMFilePath.h | 42 static const char root[]; member in class:blink::DOMFilePath 61 return path.startsWith(DOMFilePath::root); 69 // Evaluates all "../" and "./" segments. Note that "/../" expands to "/", so you can't ever refer to anything above the root directory.
|
/external/chromium_org/ui/events/ |
event_targeter.h | 24 // is in the coordinate space of |root|. Furthermore, the targeter can mutate 28 virtual EventTarget* FindTargetForEvent(EventTarget* root, 32 // etc. of |event| are in |root|'s coordinate system. When finding the target 38 virtual EventTarget* FindTargetForLocatedEvent(EventTarget* root,
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
SyntaxTreeBuilder.java | 82 * @param root The AST to post process. 88 protected void process(Start root, EscapeMode escapeMode, String templateName) { 89 root.apply(typeResolver); 90 root.apply(sequenceOptimizer); 91 root.apply(inlineRewriter); 93 // root.apply(varOptimizer); 98 root.apply(new AutoEscaper(escapeMode, templateName)); 112 Start root = parser.parse(); local 113 process(root, escapeMode, templateName); 114 return new TemplateSyntaxTree(root); [all...] |
/external/llvm/utils/ |
llvmgrep | 25 TOPDIR=`llvm-config --src-root`
|
/external/chromium_org/google_apis/drive/ |
drive_api_requests.cc | 139 base::DictionaryValue root; local 142 root.SetString("lastViewedByMeDate", 147 root.SetString("mimeType", mime_type_); 150 root.SetString("modifiedDate", util::FormatTimeAsString(modified_date_)); 159 root.Set("parents", parents_value); 163 root.SetString("title", title_); 165 base::JSONWriter::Write(&root, upload_content); 215 base::DictionaryValue root; local 217 root.SetString("title", title_); 220 root.SetString("modifiedDate", util::FormatTimeAsString(modified_date_)) 272 base::DictionaryValue root; local 497 base::DictionaryValue root; local 562 base::DictionaryValue root; local 627 base::DictionaryValue root; local 767 base::DictionaryValue root; local [all...] |
/external/chromium_org/components/policy/core/common/ |
schema_unittest.cc | 485 { base::Value::TYPE_DICTIONARY, 0 }, // 0: root node 739 base::DictionaryValue root; local 742 root.SetBoolean("Object.three", false); 743 TestSchemaValidation(subschema, root, SCHEMA_STRICT, false); 744 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_UNKNOWN_TOPLEVEL, false); 745 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_UNKNOWN, true); 746 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_INVALID_TOPLEVEL, true); 747 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_INVALID, true); 748 TestSchemaValidationWithPath(subschema, root, "Object"); 749 root.Remove("Object.three", NULL) 766 base::ListValue root; local 797 base::DictionaryValue root; local 824 base::ListValue root; local 870 base::DictionaryValue root; local [all...] |
/external/chromium_org/ui/wm/core/ |
transient_window_manager_unittest.cc | 548 Window* root = root_window(); local 549 ASSERT_EQ(4u, root->children().size()); 550 EXPECT_EQ(root->children()[0], window1.get()); 551 EXPECT_EQ(root->children()[1], transient1.get()); 552 EXPECT_EQ(root->children()[2], window2.get()); 553 EXPECT_EQ(root->children()[3], transient2.get()); 554 ASSERT_EQ(4u, root->layer()->children().size()); 555 EXPECT_EQ(root->layer()->children()[0], window1->layer()); 556 EXPECT_EQ(root->layer()->children()[1], transient1->layer()); 557 EXPECT_EQ(root->layer()->children()[2], window2->layer()) [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
Compiler.h | 98 bool detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth); 100 bool validateOutputs(TIntermNode* root); 102 void rewriteCSSShader(TIntermNode* root); 105 bool validateLimitations(TIntermNode* root); 107 void collectVariables(TIntermNode* root); 109 virtual void translate(TIntermNode* root) = 0; 117 void initializeVaryingsWithoutStaticUse(TIntermNode* root); 122 void initializeGLPosition(TIntermNode* root); 124 bool enforceTimingRestrictions(TIntermNode* root, bool outputGraph); 126 bool enforceVertexShaderTimingRestrictions(TIntermNode* root); [all...] |
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
cat.py | 47 if sorter.root: 86 root = OrderedDict() 87 root['time'] = dump.time 88 root['worlds'] = OrderedDict() 89 root['worlds']['vm'] = CatCommand._fill_world( 91 root['worlds']['malloc'] = CatCommand._fill_world( 93 return root 97 root = OrderedDict() 99 root['name'] = world 101 root['unit_fields'] = ['size', 'reserved' [all...] |
/external/e2fsprogs/lib/ext2fs/ |
namei.c | 24 static errcode_t open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base, 28 static errcode_t follow_link(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir, 39 printf("follow_link: root=%lu, dir=%lu, inode=%lu, lc=%d\n", 40 root, dir, inode, link_count); 69 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1, 78 * directory and the root directory, and returns the inode of the 82 static errcode_t dir_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir, 95 dir = root; 110 retval = follow_link (fs, root, dir, inode, 120 static errcode_t open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base [all...] |
rbtree.c | 25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) 44 root->rb_node = right; 48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) 67 root->rb_node = left; 71 void ext2fs_rb_insert_color(struct rb_node *node, struct rb_root *root) 96 __rb_rotate_left(parent, root); 104 __rb_rotate_right(gparent, root); 121 __rb_rotate_right(parent, root); 129 __rb_rotate_left(gparent, root); 133 ext2fs_rb_set_black(root->rb_node) [all...] |