/packages/apps/Camera/src/com/android/camera/ui/ |
GLOptionHeader.java | 68 protected void render(GLRootView root, GL11 gl) { 70 mBackground.draw(root, 0, 0, getWidth(), getHeight()); 73 mTitle.draw(root, p.left, p.top);
|
/external/chromium/third_party/icu/source/tools/ctestfw/ |
ctest.c | 50 static TestNode* addTestNode( TestNode *root, const char *name ); 62 static void iterateTestsWithLevel( const TestNode *root, int len, 162 addTest(TestNode** root, 169 if (*root == NULL) 170 *root = createTestNode("", 0); 172 newNode = addTestNode( *root, name ); 180 static TestNode *addTestNode ( TestNode *root, const char *name ) 190 curNode = root; 250 static void iterateTestsWithLevel ( const TestNode* root, 261 if ( root == NULL [all...] |
/external/icu4c/tools/ctestfw/ |
ctest.c | 50 static TestNode* addTestNode( TestNode *root, const char *name ); 62 static void iterateTestsWithLevel( const TestNode *root, int len, 162 addTest(TestNode** root, 169 if (*root == NULL) 170 *root = createTestNode("", 0); 172 newNode = addTestNode( *root, name ); 180 static TestNode *addTestNode ( TestNode *root, const char *name ) 190 curNode = root; 250 static void iterateTestsWithLevel ( const TestNode* root, 261 if ( root == NULL [all...] |
/libcore/luni/src/test/java/tests/xml/ |
NormalizeTest.java | 404 Element root = document.createElement("foo"); local 405 document.appendChild(root); 406 root.appendChild(document.createComment("ABC -- DEF")); 424 Element root = document.createElement("foo"); local 425 document.appendChild(root); 426 root.appendChild(document.createCDATASection("ABC]]>DEF]]>GHI")); 429 assertChildren(root, "<![CDATA[ABC]]]]>", "<![CDATA[>DEF]]]]>", "<![CDATA[>GHI]]>"); 437 Element root = document.createElement("foo"); local 438 document.appendChild(root); 439 root.appendChild(document.createCDATASection("ABC]]>DEF")) 449 Element root = document.createElement("foo"); local 470 Element root = document.createElement("foo"); local 491 Element root = document.createElement("foo"); local 510 Element root = document.createElement("foo"); local 531 Element root = document.createElement("foo"); local 559 Element root = result.createElement("foo"); local [all...] |
/external/v8/test/cctest/ |
testcfg.py | 75 def __init__(self, context, root): 76 super(CcTestConfiguration, self).__init__(context, root) 102 status_file = join(self.root, 'cctest.status') 107 def GetConfiguration(context, root): 108 return CcTestConfiguration(context, root)
|
/external/v8/test/mjsunit/tools/ |
profile_view.js | 28 // Load source code files from <project root>/tools. 44 // root +--c/5 53 var root = createNode('root', 0); 54 createNode('a', 2, root); 55 var a1 = createNode('a', 1, root); 56 createNode('c', 1, root); 64 var view = new devtools.profiler.ProfileView(root); 74 ['root', 0, 91 ['root', 0 [all...] |
/external/webkit/WebCore/css/ |
CSSVariablesDeclaration.cpp | 168 StyleBase* root = this; local 169 while (StyleBase* parent = root->parent()) 170 root = parent; 171 if (root->isCSSStyleSheet()) 172 static_cast<CSSStyleSheet*>(root)->doc()->updateStyleSelector();
|
/external/webkit/WebCore/page/wince/ |
FrameWince.cpp | 74 RenderView* root = toRenderView(frame->document()->renderer()); 76 if (!root) { 88 float pageWidth = (float) root->overflowWidth(); 99 float docHeight = root->layer()->height(); 100 float docWidth = root->layer()->width();
|
/frameworks/base/core/java/android/view/ |
FocusFinder.java | 52 * Find the next view to take focus in root's descendants, starting from the view 54 * @param root Contains focused 59 public final View findNextFocus(ViewGroup root, View focused, int direction) { 63 View userSetNextFocus = focused.findUserSetNextFocus(root, direction); 73 root.offsetDescendantRectToMyCoords(focused, mFocusedRect); 75 // make up a rect at top left or bottom right of root 79 final int rootTop = root.getScrollY(); 80 final int rootLeft = root.getScrollX(); 86 final int rootBottom = root.getScrollY() + root.getHeight() [all...] |
LayoutInflater.java | 270 * @param root Optional view to be the parent of the generated hierarchy. 271 * @return The root View of the inflated hierarchy. If root was supplied, 272 * this is the root View; otherwise it is the root of the inflated 275 public View inflate(int resource, ViewGroup root) { 276 return inflate(resource, root, root != null); 290 * @param root Optional view to be the parent of the generated hierarchy. 291 * @return The root View of the inflated hierarchy. If root was supplied [all...] |
/frameworks/base/sax/java/android/sax/ |
RootElement.java | 26 * The root XML element. The entry point for this API. Not safe for concurrent 46 * RootElement root = new RootElement(ATOM_NAMESPACE, "feed"); 47 * Element entry = root.getChild(ATOM_NAMESPACE, "entry"); 56 * reader.setContentHandler(root.getContentHandler()); 71 * Constructs a new root element with the given name. 81 * Constructs a new root element with the given name. Uses an empty string 115 // This is the root element. 142 Element root = RootElement.this; local 143 if (root.uri.compareTo(uri) != 0 144 || root.localName.compareTo(localName) != 0) [all...] |
/external/webkit/WebCore/dom/ |
TreeWalker.cpp | 38 , m_current(root()) 60 while (node != root()) { 98 if (!parent || parent == root() || parent == m_current) 131 if (!parent || parent == root() || parent == m_current) 142 if (node == root()) 165 if (!node || node == root()) 178 if (node == root()) 201 if (!node || node == root()) 214 while (node != root()) { 235 if (node == root()) [all...] |
/external/webkit/WebKitTools/CodeCoverage/ |
run-generate-coverage-data | 48 for root, dirs, files in os.walk(src): 49 if ".svn" in root: 55 sources.append( os.path.join(root, file) ) 94 def find_source_file(root,cov_file): 115 return os.path.abspath(os.path.join(root,os.path.pardir,os.path.pardir,filepath)) 121 return os.path.abspath(os.path.join(root,filepath)) 125 return os.path.abspath(os.path.join(root,basename)) 150 for root, dirs, files in os.walk(base_path): 151 if ".svn" in root: 157 cov = os.path.join(root, file [all...] |
/frameworks/base/media/libstagefright/codecs/aacenc/basic_op/ |
oper_32b.c | 235 if ((0x40000000l >> shift) + root <= value) \
237 value -= (0x40000000l >> shift) + root; \
238 root = (root >> 1) | (0x40000000l >> shift); \
240 root = root >> 1; \
243 Word32 rsqrt(Word32 value, /*!< Operand to square root (0.0 ... 1) */
246 Word32 root = 0;
local 263 if (root < value)
264 ++root;
[all...] |
/external/bluetooth/glib/gobject/ |
gobject-query.c | 37 static GType root = 0; variable 69 if (type != root) 75 sibling ? O_BRANCH : (type != root ? O_LLEAF : O_SPACE), 107 g_fprintf (stderr, " -r specifiy root type\n"); 136 root = G_TYPE_OBJECT; 179 root = g_type_from_name (argv[i]); 216 show_nodes (root, 0, iindent); 219 root = ~0;
|
/libcore/luni/src/main/java/org/apache/xpath/objects/ |
XRTreeFrag.java | 50 public XRTreeFrag(int root, XPathContext xctxt, ExpressionNode parent) 54 initDTM(root, xctxt); 61 public XRTreeFrag(int root, XPathContext xctxt) 64 initDTM(root, xctxt); 67 private final void initDTM(int root, XPathContext xctxt){ 68 m_dtmRoot = root; 69 final DTM dtm = xctxt.getDTM(root); 162 * because it is treated like a node-set with a single root node.
|
/external/blktrace/btt/ |
seek.c | 38 struct rb_root root; member in struct:seeki 62 static void __insert(struct rb_root *root, long long sectors) 66 struct rb_node **p = &root->rb_node; 86 rb_insert_color(&sbp->rb_node, root); 218 memset(&sip->root, 0, sizeof(sip->root)); 247 __destroy(sip->root.rb_node); 267 __insert(&sip->root, dist); 288 if (sip->root.rb_node) 289 (void)__median(sip->root.rb_node, 0LL, sip->tot_seeks / 2 298 struct rb_root *root = &sip->root; local [all...] |
/device/samsung/crespo/alsa-lib/src/ |
confmisc.c | 210 * \param root Handle to the root source node. 225 int snd_func_getenv(snd_config_t **dst, snd_config_t *root, snd_config_t *src, 239 err = snd_config_evaluate(n, root, private_data, NULL); 249 err = snd_config_evaluate(d, root, private_data, NULL); 310 * \param root Handle to the root source node. 325 int snd_func_igetenv(snd_config_t **dst, snd_config_t *root, snd_config_t *src, 333 err = snd_func_getenv(&d, root, src, private_data); 363 * \param root Handle to the root source node [all...] |
/external/chromium/sdch/open-vcdiff/packages/rpm/ |
rpm.spec | 16 Buildroot: %{_tmppath}/%{name}-root 51 %defattr(-,root,root) 73 %defattr(-,root,root)
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldLoggerTest.java | 53 // The root logger always exists TODO 135 // get root of hierarchy 136 Logger root = Logger.getLogger(""); local 144 // check root parent 146 assertSame(pLog.getParent(), root); local 176 // verify two level root.parent 179 assertSame(child.getParent().getParent(), root); local 187 assertSame(child.getParent().getParent(), root); local 194 assertSame(childOfChild.getParent().getParent().getParent(), root); local 199 // abnormal case : lookup to root parent in a hierarchy without a logge 203 assertSame(child.getParent().getParent(), root); local 204 assertNotSame(child.getParent(), root); local 207 assertNotSame(root.getParent(), root); local 209 assertSame(twoDot.getParent(), root); local [all...] |
/external/webkit/WebCore/rendering/ |
RenderReplaced.cpp | 180 int selTop = ty + m_inlineBoxWrapper->root()->selectionTop(); 181 int selBottom = ty + selTop + m_inlineBoxWrapper->root()->selectionHeight(); 237 RootInlineBox* root = box->root(); 239 int top = root->lineTop(); 240 int bottom = root->nextRootBox() ? root->nextRootBox()->lineTop() : root->lineBottom(); 286 RootInlineBox* root = m_inlineBoxWrapper->root(); [all...] |
/external/webkit/JavaScriptCore/wtf/ |
AVLTree.h | 155 void purge() { abs.root = null(); } 157 bool is_empty() { return abs.root == null(); } 159 AVLTree() { abs.root = null(); } 178 handle h = tree_->abs.root; 224 handle h = tree_->abs.root; 242 handle h = tree_->abs.root; 261 return depth == 0 ? tree_->abs.root : path_h[depth - 1]; 326 // take the less branch. branch[0] gives branch from root, and 333 // Handles of nodes in path from root to current node (returned by *). 347 abs.root = null() [all...] |
/external/freetype/src/cff/ |
cffgload.c | 259 builder->memory = face->root.memory; 263 FT_GlyphLoader loader = glyph->root.internal->loader; 276 CFF_Internal internal = (CFF_Internal)size->root.internal; 280 builder->hints_funcs = glyph->root.internal->glyph_hints; 314 glyph->root.outline = *builder->base; 438 CFF_Internal internal = (CFF_Internal)size->root.internal; 649 if ( face->root.internal->incremental_interface ) 653 face->root.internal->incremental_interface->funcs->get_glyph_data( 654 face->root.internal->incremental_interface->object, 688 if ( face->root.internal->incremental_interface 2065 FT_Fixed root = args[0]; local [all...] |
/external/chromium/base/ |
values_unittest.cc | 522 scoped_ptr<DictionaryValue> root(new DictionaryValue); 524 root->Set(L"empty_dict", new DictionaryValue); 525 root->Set(L"empty_list", new ListValue); 526 root->SetWithoutPathExpansion(L"a.b.c.d.e", new DictionaryValue); 527 root.reset(root->DeepCopyWithoutEmptyChildren()); 528 EXPECT_TRUE(root->empty()); 531 root->SetBoolean(L"bool", true); 532 root->Set(L"empty_dict", new DictionaryValue); 533 root->SetString(L"empty_string", "") [all...] |
/cts/tests/tests/sax/src/android/sax/cts/ |
ElementTest.java | 125 RootElement root = new RootElement(ATOM_NAMESPACE, FEED); local 126 assertNotNull(root); 127 Element name = root.getChild(ATOM_NAMESPACE, NAME); 135 Element entry1 = root.getChild(ATOM_NAMESPACE, ENTRY1); 147 Element entry2 = root.requireChild(ATOM_NAMESPACE, ENTRY2); 175 xmlReader.setContentHandler(root.getContentHandler());
|