/external/llvm/unittests/IR/ |
TypeBuilderTest.cpp | 20 EXPECT_EQ(Type::getVoidTy(getGlobalContext()), (TypeBuilder<void, true>::get(getGlobalContext()))); 21 EXPECT_EQ(Type::getVoidTy(getGlobalContext()), (TypeBuilder<void, false>::get(getGlobalContext()))); 24 (TypeBuilder<void*, false>::get(getGlobalContext()))); 26 (TypeBuilder<const void*, false>::get(getGlobalContext()))); 28 (TypeBuilder<volatile void*, false>::get(getGlobalContext()))); 30 (TypeBuilder<const volatile void*, false>::get( 35 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<int8_t, false>::get(getGlobalContext()))); 36 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<uint8_t, false>::get(getGlobalContext()))); 37 EXPECT_EQ(Type::getInt16Ty(getGlobalContext()), (TypeBuilder<int16_t, false>::get(getGlobalContext()))); 38 EXPECT_EQ(Type::getInt16Ty(getGlobalContext()), (TypeBuilder<uint16_t, false>::get(getGlobalContext()))) 186 static StructType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder 209 static StructType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder [all...] |
/external/llvm/utils/TableGen/ |
SequenceToOffsetTable.h | 98 /// get - Returns the offset of Seq in the final table. 99 unsigned get(const SeqT &Seq) const { function in class:llvm::SequenceToOffsetTable 100 assert(Entries && "Call layout() before get()"); 103 "get() called with sequence that wasn't added first");
|
/external/marisa-trie/lib/marisa/ |
intvector.h | 47 UInt32 get(std::size_t i) const { function in class:marisa::IntVector 62 return get(i);
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
intvector.h | 47 UInt32 get(std::size_t i) const { function in class:marisa_alpha::IntVector 62 return get(i);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
RollRecoveryEntry.java | 48 public ByteBuffer get() { method in class:RollRecoveryEntry
|
UnknownEntry.java | 46 public ByteBuffer get() { method in class:UnknownEntry 55 bb.get(b);
|
/external/oprofile/libutil++/ |
unique_storage.h | 92 V const & get(id_value const & id) const { function in class:unique_storage 97 throw std::out_of_range("unique_storage::get(): out of bounds");
|
utility.h | 43 T * get() const { return p_; } function in class:scoped_ptr 70 T * get() const { return p_; } function in class:scoped_array
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAsyncTask.java | 33 final Result result = get(); 66 public Result get() throws InterruptedException, ExecutionException { method in class:ShadowAsyncTask 67 return future.get(); 71 public Result get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { method in class:ShadowAsyncTask 72 return future.get(timeout, unit);
|
ShadowLayoutInflater.java | 60 @Override protected LayoutInflater get(ShadowApplication shadowApplication) { method in class:ShadowLayoutInflater.LayoutInflaterAppSingletonizer
|
ShadowMatrixCursor.java | 32 Object columnValue = get(column); 38 Number numberValue = (Number) get(column); 44 Number numberValue = (Number) get(column); 50 Number numberValue = (Number) get(column); 56 Number numberValue = (Number) get(column); 62 Number numberValue = (Number) get(column); 68 return (byte[]) get(column); 73 return get(column) == null; 76 private Object get(int column) { method in class:ShadowMatrixCursor 86 return data.get(currentRowNumber)[column] [all...] |
/external/skia/include/core/ |
SkOSFile.h | 128 const uint16_t* get() const { return fStr; } function in class:SkUTF16_Str
|
/external/skia/src/animator/ |
SkDisplayList.h | 40 SkDrawable* get(int index) { return fDrawList[index]; } function in class:SkDisplayList
|
/external/skia/src/gpu/gl/win/ |
GrGLCreateNativeInterface_win.cpp | 22 #define SET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) GetProcAddress(alu.get(), "gl" #F); 37 HMODULE get() const { return fModule; } function in class:AutoLibraryUnload 49 if (NULL == alu.get()) { 57 (GrGLGetStringProc) GetProcAddress(alu.get(), "glGetString"); 59 (GrGLGetIntegervProc) GetProcAddress(alu.get(), "glGetIntegerv");
|
/external/smali/util/src/main/java/org/jf/util/ |
PathUtil.java | 63 if (!basePath.get(0).equals(pathToRelativize.get(0))) { 71 if (!basePath.get(commonDirs).equals(pathToRelativize.get(commonDirs))) { 98 sb.append(pathToRelativize.get(i));
|
/external/stlport/stlport/stl/ |
_messages_facets.h | 65 string_type get(catalog __c, int __set, int __msgid, function in class:messages 98 inline string_type get(catalog __c, int __set, int __msgid, function in class:messages
|
/frameworks/av/drm/common/ |
DrmInfo.cpp | 49 String8 DrmInfo::get(const String8& key) const { function in class:DrmInfo
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
MetadataMarshalString.java | 45 if (buffer.get() == (byte)0) { 59 buffer.get(strBytes, /*dstOffset*/0, stringLength + 1); // including null character
|
/frameworks/base/core/java/android/nfc/tech/ |
NdefFormatable.java | 34 * <p>Acquire a {@link NdefFormatable} object using {@link #get}. 51 * Get an instance of {@link NdefFormatable} for the given tag. 59 public static NdefFormatable get(Tag tag) { method in class:NdefFormatable
|
/frameworks/base/core/java/android/os/ |
RegistrantList.java | 55 Registrant r = (Registrant) registrants.get(i); 70 get(int index) method in class:RegistrantList 72 return registrants.get(index); 79 Registrant r = (Registrant) registrants.get(i); 113 Registrant r = (Registrant) registrants.get(i);
|
SystemProperties.java | 46 * Get the value for the given key. 50 public static String get(String key) { method in class:SystemProperties 58 * Get the value for the given key. 62 public static String get(String key, String def) { method in class:SystemProperties 70 * Get the value for the given key, and return as an integer. 85 * Get the value for the given key, and return as a long. 100 * Get the value for the given key, returned as a boolean. 152 callbacks.get(i).run();
|
/frameworks/base/core/java/com/android/internal/view/ |
ActionBarPolicy.java | 35 public static ActionBarPolicy get(Context context) { method in class:ActionBarPolicy 62 // so they get what they expect. 81 // Older apps get the home button interaction enabled by default.
|
/frameworks/base/drm/java/android/drm/ |
DrmInfo.java | 107 public Object get(String key) { method in class:DrmInfo 108 return mAttributes.get(key);
|
/frameworks/base/media/java/android/media/videoeditor/ |
VideoEditorProfile.java | 61 public static VideoEditorProfile get() { method in class:VideoEditorProfile
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/ |
ActionBarPolicy.java | 35 public static ActionBarPolicy get(Context context) { method in class:ActionBarPolicy 58 // so they get what they expect. 77 // Older apps get the home button interaction enabled by default.
|