HomeSort by relevance Sort by last modified time
    Searched refs:fragment (Results 201 - 225 of 474) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 681 Document fragment = DomUtilities.parseStructuredDocument(xml); local
682 assert fragment != null : xml;
689 modified = ok = mergeManifest(currentDocument, fragment);
700 modified = mergeResourceFile(currentDocument, fragment, folderType, paramMap);
736 private static boolean mergeResourceFile(Document currentDocument, Document fragment,
741 NamedNodeMap attributes = fragment.getDocumentElement().getAttributes();
759 Element root = fragment.getDocumentElement();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ActionAnalysis.g 38 filter=true; // try all non-fragment rules in order specified
131 fragment
ActionTranslator.g 30 filter=true; // try all non-fragment rules in order specified
641 fragment
699 fragment
733 fragment
750 fragment
799 fragment
803 fragment
807 fragment
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 237 fragment = """\
240 fragments.append(("common", fragment))
245 fragment = ci.get_llvmbuild_fragment()
246 if fragment is None:
250 fragments.append((name, fragment))
305 # Write out each fragment.each component fragment.
306 for name,fragment in fragments:
311 f.write(fragment)
312 if fragment is not fragments[-1][1]
    [all...]
  /external/webkit/Source/WebCore/dom/
XMLDocumentParser.h 189 static PassRefPtr<XMLDocumentParser> create(DocumentFragment* fragment, Element* element, FragmentScriptingPermission permission)
191 return adoptRef(new XMLDocumentParser(fragment, element, permission));
xml_expat_tokenizer.cpp 277 XMLTokenizer::XMLTokenizer(DocumentFragment *fragment, Element *parentElement)
278 : m_doc(fragment->document())
281 , m_currentNode(fragment)
282 , m_currentNodeIsReferenced(fragment)
295 if (fragment)
296 fragment->ref();
954 bool parseXMLDocumentFragment(const String &string, DocumentFragment *fragment, Element *parent)
956 XMLTokenizer tokenizer(fragment, parent);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ShaderProgram.h 105 ShaderResource(GLuint prog, GLuint vertex, GLuint fragment)
108 , fragmentShader(fragment)
  /hardware/invensense/libsensors/
Android.mk 21 # InvenSense fragment of the HAL
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestInnerClass.java 135 String query, String fragment, Boolean isAbsolute,
138 fragment, isAbsolute, actual);
DOMTestCase.java 678 String fragment,
696 if (fragment != null) {
697 assertEquals(assertID, fragment, actualFragment);
  /packages/apps/Settings/src/com/android/settings/
Settings.java 178 switchToParent(mParentHeader.fragment);
183 // Override up navigation for multi-pane, since we handle it in the fragment breadcrumbs
194 // Save the current fragment, if it is the same as originally launched
261 * Switch to parent fragment and store the grand parent's info
262 * @param className name of the activity wrapper for the parent fragment.
274 parentHeader.fragment = fragmentClass;
282 mParentHeader.fragment
340 * returns the class name to load as a fragment.
360 * for a specific fragment encoded in the android:name parameter.
367 header.fragment = fragmentClass
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java 19 import android.app.Fragment;
244 public void onAttachFragment(Fragment fragment) {
245 if (fragment instanceof ContactDetailFragment) {
246 mContactDetailFragment = (ContactDetailFragment) fragment;
247 } else if (fragment instanceof ContactsUnavailableFragment) {
248 mContactsUnavailableFragment = (ContactsUnavailableFragment)fragment;
363 // the fragment manager, so first see if there're already the target fragments
405 // Only favorites tab with two panes has a separate frequent fragment
434 // Setting Properties after fragment is create
943 Fragment fragment = (Fragment) object; local
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm 391 - (BOOL)_shouldInsertFragment:(DOMDocumentFragment *)fragment replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
713 DOMDocumentFragment *fragment;
725 fragment = [[self _frame] _documentFragmentWithNodesAsParagraphs:domNodes];
729 return [fragment firstChild] != nil ? fragment : nil;
737 // Omit style since we want style to be inline so the fragment can be easily inserted.
741 // Omit tags that will get stripped when converted to a fragment anyway.
745 // Omit object so no file attachments are part of the fragment.
768 DOMDocumentFragment *fragment = nil;
771 (fragment = [self _documentFragmentFromPasteboard:pasteboard
    [all...]
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 183 scheme, netloc, path, params, query, fragment = parts[:6]
189 query, fragment))
281 scheme, netloc, path, params, query, fragment = urlparse.urlparse(value)
291 # Normalized URL excludes params, query, and fragment.
347 fragment = base_url.fragment
354 fragment = base_url[5]
357 urllib.urlencode(query, True), fragment)
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouterActivity.java 85 // Add a fragment to take care of media route discovery.
86 // This fragment automatically adds or removes a callback whenever the activity
90 DiscoveryFragment fragment = new DiscoveryFragment(); local
91 fragment.setRouteSelector(mSelector);
93 .add(fragment, DISCOVERY_FRAGMENT_TAG)
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 34 import android.support.v4.app.Fragment;
61 * This fragment displays details of a specific contact from the contacts provider. It shows the
62 * contact's display photo, name and all its mailing addresses. You can also modify this fragment
65 * This fragment appears full-screen in an activity on devices with small screen sizes, and as
69 * To create an instance of this fragment, use the factory method
73 public class ContactDetailFragment extends Fragment implements
86 // Whether or not this fragment is showing in a two pane layout
89 private Uri mContactUri; // Stores the contact Uri for this fragment instance
101 * Factory method to generate a new instance of the fragment given a contact Uri. A factory
109 // Create new instance of this fragment
110 final ContactDetailFragment fragment = new ContactDetailFragment(); local
    [all...]
  /external/openssl/ssl/
d1_lib.c 164 OPENSSL_free(frag->fragment);
172 OPENSSL_free(frag->fragment);
180 OPENSSL_free(frag->fragment);
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.cpp 139 HTMLConstructionSite::HTMLConstructionSite(DocumentFragment* fragment, FragmentScriptingPermission scriptingPermission)
140 : m_document(fragment->document())
141 , m_attachmentRoot(fragment)
160 // This method should only be needed for HTMLTreeBuilder in the fragment case.
206 // encountered during fragment parsing should be ignored.
228 // in a fragment, as changing the owning document's compatibility mode would be wrong.
482 // Fragment case
  /frameworks/av/media/libstagefright/mp4/
FragmentedMP4Parser.cpp 810 TrackInfo *info, sp<TrackFragment> *fragment, SampleInfo *sampleInfo) {
821 *fragment = *info->mFragments.begin();
823 status_t err = (*fragment)->getSample(sampleInfo);
831 // Really, end of this fragment...
841 sp<TrackFragment> fragment; local
843 status_t err = getSample(info, &fragment, &sampleInfo);
877 fragment->advance();
891 sp<TrackFragment> fragment; local
893 err = getSample(info, &fragment, &sampleInfo);
1114 const sp<TrackFragment> &fragment local
1962 const sp<TrackFragment> &fragment = *--info->mFragments.end(); local
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/interactions/
PhoneNumberInteraction.java 199 PhoneDisambiguationDialogFragment fragment = new PhoneDisambiguationDialogFragment(); local
204 fragment.setArguments(bundle);
205 fragment.show(fragmentManager, TAG);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeMoveParticipant.java 138 for (IPackageFragment fragment : fragments) {
139 IResource resource = fragment.getResource();
141 mNewFqcn = fragment.getElementName() + '.' + type.getElementName();
170 // changes, we need to update fragment references and even tool:context activity
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 138 * The parent fragment is of syntax "var = expr" or "var[] = expr".
140 * VariableDeclarationStatement ("type [fragment]") or by a
146 VariableDeclarationFragment fragment = findParentClass(node, local
149 if (fragment != null) {
150 ASTNode parent = fragment.getParent();
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 487 fragment
505 fragment
524 fragment

Completed in 1035 milliseconds

1 2 3 4 5 6 7 891011>>