HomeSort by relevance Sort by last modified time
    Searched full:automatic (Results 26 - 50 of 1456) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/guide/developing/building/
building-eclipse.jd 57 <p>By default, Android run configurations use an "automatic target" mode for selecting a
58 device target. For information on how automatic target mode selects a deployment target, see
59 <a href="#AutoAndManualTargetModes">Automatic and manual target modes</a> below.</p>
105 configuration will launch the default project Activity and use automatic target mode for device
123 <li><p>In the Target tab, consider whether you'd like to use Manual or Automatic mode when
125 "#AutoAndManualTargetModes">Automatic and manual target modes</a>).</p>
137 <h4 id="AutoAndManualTargetModes">Automatic and manual target modes</h4>
139 <p>By default, a run configuration uses the <strong>automatic</strong> target mode in order to
  /external/bluetooth/glib/docs/reference/glib/tmpl/
completion.sgml 2 Automatic String Completion
5 support for automatic completion using a group of target strings
9 #GCompletion provides support for automatic completion of a string using
41 The data structure used for automatic completion.
  /external/chromium/chrome/browser/ui/cocoa/
base_view.h 15 // - Automatic registration for mouse-moved events.
  /external/chromium/chrome/common/
profiling.h 33 // Called when the main message loop is started, so that automatic flushing
switch_utils.cc 15 // pick up an automatic update, be sure to add it to this list.
  /external/chromium/net/proxy/
proxy_config.h 24 // (1) Automatic (indicates the methods to obtain a PAC script)
27 // When both automatic and manual settings are specified, the Automatic ones
125 // Returns true if this config contains any "automatic" settings. See the
  /external/gtest/
README.android 8 the xUnit architecture. Supports automatic test discovery, a rich set
  /external/iproute2/man/man8/
tc-pfifo_fast.8 49 it is the automatic default in the absence of a configured qdisc.
  /external/jsilver/src/com/google/streamhtmlparser/
JavascriptParser.java 21 * of Automatic context-aware escaping. This interface does not add
  /external/mesa3d/src/glsl/
ir_expression_flattening.h 31 * This is used for automatic function inlining, where we want to take
  /external/skia/include/xml/
SkBML_WXMLParser.h 49 // important that these are U8, so we get automatic wrap-around
  /external/stlport/stlport/stl/config/
_dec_vms.h 12 // automatic template instantiation does not
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-001.js 9 - affect the process of automatic semicolon insertion.
lexical-002.js 9 - affect the process of automatic semicolon insertion.
  /frameworks/compile/libbcc/runtime/lib/
Makefile.mk 16 # FIXME: use automatic dependencies?
  /frameworks/compile/libbcc/runtime/lib/arm/
Makefile.mk 18 # FIXME: use automatic dependencies?
  /frameworks/compile/libbcc/runtime/lib/i386/
Makefile.mk 18 # FIXME: use automatic dependencies?
  /frameworks/compile/libbcc/runtime/lib/ppc/
Makefile.mk 18 # FIXME: use automatic dependencies?
  /frameworks/compile/libbcc/runtime/lib/x86_64/
Makefile.mk 18 # FIXME: use automatic dependencies?
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 12 // automatic template instantiation does not
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 12 // automatic template instantiation does not
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 12 // automatic template instantiation does not
  /packages/apps/Settings/src/com/android/settings/
BrightnessPreference.java 225 myState.automatic = mCheckBox.isChecked();
247 setMode(myState.automatic ? 1 : 0);
253 boolean automatic; field in class:BrightnessPreference.SavedState
260 automatic = source.readInt() == 1;
269 dest.writeInt(automatic ? 1 : 0);
  /external/clang/docs/
BlockLanguageSpec.txt 19 A new derived type is introduced to C and, by extension, Objective-C, C++, and Objective-C++. Like function types, the Block type is a pair consisting of a result value type and a list of parameter types very similar to a function type. Blocks are intended to be used much like functions with the key distinction being that in addition to executable code they also contain various variable bindings to automatic (stack) or managed (heap) memory.
21 The abstract declarator int (^)(char, float) describes a reference to a Block that, when invoked, takes two parameters, the first of type char and the second of type float, and returns a value of type int. The Block referenced is of opaque data that may reside in automatic (stack) memory, global memory, or heap memory.
80 The compound statement body establishes a new lexical scope within that of its parent. Variables used within the scope of the compound statement are bound to the Block in the normal manner with the exception of those in automatic (stack) storage. Thus one may access functions and global variables as one would expect, as well as static local variables. [testme]
82 Local automatic (stack) variables referenced within the compound statement of a Block are imported and captured by the Block as const copies. The capture (binding) is performed at the time of the Block literal expression evaluation.
113 In addition to the new Block type we also introduce a new storage qualifier, __block, for local variables. [testme: a __block declaration within a block literal] The __block storage qualifier is mutually exclusive to the existing local storage qualifiers auto, register, and static.[testme] Variables qualified by __block act as if they were in allocated storage and this storage is automatically recovered after last use of said variable. An implementation may choose an optimization where the storage is initially automatic and only "moved" to allocated (heap) storage upon a Block_copy of a referencing Block. Such variables may be mutated as normal variables are.
115 In the case where a __block variable is a Block one must assume that the __block variable resides in allocated storage and as such is assumed to reference a Block that is also in allocated storage (that it is the result of a Block_copy operation). Despite this there is no provision to do a Block_copy or a Block_release if an implementation provides initial automatic storage for Blocks. This is due to the inherent race condition of potentially several threads trying to update the shared variable and the need for synchronization around disposing of older values and copying new ones. Such synchronization is beyond the scope of this language specification.
127 All Blocks are constructed to be Objective-C objects regardless of whether the Objective-C runtime is operational in the program or not. Blocks using automatic (stack) memory are objects and may be messaged, although they may not be assigned into __weak locations if garbage collection is enabled.
131 The Block_copy operator retains all objects held in variables of automatic storage referenced within the Block expression (or form strong references if running under garbage collection). Object variables of __block storage type are assumed to hold normal pointers with no provision for retain and release messages.
144 Block literal expressions within functions are extended to allow const use of C++ objects, pointers, or references held in automatic storage.
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
proxy_form_controller_test.html 28 <legend>Automatic Configuration</legend>
30 <label for="proxyTypeAutoconfig">Your proxy supports <em>automatic configuration</em>.</label>

Completed in 661 milliseconds

12 3 4 5 6 7 8 91011>>