HomeSort by relevance Sort by last modified time
    Searched full:uniquename (Results 1 - 25 of 32) sorted by null

1 2

  /external/llvm/lib/IR/
ValueSymbolTable.cpp 47 SmallString<256> UniqueName(V->getName().begin(), V->getName().end());
52 unsigned BaseSize = UniqueName.size();
55 UniqueName.resize(BaseSize);
56 raw_svector_ostream(UniqueName) << ++LastUnique;
59 ValueName &NewName = vmap.GetOrCreateValue(UniqueName);
64 //DEBUG(dbgs() << " Inserted value: " << UniqueName << ": " << *V << "\n");
90 SmallString<256> UniqueName(Name.begin(), Name.end());
94 UniqueName.resize(Name.size());
95 raw_svector_ostream(UniqueName) << ++LastUnique;
98 ValueName &NewName = vmap.GetOrCreateValue(UniqueName);
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
S_I_N_G_.py 17 uniqueName: 28s
31 self.uniqueName = self.decompileUniqueName(self.uniqueName)
63 d["uniqueName"] = self.compilecompileUniqueName(self.uniqueName, 28)
95 if name in ["uniqueName", "METAMD5", "baseGlyphName"]:
  /external/chromium_org/third_party/webrtc/modules/video_capture/android/java/src/org/webrtc/videoengine/
VideoCaptureDeviceInfoAndroid.java 55 String uniqueName = deviceUniqueName(i, info);
66 Log.d(TAG, uniqueName);
68 Log.e(TAG, "Failed to open " + uniqueName + ", skipping", e);
95 cameraDict.put("name", uniqueName);
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.h 37 const AtomicString& uniqueName() const { return m_uniqueName; }
39 // |fallbackName| is used as a source of uniqueName.
FrameTree.cpp 122 if (frame->tree().uniqueName() == name)
148 if (frame->tree().uniqueName().startsWith(framePathPrefix))
155 name.append(frame->tree().uniqueName().string().substring(framePathPrefixLength,
156 frame->tree().uniqueName().length() - framePathPrefixLength - framePathSuffixLength));
161 name.append(frame->tree().uniqueName());
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs 181 string uniqueName = "n" + GetNodeNumber( t );
182 return string.Format( NodeFormat, uniqueName, FixString( text ) );
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 170 string uniqueName = "n" + GetNodeNumber(t);
171 return string.Format(NodeFormat, uniqueName, FixString(text));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs 181 string uniqueName = "n" + GetNodeNumber( t );
182 return string.Format( NodeFormat, uniqueName, FixString( text ) );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DOTTreeGenerator.java 187 String uniqueName = "n"+getNodeNumber(t);
188 nodeST.setAttribute("name", uniqueName);
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dottreegen.py 157 uniqueName = "n%d" % self.getNodeNumber(t)
158 nodeST.setAttribute("name", uniqueName)
  /external/chromium_org/third_party/google_toolbox_for_mac/
google_toolbox_for_mac.gyp 117 'src/Foundation/GTMNSFileHandle+UniqueName.h',
118 'src/Foundation/GTMNSFileHandle+UniqueName.m',
  /external/chromium_org/content/renderer/
history_entry.cc 179 return unique_names_to_items_[frame->GetWebFrame()->uniqueName().utf8()];
  /frameworks/base/docs/html/training/displaying-bitmaps/
cache-bitmap.jd 280 public static File getDiskCacheDir(Context context, String uniqueName) {
288 return new File(cachePath + File.separator + uniqueName);
  /external/chromium_org/third_party/WebKit/Source/web/
WebRemoteFrameImpl.h 33 virtual WebString uniqueName() const OVERRIDE;
WebLocalFrameImpl.h 87 virtual WebString uniqueName() const OVERRIDE;
WebRemoteFrameImpl.cpp 135 WebString WebRemoteFrameImpl::uniqueName() const
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 561 * @param uniqueName A unique directory name to append to the cache dir
564 public static File getDiskCacheDir(Context context, String uniqueName) {
572 return new File(cachePath + File.separator + uniqueName);
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 561 * @param uniqueName A unique directory name to append to the cache dir
564 public static File getDiskCacheDir(Context context, String uniqueName) {
572 return new File(cachePath + File.separator + uniqueName);
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageCache.java 561 * @param uniqueName A unique directory name to append to the cache dir
564 public static File getDiskCacheDir(Context context, String uniqueName) {
572 return new File(cachePath + File.separator + uniqueName);
  /external/chromium_org/chrome/installer/util/
google_update_settings.cc 84 std::wstring uniquename; // presubmit: allow wstring local
85 if (!base::win::GetUserSidString(&uniquename)) {
95 return (key.WriteValue(uniquename.c_str(), value.c_str()) == ERROR_SUCCESS);
    [all...]
  /external/chromium_org/content/common/
frame_messages.h 84 // The WebFrame's uniqueName().
117 // The WebFrame's uniqueName().
  /external/chromium_org/v8/test/cctest/
test-types.cc     [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
web_test_proxy.cc 66 std::string name8 = frame->uniqueName().utf8();
215 result.append(frame->uniqueName().utf8().data());
284 std::string("frame '") + frame->uniqueName().utf8().data() + "' ";
    [all...]
  /external/chromium_org/v8/src/
types.h 34 // UniqueName = InternalizedString \/ Symbol
194 V(UniqueName, kSymbol | kInternalizedString) \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.cpp 438 textStream << child->tree().uniqueName();

Completed in 2233 milliseconds

1 2