Searched defs:reference (Results 76 - 100 of 419) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/compiler/
H A Djs-graph.cc177 Node* JSGraph::ExternalConstant(ExternalReference reference) { argument
178 Node** loc = cache_.FindExternalConstant(reference);
180 *loc = NewNode(common()->ExternalConstant(reference));
/external/clang/docs/tools/
H A Ddump_ast_matchers.py21 # We categorize the matchers into these three categories in the reference:
359 reference = open('../LibASTMatchersReference.html').read() variable
360 reference = re.sub(r'<!-- START_DECL_MATCHERS.*END_DECL_MATCHERS -->', variable
361 '%s', reference, flags=re.S) % node_matcher_table
362 reference = re.sub(r'<!-- START_NARROWING_MATCHERS.*END_NARROWING_MATCHERS -->', variable
363 '%s', reference, flags=re.S) % narrowing_matcher_table
364 reference = re.sub(r'<!-- START_TRAVERSAL_MATCHERS.*END_TRAVERSAL_MATCHERS -->', variable
365 '%s', reference, flags=re.S) % traversal_matcher_table
368 output.write(reference)
/external/clang/include/clang/AST/
H A DAttrIterator.h72 typedef SpecificAttr* reference; typedef in class:clang::specific_attr_iterator
80 reference operator*() const {
H A DDeclLookups.h30 typedef lookup_result reference; typedef in class:clang::DeclContext::all_lookups_iterator
42 reference operator*() const { return It->second.getLookupResult(); }
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
H A Dp8.cpp92 typedef Tp& reference; typedef in class:redecl::n1::allocator
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp30 typedef const _E& reference; typedef in class:std::initializer_list
H A Dcxx0x-initializer-stdinitializerlist-startend.cpp20 typedef const _E& reference; typedef in class:std::initializer_list
/external/clang/tools/diagtool/
H A DDiagnosticNames.h56 typedef const value_type & reference; typedef in class:diagtool::GroupRecord::group_iterator
61 inline reference operator*() const;
103 inline GroupRecord::subgroup_iterator::reference
109 inline GroupRecord::diagnostics_iterator::reference
/external/doclava/src/com/google/doclava/
H A DLinkReference.java62 * regex pattern to use when matching explicit 'a href' reference text
68 * regex pattern to use when matching double-quoted reference text
78 * @return a new link reference. It always returns something. If there was an error, it logs it
353 // literal quoted reference (e.g., a book title)
363 if (DBG) System.out.println(" ---- literal quoted reference");
375 if (DBG) System.out.println(" ---- explicit href reference");
382 if (DBG) System.out.println(" ---- packge reference");
384 // class reference
389 if (DBG) System.out.println(" ---- class reference");
391 // member reference
461 setHref(LinkReference reference, ClassInfo info, String member) argument
[all...]
/external/eigen/Eigen/src/StlSupport/
H A Ddetails.h29 typedef T& reference; typedef in class:Eigen::aligned_allocator_indirection
/external/guava/guava/src/com/google/common/base/
H A DPreconditions.java178 * Ensures that an object reference passed as a parameter to the calling
181 * @param reference an object reference
182 * @return the non-null reference that was validated
183 * @throws NullPointerException if {@code reference} is null
185 public static <T> T checkNotNull(T reference) { argument
186 if (reference == null) {
189 return reference;
193 * Ensures that an object reference passed as a parameter to the calling
196 * @param reference a
202 checkNotNull(T reference, @Nullable Object errorMessage) argument
226 checkNotNull(T reference, @Nullable String errorMessageTemplate, @Nullable Object... errorMessageArgs) argument
[all...]
/external/guava/guava/src/com/google/common/base/internal/
H A DFinalizer.java38 * Google Collections, this thread would keep an indirect strong reference
63 * @param frq reference to instance of FinalizableReferenceQueue that started
112 + " by reference finalizer thread.", t);
134 * Cleans up a single reference. Catches and logs all throwables.
136 private void cleanUp(Reference<?> reference) throws ShutDown { argument
143 reference.clear();
145 if (reference == frqReference) {
147 * The client no longer has a reference to the
154 finalizeReferentMethod.invoke(reference);
156 logger.log(Level.SEVERE, "Error cleaning up after reference
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DObjectArrays.java48 * Returns a new array of the given length with the same type as a reference
51 * @param reference any array of the desired type
54 public static <T> T[] newArray(T[] reference, int length) { argument
55 return Platform.newArray(reference, length);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DObjectArrays.java36 * Returns a new array of the given length with the same type as a reference
39 * @param reference any array of the desired type
42 public static <T> T[] newArray(T[] reference, int length) { argument
43 return Platform.newArray(reference, length);
/external/guava/guava-tests/test/com/google/common/base/
H A DFinalizableReferenceQueueTest.java43 MockReference reference = new MockReference(
47 if (reference.finalizeReferentCalled) {
73 * Keeps a weak reference to the underlying reference queue. When this
74 * reference is cleared, we know that the background thread has stopped
75 * and released its strong reference.
96 * If we don't keep a strong reference to the reference object, it won't
99 FinalizableWeakReference<Object> reference; field in class:FinalizableReferenceQueueTest
110 * Queue and clear a reference fo
[all...]
/external/libcxx/test/containers/
H A Dstack_allocator.h25 typedef value_type& reference; typedef in class:stack_allocator
/external/llvm/include/llvm/ADT/
H A DSetVector.h41 typedef T& reference; typedef in class:llvm::SetVector
H A DBitVector.h39 class reference { class in class:llvm::BitVector
45 reference(); // Undefined
48 reference(BitVector &b, unsigned Idx) { function in class:llvm::BitVector::reference
53 ~reference() {}
55 reference &operator=(reference t) {
60 reference& operator=(bool t) {
327 reference operator[](unsigned Idx) {
329 return reference(*this, Idx);
/external/oprofile/libpp/
H A Dprofile.h155 typedef count_type & reference; typedef in struct:std::iterator_traits
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
H A DBuilderInstruction35c.java38 import org.jf.dexlib2.iface.reference.Reference;
52 @Nonnull protected final Reference reference; field in class:BuilderInstruction35c
61 @Nonnull Reference reference) {
69 this.reference = reference;
78 @Nonnull @Override public Reference getReference() { return reference; }
54 BuilderInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction35c.java37 import org.jf.dexlib2.iface.reference.Reference;
38 import org.jf.dexlib2.immutable.reference.ImmutableReference;
39 import org.jf.dexlib2.immutable.reference.ImmutableReferenceFactory;
53 @Nonnull protected final ImmutableReference reference; field in class:ImmutableInstruction35c
62 @Nonnull Reference reference) {
70 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
94 @Nonnull @Override public ImmutableReference getReference() { return reference; }
55 ImmutableInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
/external/stlport/stlport/stl/
H A D_ostreambuf_iterator.h54 typedef void reference; typedef in class:ostreambuf_iterator
H A D_stack.h68 typedef typename _Sequence::reference reference; typedef in class:stack
84 reference top() { return c.back(); }
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h85 typedef T& reference; typedef in class:ceres::internal::FixedArray
114 // Returns a reference to the "i"th element.
121 // Returns a reference to the "i"th element.
/external/chromium_org/chrome/browser/sync/test/integration/
H A Ddictionary_helper.cc86 const chrome::spellcheck_common::WordSet& reference = local
93 if (reference.size() != dictionary.size() ||
94 !std::equal(reference.begin(), reference.end(), dictionary.begin())) {

Completed in 1653 milliseconds

1234567891011>>