/external/chromium_org/chrome/browser/mac/ |
security_wrappers.cc | 40 CrSKeychainItemAndAccess::CrSKeychainItemAndAccess(SecKeychainItemRef item, 42 : item_(item), 130 SecKeychainItemRef item; local 131 OSStatus status = SecKeychainSearchCopyNext(search, &item); 139 return item; 151 bool CrSKeychainItemTestAccess(SecKeychainItemRef item) { 154 OSStatus status = SecKeychainItemCopyAttributesAndData(item, 172 SecAccessRef CrSKeychainItemCopyAccess(SecKeychainItemRef item) { 174 OSStatus status = SecKeychainItemCopyAccess(item, &access); 288 SecKeychainRef CrSKeychainItemCopyKeychain(SecKeychainItemRef item) { 393 SecKeychainItemRef item; local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn_ctx.c | 81 /* How many bignums are in each "pool item"; */ 159 BN_POOL_ITEM *item = ctx->pool.head; local 164 fprintf(stderr,"%03x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); 166 item = item->next; 386 BN_POOL_ITEM *item = p->head; local 387 while(item) 390 BIGNUM *bn = item->vals; 396 item = item->next 409 BN_POOL_ITEM *item = OPENSSL_malloc(sizeof(BN_POOL_ITEM)); local [all...] |
/external/openssl/crypto/bn/ |
bn_ctx.c | 81 /* How many bignums are in each "pool item"; */ 159 BN_POOL_ITEM *item = ctx->pool.head; local 164 fprintf(stderr,"%03x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); 166 item = item->next; 386 BN_POOL_ITEM *item = p->head; local 387 while(item) 390 BIGNUM *bn = item->vals; 396 item = item->next 409 BN_POOL_ITEM *item = OPENSSL_malloc(sizeof(BN_POOL_ITEM)); local [all...] |
/packages/apps/Browser/src/com/android/browser/ |
SuggestionsAdapter.java | 113 SuggestItem item = (SuggestItem) ((View) v.getParent()).getTag(); local 117 mListener.onSearch(getSuggestionUrl(item)); 119 mListener.onSelect(getSuggestionUrl(item), item.type, item.extra); 157 private void bindView(View view, SuggestItem item) { 158 // store item for click handling 159 view.setTag(item); 165 tv1.setText(Html.fromHtml(item.title)); 166 if (TextUtils.isEmpty(item.url)) 365 SuggestItem item = items.get(i); local 511 SuggestItem item = new SuggestItem(title, url, type); local [all...] |
/external/chromium_org/third_party/skia/third_party/harfbuzz/src/ |
harfbuzz-arabic.c | [all...] |
/packages/apps/Camera/src/com/android/camera/ui/ |
PieRenderer.java | 193 public void addItem(PieItem item) { 194 // add the item to the pie itself 195 mItems.add(item); 198 public void removeItem(PieItem item) { 199 mItems.remove(item); 235 for (PieItem item : mItems) { 236 item.setSelected(false); 293 // first item we find triggers custom sweep for all 295 for (PieItem item : items) { 296 if (item.getCenter() >= 0) 429 PieItem item = findItem(polar); local 441 PieItem item = mCurrentItem; local 475 PieItem item = findItem(polar); local [all...] |
/external/emma/core/java12/com/vladium/emma/report/xml/ |
ReportGenerator.java | 94 public Object visit (final AllItem item, final Object ctx) 147 emitStatsCount ("packages", item.getChildCount ()); 148 emitStatsCount ("classes", item.getAggregate (IItem.TOTAL_CLASS_COUNT)); 149 emitStatsCount ("methods", item.getAggregate (IItem.TOTAL_METHOD_COUNT)); 153 emitStatsCount ("srcfiles", item.getAggregate (IItem.TOTAL_SRCFILE_COUNT)); 156 emitStatsCount ("srclines", item.getAggregate (IItem.TOTAL_LINE_COUNT)); 170 emitItem (item, childrenOrder); 189 public Object visit (final PackageItem item, final Object ctx) 191 if (m_verbose) m_log.verbose (" report: processing package [" + item.getName () + "] ..."); 196 emitItem (item, childrenOrder) [all...] |
/frameworks/native/libs/gui/tests/ |
BufferQueue_test.cpp | 131 IGraphicBufferConsumer::BufferItem item; local 132 ASSERT_EQ(OK, mConsumer->acquireBuffer(&item, 0)); 135 ASSERT_EQ(OK, item.mGraphicBuffer->lock(GraphicBuffer::USAGE_SW_READ_OFTEN, 138 ASSERT_EQ(OK, item.mGraphicBuffer->unlock()); 155 BufferQueue::BufferItem item; local 163 ASSERT_EQ(OK, mConsumer->acquireBuffer(&item, 0)); 173 ASSERT_EQ(INVALID_OPERATION, mConsumer->acquireBuffer(&item, 0)); 251 IGraphicBufferConsumer::BufferItem item; local 252 ASSERT_EQ(OK, mConsumer->acquireBuffer(&item, static_cast<nsecs_t>(0))); 255 ASSERT_EQ(OK, item.mGraphicBuffer->lock(GraphicBuffer::USAGE_SW_READ_OFTEN 285 IGraphicBufferConsumer::BufferItem item; local 345 IGraphicBufferConsumer::BufferItem item; local [all...] |
/external/chromium_org/crypto/ |
mock_apple_keychain.h | 119 // Adds a keychain item with the given info to the test set. 168 // Sets the data and length of |tag| in the item-th test item. 170 MockKeychainItemType item, 174 // Sets the data and length of |tag| in the item-th test item based on 178 void SetTestDataString(MockKeychainItemType item, 181 // Sets the data of the corresponding attribute of the item-th test item to 184 void SetTestDataPort(MockKeychainItemType item, UInt32 value) [all...] |
/external/chromium_org/ui/gfx/ |
render_text_pango.cc | 26 GSList* GSListPrevious(GSList* head, GSList* item) { 28 for (GSList* cur = head; cur != item; cur = cur->next) { 36 // motion in the given Pango |item|. 37 bool IsForwardMotion(VisualCursorDirection direction, const PangoItem* item) { 38 bool rtl = item->analysis.level & 1; 127 PangoItem* item = reinterpret_cast<PangoLayoutRun*>(it->data)->item; local 128 const int start = LayoutIndexToTextIndex(item->offset); 129 const int end = LayoutIndexToTextIndex(item->offset + item->length) 159 PangoItem* item = reinterpret_cast<PangoLayoutRun*>(run->data)->item; local 179 PangoItem* item = reinterpret_cast<PangoLayoutRun*>(run->data)->item; local 202 PangoItem* item = reinterpret_cast<PangoLayoutRun*>(run->data)->item; local 495 PangoItem* item = reinterpret_cast<PangoLayoutRun*>(run->data)->item; local [all...] |
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
RsBench.java | 93 public boolean onOptionsItemSelected(MenuItem item) { 94 // Handle item selection 95 switch (item.getItemId()) { 106 public void onClick(DialogInterface dialog, int item) { 108 "Starting to benchmark: " + mView.getTestNames()[item], 110 mView.setBenchmarkMode(item); 122 public void onClick(DialogInterface dialog, int item) { 124 "Switching to: " + mView.getTestNames()[item], 126 mView.setDebugMode(item); 133 return super.onOptionsItemSelected(item); [all...] |
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
FragmentShader.java | 110 ArrayList<ScriptField_ShaderParam_s.Item> paramList; 111 paramList = new ArrayList<ScriptField_ShaderParam_s.Item>(); 118 ScriptField_ShaderParam_s.Item paramRS = new ScriptField_ShaderParam_s.Item(); 150 ScriptField_FragmentShader_s.Item item = new ScriptField_FragmentShader_s.Item(); local 151 item.program = mProgram; 155 item.shaderTextureParams = texParams.getAllocation(); 160 item.shaderConst = mConstantBuffer [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppNotification.java | 264 NotificationItem item = new NotificationItem(); local 265 item.timeStamp = timeStamp; 266 item.id = id; 267 item.direction = dir; 268 if (item.direction == BluetoothShare.DIRECTION_OUTBOUND) { 269 item.description = mContext.getString(R.string.notification_sending, fileName); 270 } else if (item.direction == BluetoothShare.DIRECTION_INBOUND) { 271 item.description = mContext 276 item.totalCurrent = current; 277 item.totalTotal = total [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
FaceClustering.java | 47 public void add(MediaItem item, int faceIndex) { 48 Path path = item.getPath(); 50 Face[] faces = item.getFaces(); 54 mCoverItem = item; 61 mCoverItem = item; 98 public void consume(int index, MediaItem item) { 99 Face[] faces = item.getFaces(); 101 untagged.add(item, -1); 111 cluster.add(item, j);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/location/ |
LocationModeTestActivity.java | 98 * #createAutoItem(int)} as appropriate to generate each item. 113 View item = mInflater.inflate(R.layout.location_mode_item, mItemList, false); local 114 TextView instructions = (TextView) item.findViewById(R.id.instructions); 116 mItemList.addView(item); 117 return item; 125 View item = mInflater.inflate(R.layout.location_mode_item, mItemList, false); local 126 TextView instructions = (TextView) item.findViewById(R.id.instructions); 128 View button = item.findViewById(R.id.launch_settings); 130 mItemList.addView(item); 131 return item; 138 ViewGroup item = (ViewGroup) mItemList.getChildAt(index); local 151 ViewGroup item = (ViewGroup) mItemList.getChildAt(index); local [all...] |
/external/chromium_org/extensions/renderer/resources/ |
app_runtime_custom_bindings.js | 25 var itemLoaded = function(err, item) { 29 $Array.push(items, item); 40 $Array.forEach(launchData.items, function(item) { 41 var fs = GetIsolatedFileSystem(item.fileSystemId); 42 fs.root.getFile(item.baseName, {}, function(fileEntry) { 43 entryIdManager.registerEntry(item.entryId, fileEntry); 44 itemLoaded(null, { entry: fileEntry, type: item.mimeType });
|
/external/chromium_org/ui/views/controls/menu/ |
menu_model_adapter_unittest.cc | 126 // Item definition. 127 struct Item { 128 Item(ItemType item_type, 141 const Item& GetItemDefinition(int index) { 152 std::vector<Item> items_; 164 items_.push_back(Item(TYPE_COMMAND, "submenu item 0", NULL)); 165 items_.push_back(Item(TYPE_COMMAND, "submenu item 1", NULL)); 180 items_.push_back(Item(TYPE_COMMAND, "command 0", NULL)) 223 MenuItemView* item = menu->GetMenuItemByID(id); local 270 MenuItemView* item = menu->GetMenuItemByID(id); local [all...] |
/frameworks/base/libs/hwui/utils/ |
SortedList.h | 71 ssize_t indexOf(const TYPE& item) const; 72 size_t orderOf(const TYPE& item) const; 79 ssize_t add(const TYPE& item); 99 virtual void do_splat(void* dest, const void* item, size_t num) const; 170 inline ssize_t SortedList<TYPE>::add(const TYPE& item) { 171 return SortedListImpl::add(&item); 175 inline ssize_t SortedList<TYPE>::indexOf(const TYPE& item) const { 176 return SortedListImpl::indexOf(&item); 180 inline size_t SortedList<TYPE>::orderOf(const TYPE& item) const { 181 return SortedListImpl::orderOf(&item); [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/ |
FakeExpandableAdapter.java | 84 AdapterItem item = new AdapterItem(dataBindingItem, typeIndex, mItems.size(), local 86 mItems.add(item); 96 private void createItems(DataBindingItem item, int depth) { 98 createItems(item, item.getChildren().size(), item.getCount(), mChildrenTypes, depth); 103 AdapterItem item = mItems.get(groupPosition); local 105 List<AdapterItem> children = item.getChildren(); 118 AdapterItem item = mItems.get(groupPosition); local 119 return item.getChildren().size() 136 AdapterItem item = mItems.get(groupPosition); local 148 AdapterItem item = getChildItem(groupPosition, childPosition); local [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
SectionedAlbumDataAdapter.java | 72 PhotoSource.AlbumData item = mAlbumData.getItem(i); local 73 if (previous.isEmpty() || !previous.equals(item.account)) { 74 if (DEBUG) Log.i(TAG, "previous = " + previous +", title = " + item.account); 75 previous = item.account; 86 PhotoSource.AlbumData item = mAlbumData.getItem(i); local 87 if (previous.isEmpty() || !previous.equals(item.account)) { 88 previous = item.account; 180 View item = convertView; local 181 if (item == null) { 182 item = mInflater.inflate(mLayout, parent, false) 193 View item = mAlbumData.getView(internalPosition(position), convertView, parent); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
UserList.py | 29 def __contains__(self, item): return item in self.data 32 def __setitem__(self, i, item): self.data[i] = item 76 def append(self, item): self.data.append(item) 77 def insert(self, i, item): self.data.insert(i, item) 79 def remove(self, item): self.data.remove(item) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
UserList.py | 29 def __contains__(self, item): return item in self.data 32 def __setitem__(self, i, item): self.data[i] = item 76 def append(self, item): self.data.append(item) 77 def insert(self, i, item): self.data.insert(i, item) 79 def remove(self, item): self.data.remove(item) [all...] |
/system/core/include/utils/ |
SortedVector.h | 84 //! finds the index of an item 85 ssize_t indexOf(const TYPE& item) const; 87 //! finds where this item should be inserted 88 size_t orderOf(const TYPE& item) const; 95 //! read-only access to an item at a given index 106 //! add an item in the right place (and replace the one that is there) 107 ssize_t add(const TYPE& item); 109 //! editItemAt() MUST NOT change the order of this item 118 //! removes an item 123 //! remove one item [all...] |
/system/core/libpixelflinger/codeflinger/tinyutils/ |
SortedVector.h | 81 //! finds the index of an item 82 ssize_t indexOf(const TYPE& item) const; 84 //! finds where this item should be inserted 85 size_t orderOf(const TYPE& item) const; 92 //! read-only access to an item at a given index 105 //! add an item in the right place (and replace the one that is there) 106 ssize_t add(const TYPE& item); 108 //! editItemAt() MUST NOT change the order of this item 117 //! removes an item 122 //! remove one item [all...] |
/external/oprofile/libpopt/ |
popt.c | 270 poptItem item; local 277 item = con->execs + i; 278 if (longName && !(item->option.longName && 279 !strcmp(longName, item->option.longName))) 281 else if (shortName != item->option.shortName) 331 poptItem item = con->os->currAlias; local 335 if (item) { 336 if (longName && (item->option.longName && 337 !strcmp(longName, item->option.longName))) 339 if (shortName && shortName == item->option.shortName 383 poptItem item = con->doExec; local 1064 poptItem item; local 1109 poptItem item = alloca(sizeof(*item)); local 1127 poptItem * items, item; local [all...] |