HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 226 - 250 of 389) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/cp/
name-lookup.h 27 a given scope. */
56 /* The datatype used to implement C++ scope. */
59 /* Nonzero if this binding is for a local scope, as opposed to a class
60 or namespace scope. */
75 /* The scope at which this binding was made. */ local
76 cxx_scope *scope;
105 sk_block = 0, /* An ordinary block scope. This enumerator must
108 contents to zero, and the default scope kind
110 sk_cleanup, /* A scope for (pseudo-)scope for cleanup. It i
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
langhooks.h 101 TYPE is placed in the outermost lexical scope. The semantics
153 /* Function to add a decl to the current scope level. Takes one
159 /* Returns the chain of decls so far in the current scope level. */
261 /* Return true if DECL in SCOPE is scoped in global/namespace scope,
263 bool (*has_global_name) (tree decl, void *scope);
404 necessary. 1: and scope information. 2: and any other
411 necessary. 1: and scope information. */
490 /* Like builtin_function, but make sure the scope is the external scope
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r5/platforms/android-5/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r5/platforms/android-8/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-5/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-5/arch-x86/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-x86/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/
pthread.h 134 int pthread_attr_setscope(pthread_attr_t *attr, int scope);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java 597 // method signature (public and has a single View parameter), and narrowing the scope
621 IJavaSearchScope scope = null; local
627 scope = SearchEngine.createHierarchyScope(activityType);
630 if (scope == null) {
631 scope = SearchEngine.createWorkspaceScope();
641 engine.search(pattern, participants, scope, requestor, new NullProgressMonitor());
645 // TODO: Create a project+dependencies scope and search only that scope
647 // Try searching again with a complete workspace scope this time
648 scope = SearchEngine.createWorkspaceScope()
    [all...]
  /external/v8/src/
bootstrapper.cc 275 HandleScope scope; local
804 // Use the empty function as closure (no scope info).
1176 HandleScope scope; local
1203 HandleScope scope; local
1258 HandleScope scope; local
1279 HandleScope scope; local
1659 HandleScope scope; local
1735 HandleScope scope; local
1833 HandleScope scope; local
1869 HandleScope scope; local
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 485 /// Emit the dispatch block for a filter scope if necessary.
584 // The dispatch block for the end of the scope chain is a block that
589 // Otherwise, we should look at the actual scope.
590 EHScope &scope = *EHStack.find(si);
592 llvm::BasicBlock *dispatchBlock = scope.getCachedEHDispatchBlock();
594 switch (scope.getKind()) {
597 EHCatchScope &catchScope = cast<EHCatchScope>(scope);
621 scope.setCachedEHDispatchBlock(dispatchBlock);
626 /// Check whether this is a non-EH scope, i.e. a scope which doesn'
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 78 // Returns the depth of the scope chain within a given call frame.
702 // Unwind the scope chain within the exception handler's call frame.
1193 JSObject* scope = new (callFrame) JSStaticScopeObject(callFrame, property, value, DontDelete); local
    [all...]
  /external/webkit/Source/WebCore/dom/
XMLDocumentParserLibxml2.cpp 434 XMLDocumentParserScope scope(0);
664 XMLDocumentParserScope scope(document()->cachedResourceLoader());
    [all...]

Completed in 1378 milliseconds

1 2 3 4 5 6 7 8 91011>>