HomeSort by relevance Sort by last modified time
    Searched full:reference (Results 51 - 75 of 13950) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/crypto/
mac_security_services_lock.h 20 // http://developer.apple.com/mac/library/documentation/Security/Reference/certifkeytrustservices/Reference/reference.html
nss_util_internal.h 16 // Returns a reference to the default NSS key slot for storing
18 // returned reference with PK11_FreeSlot.
21 // Returns a reference to the default slot for storing private-key and
24 // successfully. Caller must release returned reference with
  /cts/tools/signature-tools/src/signature/model/
IClassReference.java 20 * {@code IClassReference} models a reference to an {@link IClassDefinition}. If
22 * {@link ITypeVariableDefinition}s, this reference can be seen as a raw type.
27 * Returns the definition this class reference is referencing.
29 * @return the definition this class reference is referencing
  /cts/tools/signature-tools/templates/
ClassReferenceLink.st 1 $Link(url={http://code.google.com/android/reference/$it.packageFragments; separator="/"$/$it.name$.html}, name={<tt>$it.name$</tt>})$
PackageAddedLink.st 1 $Link(url={http://code.google.com/android/reference/$it.packageFragments; separator="/"$/package-summary.html}, name={<tt>$it.name$</tt>})$
  /development/samples/HoneycombGallery/res/values/
attrs.xml 19 <attr name="listDragShadowBackground" format="reference" />
20 <attr name="menuIconCamera" format="reference" />
21 <attr name="menuIconToggle" format="reference" />
22 <attr name="menuIconShare" format="reference" />
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p3.cpp 2 int& r1; // expected-error{{declaration of reference variable 'r1' requires an initializer}}
p5-var.cpp 50 // Reference-compatible
54 Derived &dr2 = b; // expected-error{{non-const lvalue reference to type 'Derived' cannot bind to a value of unrelated type 'Base'}}
59 long &lr = i; // expected-error{{non-const lvalue reference to type 'long' cannot bind to a value of unrelated type 'int'}}
67 volatile Base &bvr3 = bvc; // expected-error{{binding of reference to type 'volatile Base' to a value of type 'const volatile Base' drops qualifiers}}
68 volatile Base &bvr4 = dvc; // expected-error{{binding of reference to type 'volatile Base' to a value of type 'const volatile Derived' drops qualifiers}}
70 volatile int &ir = ivc; // expected-error{{binding of reference to type 'volatile int' to a value of type 'const volatile int' drops qualifiers}}
77 Base &br1 = Base(); // expected-error{{non-const lvalue reference to type 'Base' cannot bind to a temporary of type 'Base'}}
78 Base &br2 = Derived(); // expected-error{{non-const lvalue reference to type 'Base' cannot bind to a temporary of type 'Derived'}}
79 const volatile Base &br3 = Base(); // expected-error{{volatile lvalue reference to type 'const volatile Base' cannot bind to a temporary of type 'Base'}}
80 const volatile Base &br4 = Derived(); // expected-error{{volatile lvalue reference to type 'const volatile Base' cannot bind to a temporary of type 'Derived'}
    [all...]
  /external/clang/test/SemaCXX/
decl-init-ref.cpp 21 const int& ri = (void)0; // expected-error {{reference to type 'const int' could not bind to an rvalue of type 'void'}}
24 const A& rca = f(); // expected-error {{reference initialization of type 'const A &' with initializer of type 'B' is ambiguous}}
25 A& ra = f(); // expected-error {{non-const lvalue reference to type 'A' cannot bind to a temporary of type 'B'}}
29 PR6139 x = {{A()}}; // expected-error{{non-const lvalue reference to type 'A [1]' cannot bind to a temporary of type 'A'}}
ptrtomember.cpp 25 p->*m; // expected-error {{reference to non-static member function must be called}}
26 (void)(p->*m); // expected-error {{reference to non-static member function must be called}}
27 (void)(void*)(p->*m); // expected-error {{reference to non-static member function must be called}} expected-error {{cannot cast from type 'void' to pointer type 'void *'}}
28 (void)reinterpret_cast<void*>(p->*m); // expected-error {{reference to non-static member function must be called}} expected-error {{reinterpret_cast from 'void' to 'void *' is not allowed}}
29 if (p->*m) {} // expected-error {{reference to non-static member function must be called}} expected-error {{value of type 'void' is not contextually convertible to 'bool'}}
30 if (!(p->*m)) {} // expected-error {{reference to non-static member function must be called}} expected-error {{invalid argument type 'void' to unary expression}}
31 if (p->m) {}; // expected-error {{reference to non-static member function must be called}} expected-error {{value of type 'void' is not contextually convertible to 'bool'}}
32 if (!p->m) {}; // expected-error {{reference to non-static member function must be called}} expected-error {{invalid argument type 'void' to unary expression}}
references.cpp 47 double& rd2 = 2.0; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a temporary of type 'double'}}
49 double& rd3 = i; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a value of unrelated type 'int'}}
57 const int& r = cvi; // expected-error{{binding of reference to type 'const int' to a value of type 'const volatile int' drops qualifiers}}
62 int& yo; // expected-error{{declaration of reference variable 'yo' requires an initializer}}
66 int& not_initialized_error; // expected-error{{declaration of reference variable 'not_initialized_error' requires an initializer}}
70 int& okay; // expected-note{{reference member 'okay' will never be initialized}}
80 void test8(int& const,// expected-error{{'const' qualifier may not be applied to a reference}}
82 void&, // expected-error{{cannot form a reference to 'void'}}
83 int& &) // expected-error{{type name declared as a reference to a reference}}
    [all...]
const-cast.cpp 27 // Const reference to reference.
29 // Drop reference. Intentionally without qualifier change.
31 // Const array to array reference.
51 // Rvalue to reference.
52 char ***&var4 = const_cast<cpppr>(&var2); // expected-error {{const_cast from rvalue to reference type 'cpppr'}}
54 char v = const_cast<char>(**var2); // expected-error {{const_cast to 'char', which is not a reference, pointer-to-object, or pointer-to-data-member}}
60 f fp2 = const_cast<f>(fp1); // expected-error {{const_cast to 'f' (aka 'int (*)(int)'), which is not a reference, pointer-to-object, or pointer-to-data-member}}
62 (void)const_cast<void (A::*)()>(mfn); // expected-error {{const_cast to 'void (A::*)()', which is not a reference, pointer-to-object, or pointer-to-data-member}}
  /external/clang/test/SemaObjCXX/
ivar-reference-type.mm 3 int &r; // expected-error {{instance variables cannot be of reference type}}
  /external/llvm/test/Assembler/
invalid-fwdref1.ll 1 ; RUN: not llvm-as %s -disable-output 2>&1 | grep "invalid forward reference to function as global value!"
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-attrs/
internet_explorer6 1 # IE specific, from msdn.microsoft.com/workshop/author/dhtml/reference/properties
  /frameworks/base/core/java/android/database/sqlite/
SQLiteClosable.java 24 * This class implements a primitive reference counting scheme for database objects.
30 * Called when the last reference to the object was released by
36 * Called when the last reference to the object was released by
47 * Acquires a reference to the object.
49 * @throws IllegalStateException if the last reference to the object has already
63 * Releases a reference to the object, closing the object if the last reference
79 * Releases a reference to the object that was owned by the container of the object,
80 * closing the object if the last reference was released.
97 * Releases a reference to the object, closing the object if the last referenc
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ShowWithinMenu.java 6 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
36 final List<Reference> includedBy = finder.getIncludedBy(file);
39 for (final Reference reference : includedBy) {
40 String title = reference.getDisplayName();
41 IAction action = new ShowWithinAction(title, reference);
58 private Reference mReference;
60 public ShowWithinAction(String title, Reference reference) {
62 mReference = reference;
    [all...]
  /development/samples/StackWidget/
_index.html 3 to create a widget containing a <a href="../../../reference/android/widget/StackView.html"><code>StackView</code></a>
5 a <a href="../../../reference/android/widget/ListView.html"><code>ListView</code></a>,
6 <a href="../../../reference/android/widget/GridView.html"><code>GridView</code></a> or
7 <a href="../../../reference/android/widget/AdapterViewFlipper.html"><code>AdapterViewFlipper</code></a> instead.
14 The pattern for creating and wiring a <a href="../../../reference/android/widget/RemoteViewsService.html"><code>RemoteViewsService</code></a>
15 and <a href="../../../reference/android/widget/RemoteViewsService.RemoteViewsFactory.html"><code>RemoteViewsFactory</code></a> which
23 How to make a widget with a <a href="../../../reference/android/widget/StackView.html"><code>StackView</code></a>
24 (or <a href="../../../reference/android/widget/AdapterViewFlipper.html"><code>AdapterViewFlipper</code></a>) auto-advance.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
drawable1-expected-completion49.txt 6 android:drawable : Drawable used to render the layer. [reference]
7 android:id : Identifier of the layer. [reference]
  /sdk/templates/activities/FullscreenActivity/root/res/values/
attrs.xml 8 <attr name="buttonBarStyle" format="reference" />
9 <attr name="buttonBarButtonStyle" format="reference" />
  /development/samples/ActionBarCompat/res/values/
attrs.xml 20 <attr name="actionbarCompatTitleStyle" format="reference" />
21 <attr name="actionbarCompatItemStyle" format="reference" />
22 <attr name="actionbarCompatItemHomeStyle" format="reference" />
23 <attr name="actionbarCompatProgressIndicatorStyle" format="reference" />
27 <attr name="maskDrawable" format="reference" />
28 <attr name="borderDrawable" format="reference" />
  /external/llvm/test/Feature/
constpointer.ll 13 @t3 = global i32* @t1 ;; Forward reference
15 @t4 = global i32** @t3 ;; reference to reference
19 global float * @2 ;; Forward numeric reference
20 global float * @2 ;; Duplicate forward numeric reference
22 global float * @2 ;; Numeric reference
  /external/llvm/test/Integer/
constpointer_bt.ll 13 @t3 = global i40 * @t1 ;; Forward reference
15 @t4 = global i40 ** @t3 ;; reference to reference
19 global float * @2 ;; Forward numeric reference
20 global float * @2 ;; Duplicate forward numeric reference
22 global float * @2 ;; Numeric reference
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
TrackReferenceBox.java 28 * This box provides a reference from the containing track to another track in the presentation. These references
29 * are typed. A 'hint' reference links from the containing hint track to the media data that it hints. A content
30 * description reference 'cdsc' links a descriptive or metadata track to the content which it describes.
31 * Exactly one Track Reference Box can be contained within the Track Box.
32 * If this box is not present, the track is not referencing any other track in any way. The reference array is sized
33 * to fill the reference type box.
  /external/clang/test/Analysis/
stack-addr-ps.cpp 7 return s; // expected-warning{{Address of stack memory associated with local variable 's' returned}} expected-warning{{reference to stack memory associated with local variable 's' returned}}
12 int &s2 = s1; // expected-note {{binding reference variable 's2' here}}
13 return s2; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}}
18 int &s2 = s1; // expected-note {{binding reference variable 's2' here}}
19 int &s3 = s2; // expected-note {{binding reference variable 's3' here}}
20 return s3; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}}
25 const int &get_reference1() { return get_value(); } // expected-warning{{Address of stack memory associated with temporary object of type 'int' returned}} expected-warning {{returning reference to local temporary}}
28 const int &x = get_value(); // expected-note {{binding reference variable 'x' here}}
29 return x; // expected-warning{{Address of stack memory associated with temporary object of type 'int' returned}} expected-warning {{returning reference to local temporary}}
33 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}
    [all...]

Completed in 1580 milliseconds

1 23 4 5 6 7 8 91011>>